diff --git a/ChangeLog b/ChangeLog index c249cd17e7..256001a8cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -56,6 +56,7 @@ VerboseMultiSubmit, ReplaceHelpImg - bug #3531586 [unterface] Add user form prints JSON when user presses enter - bug #3534121 [config] duplicate line in config.sample.inc.php - bug #3534311 [interface] Grid editing incorrectly parses ENUM/SET values +- bug #3510196 [core] More clever URL rewriting with ForceSSL 3.5.1.0 (2012-05-03) - bug #3510784 [edit] Limit clause ignored when sort order is remembered diff --git a/db_datadict.php b/db_datadict.php index 506a1ba09a..aeb62041bb 100644 --- a/db_datadict.php +++ b/db_datadict.php @@ -281,6 +281,6 @@ foreach ($tables as $table) { /** * Displays the footer */ -PMA_printButton(); +echo PMA_getButton(); ?> diff --git a/db_printview.php b/db_printview.php index 3160089361..6dcfd6f06a 100644 --- a/db_printview.php +++ b/db_printview.php @@ -244,7 +244,7 @@ if ($num_tables == 0) { /** * Displays the footer */ -PMA_printButton(); +echo PMA_getButton(); echo "
\n"; ?> diff --git a/db_structure.php b/db_structure.php index d711e0e75a..9424391ee0 100644 --- a/db_structure.php +++ b/db_structure.php @@ -112,7 +112,7 @@ if (isset($_REQUEST['sort_order'])) { $_url_params['sort_order'] = $_REQUEST['sort_order']; } -PMA_listNavigator( +echo PMA_getListNavigator( $total_num_tables, $pos, $_url_params, 'db_structure.php', 'frame_content', $GLOBALS['cfg']['MaxTableList'] ); @@ -727,7 +727,7 @@ if (!$db_is_information_schema && !$cfg['DisableMultiTableMaintenance']) { _db = $db; + $this->_table = $table; + $this->_goto = $goto; + $this->_sql_query = $sql_query; + } + + + /** + * Defines the display mode to use for the results of a SQL query + * + * It uses a synthetic string that contains all the required informations. + * In this string: + * - the first two characters stand for the action to do while + * clicking on the "edit" link (e.g. 'ur' for update a row, 'nn' for no + * edit link...); + * - the next two characters stand for the action to do while + * clicking on the "delete" link (e.g. 'kp' for kill a process, 'nn' for + * no delete link...); + * - the next characters are boolean values (1/0) and respectively stand + * for sorting links, navigation bar, "insert a new row" link, the + * bookmark feature, the expand/collapse text/blob fields button and + * the "display printable view" option. + * Of course '0'/'1' means the feature won't/will be enabled. + * + * @param string &$the_disp_mode the synthetic value for display_mode (see a few + * lines above for explanations) + * @param integer &$the_total the total number of rows returned by the SQL + * query without any programmatically appended + * LIMIT clause + * (just a copy of $unlim_num_rows if it exists, + * elsecomputed inside this function) + * + * @return array an array with explicit indexes for all the display + * elements + * + * @access private + * + * @see getTable() + */ + private function _setDisplayMode(&$the_disp_mode, &$the_total) + { + + // 1. Initializes the $do_display array + $do_display = array(); + $do_display['edit_lnk'] = $the_disp_mode[0] . $the_disp_mode[1]; + $do_display['del_lnk'] = $the_disp_mode[2] . $the_disp_mode[3]; + $do_display['sort_lnk'] = (string) $the_disp_mode[4]; + $do_display['nav_bar'] = (string) $the_disp_mode[5]; + $do_display['ins_row'] = (string) $the_disp_mode[6]; + $do_display['bkm_form'] = (string) $the_disp_mode[7]; + $do_display['text_btn'] = (string) $the_disp_mode[8]; + $do_display['pview_lnk'] = (string) $the_disp_mode[9]; + + // 2. Display mode is not "false for all elements" -> updates the + // display mode + if ($the_disp_mode != 'nnnn000000') { + if (isset($GLOBALS['printview']) && $GLOBALS['printview'] == '1') { + // 2.0 Print view -> set all elements to false! + $do_display['edit_lnk'] = self::NO_EDIT_OR_DELETE; // no edit link + $do_display['del_lnk'] = self::NO_EDIT_OR_DELETE; // no delete link + $do_display['sort_lnk'] = (string) '0'; + $do_display['nav_bar'] = (string) '0'; + $do_display['ins_row'] = (string) '0'; + $do_display['bkm_form'] = (string) '0'; + $do_display['text_btn'] = (string) '0'; + $do_display['pview_lnk'] = (string) '0'; + } elseif ($GLOBALS['is_count'] || $GLOBALS['is_analyse'] + || $GLOBALS['is_maint'] || $GLOBALS['is_explain'] + ) { + // 2.1 Statement is a "SELECT COUNT", a + // "CHECK/ANALYZE/REPAIR/OPTIMIZE", an "EXPLAIN" one or + // contains a "PROC ANALYSE" part + $do_display['edit_lnk'] = self::NO_EDIT_OR_DELETE; // no edit link + $do_display['del_lnk'] = self::NO_EDIT_OR_DELETE; // no delete link + $do_display['sort_lnk'] = (string) '0'; + $do_display['nav_bar'] = (string) '0'; + $do_display['ins_row'] = (string) '0'; + $do_display['bkm_form'] = (string) '1'; + if ($GLOBALS['is_maint']) { + $do_display['text_btn'] = (string) '1'; + } else { + $do_display['text_btn'] = (string) '0'; + } + $do_display['pview_lnk'] = (string) '1'; + + } elseif ($GLOBALS['is_show']) { + // 2.2 Statement is a "SHOW..." + /** + * 2.2.1 + * @todo defines edit/delete links depending on show statement + */ + $tmp = preg_match( + '@^SHOW[[:space:]]+(VARIABLES|(FULL[[:space:]]+)?' + . 'PROCESSLIST|STATUS|TABLE|GRANTS|CREATE|LOGS|DATABASES|FIELDS' + . ')@i', + $GLOBALS['sql_query'], $which + ); + if (isset($which[1]) + && (strpos(' ' . strtoupper($which[1]), 'PROCESSLIST') > 0) + ) { + // no edit link + $do_display['edit_lnk'] = self::NO_EDIT_OR_DELETE; + // "kill process" type edit link + $do_display['del_lnk'] = self::KILL_PROCESS; + } else { + // Default case -> no links + // no edit link + $do_display['edit_lnk'] = self::NO_EDIT_OR_DELETE; + // no delete link + $do_display['del_lnk'] = self::NO_EDIT_OR_DELETE; + } + // 2.2.2 Other settings + $do_display['sort_lnk'] = (string) '0'; + $do_display['nav_bar'] = (string) '0'; + $do_display['ins_row'] = (string) '0'; + $do_display['bkm_form'] = (string) '1'; + $do_display['text_btn'] = (string) '1'; + $do_display['pview_lnk'] = (string) '1'; + } else { + // 2.3 Other statements (ie "SELECT" ones) -> updates + // $do_display['edit_lnk'], $do_display['del_lnk'] and + // $do_display['text_btn'] (keeps other default values) + $prev_table = $GLOBALS['fields_meta'][0]->table; + $do_display['text_btn'] = (string) '1'; + for ($i = 0; $i < $GLOBALS['fields_cnt']; $i++) { + $is_link = ($do_display['edit_lnk'] != self::NO_EDIT_OR_DELETE) + || ($do_display['del_lnk'] != self::NO_EDIT_OR_DELETE) + || ($do_display['sort_lnk'] != '0') + || ($do_display['ins_row'] != '0'); + // 2.3.2 Displays edit/delete/sort/insert links? + if ($is_link + && (($GLOBALS['fields_meta'][$i]->table == '') + || ($GLOBALS['fields_meta'][$i]->table != $prev_table)) + ) { + // don't display links + $do_display['edit_lnk'] = self::NO_EDIT_OR_DELETE; + $do_display['del_lnk'] = self::NO_EDIT_OR_DELETE; + /** + * @todo May be problematic with same field names + * in two joined table. + */ + // $do_display['sort_lnk'] = (string) '0'; + $do_display['ins_row'] = (string) '0'; + if ($do_display['text_btn'] == '1') { + break; + } + } // end if (2.3.2) + // 2.3.3 Always display print view link + $do_display['pview_lnk'] = (string) '1'; + $prev_table = $GLOBALS['fields_meta'][$i]->table; + } // end for + } // end if..elseif...else (2.1 -> 2.3) + } // end if (2) + + // 3. Gets the total number of rows if it is unknown + if (isset($GLOBALS['unlim_num_rows']) && $GLOBALS['unlim_num_rows'] != '') { + $the_total = $GLOBALS['unlim_num_rows']; + } elseif ((($do_display['nav_bar'] == '1') + || ($do_display['sort_lnk'] == '1')) + && (strlen($this->_db) && !empty($this->_table)) + ) { + $the_total = PMA_Table::countRecords($this->_db, $this->_table); + } + + // 4. If navigation bar or sorting fields names URLs should be + // displayed but there is only one row, change these settings to + // false + if ($do_display['nav_bar'] == '1' || $do_display['sort_lnk'] == '1') { + + // - Do not display sort links if less than 2 rows. + // - For a VIEW we (probably) did not count the number of rows + // so don't test this number here, it would remove the possibility + // of sorting VIEW results. + if (isset($GLOBALS['unlim_num_rows']) + && $GLOBALS['unlim_num_rows'] < 2 + && ! PMA_Table::isView($this->_db, $this->_table) + ) { + // force display of navbar for vertical/horizontal display-choice. + // $do_display['nav_bar'] = (string) '0'; + $do_display['sort_lnk'] = (string) '0'; + } + } // end if (3) + + // 5. Updates the synthetic var + $the_disp_mode = join('', $do_display); + + return $do_display; + + } // end of the 'setDisplayMode()' function + + + /** + * Return true if we are executing a query in the form of + * "SELECT * FROM ..." + * + * @return boolean + * + * @access private + * + * @see _getTableHeaders(), _getColumnParams() + */ + private function _isSelect() + { + return ! ($GLOBALS['is_count'] || $GLOBALS['is_export'] + || $GLOBALS['is_func'] || $GLOBALS['is_analyse']) + && (count($GLOBALS['analyzed_sql'][0]['select_expr']) == 0) + && isset($GLOBALS['analyzed_sql'][0]['queryflags']['select_from']) + && (count($GLOBALS['analyzed_sql'][0]['table_ref']) == 1); + } + + + /** + * Get a navigation button + * + * @param string $caption iconic caption for button + * @param string $title text for button + * @param integer $pos position for next query + * @param string $html_sql_query query ready for display + * @param string $onsubmit optional onsubmit clause + * @param string $input_for_real_end optional hidden field for special treatment + * @param string $onclick optional onclick clause + * + * @return string html content + * + * @access private + * + * @see _getMoveBackwardButtonsForTableNavigation(), + * _getMoveForwardButtonsForTableNavigation() + */ + private function _getTableNavigationButton( + $caption, $title, $pos, $html_sql_query, $onsubmit = '', + $input_for_real_end = '', $onclick = '' + ) { + + $caption_output = ''; + // for true or 'both' + if ($GLOBALS['cfg']['NavigationBarIconic']) { + $caption_output .= $caption; + } + + // for false or 'both' + if (($GLOBALS['cfg']['NavigationBarIconic'] === false) + || ($GLOBALS['cfg']['NavigationBarIconic'] === self::POSITION_BOTH) + ) { + $caption_output .= ' ' . $title; + } + $title_output = ' title="' . $title . '"'; + + return '' + . '
' + . PMA_generate_common_hidden_inputs($this->_db, $this->_table) + . '' + . '' + . '' + . $input_for_real_end + . '' + . '
' + . ''; + + } // end function _getTableNavigationButton() + + + /** + * Get a navigation bar to browse among the results of a SQL query + * + * @param integer $pos_next the offset for the "next" page + * @param integer $pos_prev the offset for the "previous" page + * @param string $id_for_direction_dropdown the id for the direction dropdown + * + * @return string html content + * + * @access private + * + * @see _getTable() + */ + private function _getTableNavigation( + $pos_next, $pos_prev, $id_for_direction_dropdown + ) { + + $table_navigation_html = ''; + + // here, using htmlentities() would cause problems if the query + // contains accented characters + $html_sql_query = htmlspecialchars($this->_sql_query); + + /** + * @todo move this to a central place + * @todo for other future table types + */ + $GLOBALS['is_innodb'] = (isset($GLOBALS['showtable']['Type']) + && $GLOBALS['showtable']['Type'] == self::TABLE_TYPE_INNO_DB); + + // Navigation bar + $table_navigation_html .= '' + . '' + . ''; + + // Move to the beginning or to the previous page + if ($_SESSION['tmp_user_values']['pos'] + && ($_SESSION['tmp_user_values']['max_rows'] != self::ALL_ROWS) + ) { + + $table_navigation_html + .= $this->_getMoveBackwardButtonsForTableNavigation( + $html_sql_query, $pos_prev + ); + + } // end move back + + $nbTotalPage = 1; + //page redirection + // (unless we are showing all records) + if ($_SESSION['tmp_user_values']['max_rows'] != self::ALL_ROWS) { //if1 + + $pageNow = @floor( + $_SESSION['tmp_user_values']['pos'] + / $_SESSION['tmp_user_values']['max_rows'] + ) + 1; + + $nbTotalPage = @ceil( + $GLOBALS['unlim_num_rows'] + / $_SESSION['tmp_user_values']['max_rows'] + ); + + if ($nbTotalPage > 1) { //if2 + + $table_navigation_html .= ''; + } //_if2 + } //_if1 + + // Display the "Show all" button if allowed + if (($GLOBALS['num_rows'] < $GLOBALS['unlim_num_rows']) + && ($GLOBALS['cfg']['ShowAll'] + || ($GLOBALS['cfg']['MaxRows'] * 5 >= $GLOBALS['unlim_num_rows'])) + ) { + + $table_navigation_html .= $this->_getShowAllButtonForTableNavigation( + $html_sql_query + ); + + } // end show all + + // Move to the next page or to the last one + $endpos = $_SESSION['tmp_user_values']['pos'] + + $_SESSION['tmp_user_values']['max_rows']; + + if (($endpos < $GLOBALS['unlim_num_rows']) + && ($GLOBALS['num_rows'] >= $_SESSION['tmp_user_values']['max_rows']) + && ($_SESSION['tmp_user_values']['max_rows'] != self::ALL_ROWS) + ) { + + $table_navigation_html + .= $this->_getMoveForwardButtonsForTableNavigation( + $html_sql_query, $pos_next, $GLOBALS['is_innodb'], + $GLOBALS['unlim_num_rows'], $GLOBALS['num_rows'] + ); + + } // end move toward + + // show separator if pagination happen + if ($nbTotalPage > 1) { + $table_navigation_html + .= ''; + } + + $table_navigation_html .= '' + . ''; + + // if displaying a VIEW, $unlim_num_rows could be zero because + // of $cfg['MaxExactCountViews']; in this case, avoid passing + // the 5th parameter to checkFormElementInRange() + // (this means we can't validate the upper limit + $table_navigation_html .= '' + . '' + . '' + . ''; + + return $table_navigation_html; + + } // end of the '_getTableNavigation()' function + + + /** + * Prepare move backward buttons - previous and first + * + * @param string $html_sql_query the sql encoded by html special characters + * @param integer $pos_prev the offset for the "previous" page + * + * @return string html content + * + * @access private + * + * @see _getTableNavigation() + */ + private function _getMoveBackwardButtonsForTableNavigation( + $html_sql_query, $pos_prev + ) { + return $this->_getTableNavigationButton( + '<<', _pgettext('First page', 'Begin'), 0, $html_sql_query + ) + . $this->_getTableNavigationButton( + '<', _pgettext('Previous page', 'Previous'), $pos_prev, + $html_sql_query + ); + } // end of the '_getMoveBackwardButtonsForTableNavigation()' function + + + /** + * Prepare Show All button for table navigation + * + * @param string $html_sql_query the sql encoded by html special characters + * + * @return string html content + * + * @access private + * + * @see _getTableNavigation() + */ + private function _getShowAllButtonForTableNavigation($html_sql_query) + { + return "\n" + . '' + . '
' + . PMA_generate_common_hidden_inputs($this->_db, $this->_table) + . '' + . '' + . '' + . '' + . '' + . '
' + . ''; + } // end of the '_getShowAllButtonForTableNavigation()' function + + + /** + * Prepare move farward buttons - next and last + * + * @param string $html_sql_query the sql encoded by html special characters + * @param integer $pos_next the offset for the "next" page + * @param boolean $is_innodb whether its InnoDB or not + * @param integer $unlim_num_rows the total number of rows returned by the + * @param integer $num_rows the total number of rows returned by the + * + * @return string $buttons_html html content + * + * @access private + * + * @see _getTableNavigation() + */ + private function _getMoveForwardButtonsForTableNavigation( + $html_sql_query, $pos_next, $is_innodb, $unlim_num_rows, $num_rows + ) { + + // display the Next button + $buttons_html = $this->_getTableNavigationButton( + '>', + _pgettext('Next page', 'Next'), + $pos_next, + $html_sql_query + ); + + // prepare some options for the End button + if ($is_innodb && $unlim_num_rows > $GLOBALS['cfg']['MaxExactCount']) { + $input_for_real_end = ''; + // no backquote around this message + $onclick = ''; + } else { + $input_for_real_end = $onclick = ''; + } + + $onsubmit = 'onsubmit="return ' + . ($_SESSION['tmp_user_values']['pos'] + + $_SESSION['tmp_user_values']['max_rows'] < $unlim_num_rows + && $num_rows >= $_SESSION['tmp_user_values']['max_rows']) + ? 'true' + : 'false' . '"'; + + // display the End button + $buttons_html .= $this->_getTableNavigationButton( + '>>', + _pgettext('Last page', 'End'), + @((ceil($unlim_num_rows / $_SESSION['tmp_user_values']['max_rows'])- 1) + * $_SESSION['tmp_user_values']['max_rows']), + $html_sql_query, $onsubmit, $input_for_real_end, $onclick + ); + + return $buttons_html; + + } // end of the '_getMoveForwardButtonsForTableNavigation()' function + + + /** + * Prepare feilds followed by Show button for table navigation + * Start row, Number of rows, Headers every + * + * @param string $html_sql_query the sql encoded by html special + * characters + * @param integer $pos_next the offset for the "next" page + * @param integer $unlim_num_rows the total number of rows returned + * by the SQL query without any + * programmatically appended "LIMIT" + * clause + * @param string $id_for_direction_dropdown the id for the direction dropdown + * + * @return string $additional_fields_html html content + * + * @access private + * + * @see _getTableNavigation() + */ + private function _getAdditionalFieldsForTableNavigation( + $html_sql_query, $pos_next, + $unlim_num_rows, $id_for_direction_dropdown + ) { + + $additional_fields_html = ''; + + $additional_fields_html .= '' + . '' + . '' + . __('Start row') . ': ' . "\n" + . '' + . __('Number of rows') . ': ' . "\n" + . ''; + + if ($GLOBALS['cfg']['ShowDisplayDirection']) { + // Display mode (horizontal/vertical and repeat headers) + $additional_fields_html .= __('Mode') . ': ' . "\n"; + $choices = array( + 'horizontal' => __('horizontal'), + 'horizontalflipped' => __('horizontal (rotated headers)'), + 'vertical' => __('vertical') + ); + + $additional_fields_html .= PMA_getDropdown( + 'disp_direction', $choices, + $_SESSION['tmp_user_values']['disp_direction'], + $id_for_direction_dropdown + ); + unset($choices); + } + + $additional_fields_html .= sprintf( + __('Headers every %s rows'), + ' ' + ); + + return $additional_fields_html; + + } // end of the '_getAdditionalFieldsForTableNavigation()' function + + + /** + * Get the headers of the results table + * + * @param array &$is_display which elements to display + * @param array &$fields_meta the list of fields properties + * @param integer $fields_cnt the total number of fields + * returned by the SQL query + * @param array $analyzed_sql the analyzed query + * @param string $sort_expression sort expression + * @param string $sort_expression_nodirection sort expression without direction + * @param string $sort_direction sort direction + * + * @return string html content + * + * @access private + * + * @see getTable() + */ + private function _getTableHeaders( + &$is_display, &$fields_meta, $fields_cnt = 0, $analyzed_sql = '', + $sort_expression = '', $sort_expression_nodirection = '', + $sort_direction = '' + ) { + + $table_headers_html = ''; + + // required to generate sort links that will remember whether the + // "Show all" button has been clicked + $sql_md5 = md5($GLOBALS['sql_query']); + $session_max_rows + = $_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows']; + + $direction = isset($_SESSION['tmp_user_values']['disp_direction']) + ? $_SESSION['tmp_user_values']['disp_direction'] + : ''; + + if ($analyzed_sql == '') { + $analyzed_sql = array(); + } + + $directionCondition = ($direction == self::DISP_DIR_HORIZONTAL) + || ($direction == self::DISP_DIR_HORIZONTAL_FLIPPED); + + // can the result be sorted? + if ($is_display['sort_lnk'] == '1') { + + // Just as fallback + $unsorted_sql_query = $this->_sql_query; + if (isset($analyzed_sql[0]['unsorted_query'])) { + $unsorted_sql_query = $analyzed_sql[0]['unsorted_query']; + } + // Handles the case of multiple clicks on a column's header + // which would add many spaces before "ORDER BY" in the + // generated query. + $unsorted_sql_query = trim($unsorted_sql_query); + + // sorting by indexes, only if it makes sense (only one table ref) + if (isset($analyzed_sql) + && isset($analyzed_sql[0]) + && isset($analyzed_sql[0]['querytype']) + && ($analyzed_sql[0]['querytype'] == self::QUERY_TYPE_SELECT) + && isset($analyzed_sql[0]['table_ref']) + && (count($analyzed_sql[0]['table_ref']) == 1) + ) { + + // grab indexes data: + $indexes = PMA_Index::getFromTable($this->_table, $this->_db); + + // do we have any index? + if ($indexes) { + $table_headers_html .= $this->_getSortByKeyDropDown( + $indexes, $sort_expression, + $unsorted_sql_query + ); + } + } + } + + // Output data needed for grid editing + $table_headers_html .= '' + . '
' + . PMA_generate_common_hidden_inputs($this->_db, $this->_table) + . '
'; + + // Output data needed for column reordering and show/hide column + if ($this->_isSelect()) { + $table_headers_html .= $this->_getDataForResettingColumnOrder(); + } + + $GLOBALS['vertical_display']['emptypre'] = 0; + $GLOBALS['vertical_display']['emptyafter'] = 0; + $GLOBALS['vertical_display']['textbtn'] = ''; + + // Display options (if we are not in print view) + if (! (isset($GLOBALS['printview']) && ($GLOBALS['printview'] == '1'))) { + + $table_headers_html .= $this->_getOptionsBlock(); + + // prepare full/partial text button or link + $full_or_partial_text_link = $this->_getFullOrPartialTextButtonOrLink(); + } + + // Start of form for multi-rows edit/delete/export + $table_headers_html .= $this->_getFormForMultiRowOperations( + $is_display['del_lnk'] + ); + + // 1. Displays the full/partial text button (part 1)... + if ($directionCondition) { + + $table_headers_html .= '' . "\n"; + + $colspan = (($is_display['edit_lnk'] != self::NO_EDIT_OR_DELETE) + && ($is_display['del_lnk'] != self::NO_EDIT_OR_DELETE)) + ? ' colspan="4"' + : ''; + + } else { + $rowspan = (($is_display['edit_lnk'] != self::NO_EDIT_OR_DELETE) + && ($is_display['del_lnk'] != self::NO_EDIT_OR_DELETE)) + ? ' rowspan="4"' + : ''; + } + + // ... before the result table + if ((($is_display['edit_lnk'] == self::NO_EDIT_OR_DELETE) + && ($is_display['del_lnk'] == self::NO_EDIT_OR_DELETE)) + && ($is_display['text_btn'] == '1') + ) { + + $GLOBALS['vertical_display']['emptypre'] + = (($is_display['edit_lnk'] != self::NO_EDIT_OR_DELETE) + && ($is_display['del_lnk'] != self::NO_EDIT_OR_DELETE)) ? 4 : 0; + + if ($directionCondition) { + + $table_headers_html .= '' + . '' + . ''; + + // end horizontal/horizontalflipped mode + } else { + + $span = $GLOBALS['num_rows'] + 1 + floor( + $GLOBALS['num_rows'] / $_SESSION['tmp_user_values']['repeat_cells'] + ); + $table_headers_html .= ''; + + } // end vertical mode + + } elseif ((($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_LEFT) + || ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_BOTH)) + && ($is_display['text_btn'] == '1') + ) { + // ... at the left column of the result table header if possible + // and required + + $GLOBALS['vertical_display']['emptypre'] + = (($is_display['edit_lnk'] != self::NO_EDIT_OR_DELETE) + && ($is_display['del_lnk'] != self::NO_EDIT_OR_DELETE)) ? 4 : 0; + + if ($directionCondition) { + + $table_headers_html .= '' + . $full_or_partial_text_link . ''; + // end horizontal/horizontalflipped mode + + } else { + + $GLOBALS['vertical_display']['textbtn'] + = ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n"; + } // end vertical mode + + } elseif ((($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_LEFT) + || ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_BOTH)) + && (($is_display['edit_lnk'] != self::NO_EDIT_OR_DELETE) + || ($is_display['del_lnk'] != self::NO_EDIT_OR_DELETE)) + ) { + // ... elseif no button, displays empty(ies) col(s) if required + + $GLOBALS['vertical_display']['emptypre'] + = (($is_display['edit_lnk'] != self::NO_EDIT_OR_DELETE) + && ($is_display['del_lnk'] != self::NO_EDIT_OR_DELETE)) ? 4 : 0; + + if ($directionCondition) { + + $table_headers_html .= ''; + + // end horizontal/horizontalfipped mode + } else { + $GLOBALS['vertical_display']['textbtn'] = ' ' . "\n"; + } // end vertical mode + + } elseif (($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_NONE) + && ($directionCondition) + ) { + // ... elseif display an empty column if the actions links are + // disabled to match the rest of the table + $table_headers_html .= ''; + } + + // 2. Displays the fields' name + // 2.0 If sorting links should be used, checks if the query is a "JOIN" + // statement (see 2.1.3) + + // 2.0.1 Prepare Display column comments if enabled + // ($GLOBALS['cfg']['ShowBrowseComments']). + // Do not show comments, if using horizontalflipped mode, + // because of space usage + if ($GLOBALS['cfg']['ShowBrowseComments'] + && ($direction != self::DISP_DIR_HORIZONTAL_FLIPPED) + ) { + $comments_map = array(); + if (isset($analyzed_sql[0]) && is_array($analyzed_sql[0])) { + foreach ($analyzed_sql[0]['table_ref'] as $tbl) { + $tb = $tbl['table_true_name']; + $comments_map[$tb] = PMA_getComments($this->_db, $tb); + unset($tb); + } + } + } + + if ($GLOBALS['cfgRelation']['commwork'] + && $GLOBALS['cfgRelation']['mimework'] + && $GLOBALS['cfg']['BrowseMIME'] + && ! $_SESSION['tmp_user_values']['hide_transformation'] + ) { + include_once './libraries/transformations.lib.php'; + $GLOBALS['mime_map'] = PMA_getMIME($this->_db, $this->_table); + } + + // See if we have to highlight any header fields of a WHERE query. + // Uses SQL-Parser results. + $GLOBALS['highlight_columns'] = array(); + if (isset($analyzed_sql) && isset($analyzed_sql[0]) + && isset($analyzed_sql[0]['where_clause_identifiers']) + ) { + + $wi = 0; + if (isset($analyzed_sql[0]['where_clause_identifiers']) + && is_array($analyzed_sql[0]['where_clause_identifiers']) + ) { + foreach ($analyzed_sql[0]['where_clause_identifiers'] + as $wci_nr => $wci + ) { + $GLOBALS['highlight_columns'][$wci] = 'true'; + } + } + } + + list($col_order, $col_visib) = $this->_getColumnParams(); + + for ($j = 0; $j < $fields_cnt; $j++) { + + // assign $i with appropriate column order + $i = $col_order ? $col_order[$j] : $j; + + // See if this column should get highlight because it's used in the + // where-query. + $condition_field = (isset($GLOBALS['highlight_columns'][$fields_meta[$i]->name]) + || isset($GLOBALS['highlight_columns'][PMA_backquote($fields_meta[$i]->name)])) + ? true + : false; + + // 2.0 Prepare comment-HTML-wrappers for each row, if defined/enabled. + $comments = $this->_getCommentForRow($comments_map, $fields_meta[$i]); + + if ($is_display['sort_lnk'] == '1') { + // 2.1 Results can be sorted + + // 2.1.1 Checks if the table name is required; it's the case + // for a query with a "JOIN" statement and if the column + // isn't aliased, or in queries like + // SELECT `1`.`master_field` , `2`.`master_field` + // FROM `PMA_relation` AS `1` , `PMA_relation` AS `2` + + $sort_tbl = (isset($fields_meta[$i]->table) + && strlen($fields_meta[$i]->table)) + ? PMA_backquote($fields_meta[$i]->table) . '.' + : ''; + + // 2.1.2 Checks if the current column is used to sort the + // results + // the orgname member does not exist for all MySQL versions + // but if found, it's the one on which to sort + $name_to_use_in_sort = $fields_meta[$i]->name; + $is_orgname = false; + if (isset($fields_meta[$i]->orgname) + && strlen($fields_meta[$i]->orgname) + ) { + $name_to_use_in_sort = $fields_meta[$i]->orgname; + $is_orgname = true; + } + + // $name_to_use_in_sort might contain a space due to + // formatting of function expressions like "COUNT(name )" + // so we remove the space in this situation + $name_to_use_in_sort = str_replace(' )', ')', $name_to_use_in_sort); + + $is_in_sort = $this->_isInSorted( + $sort_expression, $sort_expression_nodirection, + $sort_tbl, $name_to_use_in_sort + ); + + // 2.1.3 Check the field name for a bracket. + // If it contains one, it's probably a function column + // like 'COUNT(`field`)' + // It still might be a column name of a view. See bug #3383711 + // Check is_orgname. + if ((strpos($name_to_use_in_sort, '(') !== false) && ! $is_orgname) { + $sort_order = "\n" . 'ORDER BY ' . $name_to_use_in_sort . ' '; + } else { + $sort_order = "\n" . 'ORDER BY ' . $sort_tbl + . PMA_backquote($name_to_use_in_sort) . ' '; + } + unset($name_to_use_in_sort); + unset($is_orgname); + + // 2.1.4 Do define the sorting URL + + list($sort_order, $order_img) = $this->_getSortingUrlParams( + $is_in_sort, $sort_direction, $fields_meta[$i], + $sort_order, $i + ); + + if (preg_match( + '@(.*)([[:space:]](LIMIT (.*)|PROCEDURE (.*)|FOR UPDATE|' + . 'LOCK IN SHARE MODE))@is', + $unsorted_sql_query, $regs3 + )) { + $sorted_sql_query = $regs3[1] . $sort_order . $regs3[2]; + } else { + $sorted_sql_query = $unsorted_sql_query . $sort_order; + } + + $_url_params = array( + 'db' => $this->_db, + 'table' => $this->_table, + 'sql_query' => $sorted_sql_query, + 'session_max_rows' => $session_max_rows + ); + $order_url = 'sql.php' . PMA_generate_common_url($_url_params); + + // 2.1.5 Displays the sorting URL + // enable sort order swapping for image + $order_link = $this->_getSortOrderLink( + $order_img, $i, $direction, $fields_meta[$i], $order_url + ); + + if ($directionCondition) { + $table_headers_html + .= $this->_getDraggableClassForSortableColumns( + $col_visib, $col_visib[$j], $condition_field, + $direction, $fields_meta[$i], $order_link, $comments + ); + } + + $GLOBALS['vertical_display']['desc'][] = ' ' . "\n" . $order_link . $comments . ' ' . "\n"; + } else { + // 2.2 Results can't be sorted + + if ($directionCondition) { + $table_headers_html + .= $this->_getDraggableClassForNonSortableColumns( + $col_visib, $col_visib[$j], $condition_field, + $direction, $fields_meta[$i], $comments + ); + } + + $GLOBALS['vertical_display']['desc'][] = ' ' . "\n" . ' ' + . htmlspecialchars($fields_meta[$i]->name) + . "\n" . $comments . ' '; + } // end else (2.2) + } // end for + + // 3. Displays the needed checkboxes at the right + // column of the result table header if possible and required... + if ((($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_RIGHT) + || ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_BOTH)) + && (($is_display['edit_lnk'] != self::NO_EDIT_OR_DELETE) + || ($is_display['del_lnk'] != self::NO_EDIT_OR_DELETE)) + && ($is_display['text_btn'] == '1') + ) { + + $GLOBALS['vertical_display']['emptyafter'] + = (($is_display['edit_lnk'] != self::NO_EDIT_OR_DELETE) + && ($is_display['del_lnk'] != self::NO_EDIT_OR_DELETE)) ? 4 : 1; + + if ($directionCondition) { + $table_headers_html .= "\n" + . '' . $full_or_partial_text_link + . ''; + + // end horizontal/horizontalflipped mode + } else { + $GLOBALS['vertical_display']['textbtn'] = ' ' . "\n" + . ' ' . "\n" + . ' ' . "\n"; + } // end vertical mode + } elseif ((($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_LEFT) + || ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_BOTH)) + && (($is_display['edit_lnk'] == self::NO_EDIT_OR_DELETE) + && ($is_display['del_lnk'] == self::NO_EDIT_OR_DELETE)) + && (! isset($GLOBALS['is_header_sent']) || ! $GLOBALS['is_header_sent']) + ) { + // ... elseif no button, displays empty columns if required + // (unless coming from Browse mode print view) + + $GLOBALS['vertical_display']['emptyafter'] + = (($is_display['edit_lnk'] != self::NO_EDIT_OR_DELETE) + && ($is_display['del_lnk'] != self::NO_EDIT_OR_DELETE)) ? 4 : 1; + + if ($directionCondition) { + $table_headers_html .= "\n" + . ''; + + // end horizontal/horizontalflipped mode + } else { + $GLOBALS['vertical_display']['textbtn'] = ' ' . "\n"; + } // end vertical mode + } + + if ($directionCondition) { + $table_headers_html .= '' + . ''; + } + + return $table_headers_html; + + } // end of the '_getTableHeaders()' function + + + /** + * Prepare sort by key dropdown - html code segment + * + * @param array $indexes the indexes of the table for sort criteria + * @param string $sort_expression the sort expression + * @param string $unsorted_sql_query the unsorted sql query + * + * @return string $drop_down_html html content + * + * @access private + * + * @see _getTableHeaders() + */ + private function _getSortByKeyDropDown( + $indexes, $sort_expression, $unsorted_sql_query + ) { + + $drop_down_html = ''; + + $drop_down_html .= '
' . "\n" + . PMA_generate_common_hidden_inputs($this->_db, $this->_table) + . __('Sort by key') + . ': ' . "\n" + . '
' . "\n"; + + return $drop_down_html; + + } // end of the '_getSortByKeyDropDown()' function + + + /** + * Prepare data for column restoring and show/hide + * + * @return string $data_html html content + * + * @access private + * + * @see _getTableHeaders() + */ + private function _getDataForResettingColumnOrder() + { + + $data_html = ''; + + // generate the column order, if it is set + $pmatable = new PMA_Table($GLOBALS['table'], $GLOBALS['db']); + $col_order = $pmatable->getUiProp(PMA_Table::PROP_COLUMN_ORDER); + + if ($col_order) { + $data_html .= ''; + } + + $col_visib = $pmatable->getUiProp(PMA_Table::PROP_COLUMN_VISIB); + + if ($col_visib) { + $data_html .= ''; + } + + // generate table create time + if (! PMA_Table::isView($GLOBALS['table'], $GLOBALS['db'])) { + $data_html .= ''; + } + + return $data_html; + + } // end of the '_getDataForResettingColumnOrder()' function + + + /** + * Prepare option fields block + * + * @return string $options_html html content + * + * @access private + * + * @see _getTableHeaders() + */ + private function _getOptionsBlock() + { + + $options_html = ''; + + $options_html .= '
$this->_db, + 'table' => $this->_table, + 'sql_query' => $this->_sql_query, + 'goto' => $this->_goto, + 'display_options_form' => 1 + ); + + $options_html .= PMA_generate_common_hidden_inputs($url_params) + . '
' + . PMA_getDivForSliderEffect('displayoptions', __('Options')) + . '
'; + + $options_html .= '
'; + $choices = array( + 'P' => __('Partial texts'), + 'F' => __('Full texts') + ); + + $options_html .= PMA_getRadioFields( + 'display_text', $choices, + $_SESSION['tmp_user_values']['display_text'] + ) + . '
'; + + if ($GLOBALS['cfgRelation']['relwork'] + && $GLOBALS['cfgRelation']['displaywork'] + ) { + $options_html .= '
'; + $choices = array( + 'K' => __('Relational key'), + 'D' => __('Relational display column') + ); + + $options_html .= PMA_getRadioFields( + 'relational_display', $choices, + $_SESSION['tmp_user_values']['relational_display'] + ) + . '
'; + } + + $options_html .= '
' + . PMA_getCheckbox( + 'display_binary', __('Show binary contents'), + ! empty($_SESSION['tmp_user_values']['display_binary']), false + ) + . '
' + . PMA_getCheckbox( + 'display_blob', __('Show BLOB contents'), + ! empty($_SESSION['tmp_user_values']['display_blob']), false + ) + . '
' + . PMA_getCheckbox( + 'display_binary_as_hex', __('Show binary contents as HEX'), + ! empty($_SESSION['tmp_user_values']['display_binary_as_hex']), false + ) + . '
'; + + // I would have preferred to name this "display_transformation". + // This is the only way I found to be able to keep this setting sticky + // per SQL query, and at the same time have a default that displays + // the transformations. + $options_html .= '
' + . PMA_getCheckbox( + 'hide_transformation', __('Hide browser transformation'), + ! empty($_SESSION['tmp_user_values']['hide_transformation']), false + ) + . '
'; + + if (! PMA_DRIZZLE) { + $options_html .= '
'; + $choices = array( + 'GEOM' => __('Geometry'), + 'WKT' => __('Well Known Text'), + 'WKB' => __('Well Known Binary') + ); + + $options_html .= PMA_getRadioFields( + 'geometry_display', $choices, + $_SESSION['tmp_user_values']['geometry_display'] + ) + . '
'; + } + + $options_html .= '
' + . '
'; + + $options_html .= '
' + . '' + . '
' + . '' + . '
'; + + return $options_html; + + } // end of the '_getOptionsBlock()' function + + + /** + * Get full/partial text button or link + * + * @return string html content + * + * @access private + * + * @see _getTableHeaders() + */ + private function _getFullOrPartialTextButtonOrLink() + { + + $url_params_full_text = array( + 'db' => $this->_db, + 'table' => $this->_table, + 'sql_query' => $this->_sql_query, + 'goto' => $this->_goto, + 'full_text_button' => 1 + ); + + if ($_SESSION['tmp_user_values']['display_text'] == self::DISPLAY_FULL_TEXT) { + // currently in fulltext mode so show the opposite link + $tmp_image_file = $GLOBALS['pmaThemeImage'] . 's_partialtext.png'; + $tmp_txt = __('Partial texts'); + $url_params_full_text['display_text'] = self::DISPLAY_PARTIAL_TEXT; + } else { + $tmp_image_file = $GLOBALS['pmaThemeImage'] . 's_fulltext.png'; + $tmp_txt = __('Full texts'); + $url_params_full_text['display_text'] = self::DISPLAY_FULL_TEXT; + } + + $tmp_image = ''
+                     . $tmp_txt . ''; + $tmp_url = 'sql.php' . PMA_generate_common_url($url_params_full_text); + + return PMA_linkOrButton($tmp_url, $tmp_image, array(), false); + + } // end of the '_getFullOrPartialTextButtonOrLink()' function + + + /** + * Prepare html form for multi row operations + * + * @param string $del_lnk the delete link of current row + * + * @return string $form_html html content + * + * @access private + * + * @see _getTableHeaders() + */ + private function _getFormForMultiRowOperations($del_lnk) + { + + $form_html = ''; + + if (($del_lnk == self::DELETE_ROW) || ($del_lnk == self::KILL_PROCESS)) { + + $form_html .= '
_db, $this->_table, 1) + . '' . "\n"; + } + + $form_html .= '' . "\n"; + + return $form_html; + + } // end of the '_getFormForMultiRowOperations()' function + + + /** + * Get comment for row + * + * @param array $comments_map comments array + * @param array $fields_meta set of field properties + * + * @return string $comment html content + * + * @access private + * + * @see _getTableHeaders() + */ + private function _getCommentForRow($comments_map, $fields_meta) + { + $comments = ''; + if (isset($comments_map) + && isset($comments_map[$fields_meta->table]) + && isset($comments_map[$fields_meta->table][$fields_meta->name]) + ) { + $comments = '' + . htmlspecialchars( + $comments_map[$fields_meta->table][$fields_meta->name] + ) + . ''; + } + return $comments; + } // end of the '_getCommentForRow()' function + + + /** + * Check whether the column is sorted + * + * @param string $sort_expression sort expression + * @param string $sort_expression_nodirection sort expression without direction + * @param string $sort_tbl the table name + * @param string $name_to_use_in_sort the sorting column name + * + * @return boolean $is_in_sort the column sorted or not + * + * @access private + * + * @see _getTableHeaders() + */ + private function _isInSorted( + $sort_expression, $sort_expression_nodirection, $sort_tbl, + $name_to_use_in_sort + ) { + + if (empty($sort_expression)) { + $is_in_sort = false; + } else { + // Field name may be preceded by a space, or any number + // of characters followed by a dot (tablename.fieldname) + // so do a direct comparison for the sort expression; + // this avoids problems with queries like + // "SELECT id, count(id)..." and clicking to sort + // on id or on count(id). + // Another query to test this: + // SELECT p.*, FROM_UNIXTIME(p.temps) FROM mytable AS p + // (and try clicking on each column's header twice) + if (! empty($sort_tbl) + && (strpos($sort_expression_nodirection, $sort_tbl) === false) + && (strpos($sort_expression_nodirection, '(') === false) + ) { + $new_sort_expression_nodirection = $sort_tbl + . $sort_expression_nodirection; + } else { + $new_sort_expression_nodirection = $sort_expression_nodirection; + } + + $is_in_sort = false; + $sort_name = str_replace('`', '', $sort_tbl) . $name_to_use_in_sort; + + if (($sort_name == str_replace('`', '', $new_sort_expression_nodirection)) + || ($sort_name == str_replace('`', '', $sort_expression_nodirection)) + ) { + $is_in_sort = true; + } + } + + return $is_in_sort; + + } // end of the '_isInSorted()' function + + + /** + * Get sort url paramaeters - sort order and order image + * + * @param boolean $is_in_sort the column sorted or not + * @param string $sort_direction the sort direction + * @param array $fields_meta set of field properties + * @param string $sort_order the sorting order + * @param integer $column_index the index of the column + * + * @return array 2 element array - $sort_order, $order_img + * + * @access private + * + * @see _getTableHeaders() + */ + private function _getSortingUrlParams( + $is_in_sort, $sort_direction, $fields_meta, $sort_order, $column_index + ) { + + if (! $is_in_sort) { + + // patch #455484 ("Smart" order) + $GLOBALS['cfg']['Order'] = strtoupper($GLOBALS['cfg']['Order']); + + if ($GLOBALS['cfg']['Order'] === self::SMART_SORT_ORDER) { + $sort_order .= (preg_match( + '@time|date@i', + $fields_meta->type + )) ? self::DESCENDING_SORT_DIR : self::ASCENDING_SORT_DIR; + } else { + $sort_order .= $GLOBALS['cfg']['Order']; + } + $order_img = ''; + + } elseif ($sort_direction == self::DESCENDING_SORT_DIR) { + + $sort_order .= ' ASC'; + $order_img = ' ' . PMA_getImage( + 's_desc.png', __('Descending'), + array('class' => "soimg$column_index", 'title' => '') + ); + + $order_img .= ' ' . PMA_getImage( + 's_asc.png', __('Ascending'), + array('class' => "soimg$column_index hide", 'title' => '') + ); + + } else { + + $sort_order .= ' DESC'; + $order_img = ' ' . PMA_getImage( + 's_asc.png', __('Ascending'), + array('class' => "soimg$column_index", 'title' => '') + ); + + $order_img .= ' ' . PMA_getImage( + 's_desc.png', __('Descending'), + array('class' => "soimg$column_index hide", 'title' => '') + ); + } + + return array($sort_order, $order_img); + + } // end of the '_getSortingUrlParams()' function + + + /** + * Get sort order link + * + * @param string $order_img the sort order image + * @param integer $col_index the index of the column + * @param string $direction the display direction + * @param array $fields_meta set of field properties + * @param string $order_url the url for sort + * + * @return string the sort order link + * + * @access private + * + * @see _getTableHeaders() + */ + private function _getSortOrderLink( + $order_img, $col_index, $direction, $fields_meta, $order_url + ) { + + $order_link_params = array(); + + if (isset($order_img) && ($order_img != '')) { + if (strstr($order_img, 'asc')) { + $order_link_params['onmouseover'] = "$('.soimg$col_index').toggle()"; + $order_link_params['onmouseout'] = "$('.soimg$col_index').toggle()"; + } elseif (strstr($order_img, 'desc')) { + $order_link_params['onmouseover'] = "$('.soimg$col_index').toggle()"; + $order_link_params['onmouseout'] = "$('.soimg$col_index').toggle()"; + } + } + + if ($GLOBALS['cfg']['HeaderFlipType'] == self::HEADER_FLIP_TYPE_AUTO) { + + $GLOBALS['cfg']['HeaderFlipType'] + = (PMA_USR_BROWSER_AGENT == 'IE') + ? self::HEADER_FLIP_TYPE_CSS + : self::HEADER_FLIP_TYPE_FAKE; + } + + if ($direction == self::DISP_DIR_HORIZONTAL_FLIPPED + && $GLOBALS['cfg']['HeaderFlipType'] == self::HEADER_FLIP_TYPE_CSS + ) { + $order_link_params['style'] = 'direction: ltr; writing-mode: tb-rl;'; + } + + $order_link_params['title'] = __('Sort'); + + $order_link_content = (($direction == self::DISP_DIR_HORIZONTAL_FLIPPED) + && ($GLOBALS['cfg']['HeaderFlipType'] == self::HEADER_FLIP_TYPE_FAKE)) + ? PMA_flipstring( + htmlspecialchars($fields_meta->name), + "
\n" + ) + : htmlspecialchars($fields_meta->name); + + return PMA_linkOrButton( + $order_url, $order_link_content . $order_img, + $order_link_params, false, true + ); + + } // end of the '_getSortOrderLink()' function + + + /** + * Prepare columns to draggable effect for sortable columns + * + * @param boolean $col_visib the column is visible (false) + * array the column is not visible (string array) + * @param string $col_visib_j element of $col_visib array + * @param boolean $condition_field whether to add CSS class condition + * @param string $direction the display direction + * @param array $fields_meta set of field properties + * @param string $order_link the order link + * @param string $comments the comment for the column + * + * @return string $draggable_html html content + * + * @access private + * + * @see _getTableHeaders() + */ + private function _getDraggableClassForSortableColumns( + $col_visib, $col_visib_j, $condition_field, $direction, $fields_meta, + $order_link, $comments + ) { + + $draggable_html = 'name) + . '">' . $order_link . $comments . ''; + + return $draggable_html; + + } // end of the '_getDraggableClassForSortableColumns()' function + + + /** + * Prepare columns to draggable effect for non sortable columns + * + * @param boolean $col_visib the column is visible (false) + * array the column is not visible (string array) + * @param string $col_visib_j element of $col_visib array + * @param boolean $condition_field whether to add CSS class condition + * @param string $direction the display direction + * @param array $fields_meta set of field properties + * @param string $comments the comment for the column + * + * @return string $draggable_html html content + * + * @access private + * + * @see _getTableHeaders() + */ + private function _getDraggableClassForNonSortableColumns( + $col_visib, $col_visib_j, $condition_field, + $direction, $fields_meta, $comments + ) { + + $draggable_html = 'name) . '">'; + + if (($direction == self::DISP_DIR_HORIZONTAL_FLIPPED) + && ($GLOBALS['cfg']['HeaderFlipType'] == self::HEADER_FLIP_TYPE_FAKE) + ) { + + $draggable_html .= PMA_flipstring( + htmlspecialchars($fields_meta->name), '
' + ); + + } else { + $draggable_html .= htmlspecialchars($fields_meta->name); + } + + $draggable_html .= "\n" . $comments . ''; + + return $draggable_html; + + } // end of the '_getDraggableClassForNonSortableColumns()' function + + + /** + * Prepares the display for a value + * + * @param string $class class of table cell + * @param bool $condition_field whether to add CSS class condition + * @param string $value value to display + * + * @return string the td + * + * @access private + * + * @see _getDataCellForBlobColumns(), _getDataCellForGeometryColumns(), + * _getDataCellForNonNumericAndNonBlobColumns() + */ + private function _buildValueDisplay($class, $condition_field, $value) + { + return '
'; + } // end of the '_buildValueDisplay()' function + + + /** + * Prepares the display for a null value + * + * @param string $class class of table cell + * @param bool $condition_field whether to add CSS class condition + * @param object $meta the meta-information about this field + * @param string $align cell allignment + * + * @return string the td + * + * @access private + * + * @see _getDataCellForNumericColumns(), _getDataCellForBlobColumns(), + * _getDataCellForGeometryColumns(), + * _getDataCellForNonNumericAndNonBlobColumns() + */ + private function _buildNullDisplay($class, $condition_field, $meta, $align = '') + { + // the null class is needed for grid editing + return ''; + } // end of the '_buildNullDisplay()' function + + + /** + * Prepares the display for an empty value + * + * @param string $class class of table cell + * @param bool $condition_field whether to add CSS class condition + * @param object $meta the meta-information about this field + * @param string $align cell allignment + * + * @return string the td + * + * @access private + * + * @see _getDataCellForNumericColumns(), _getDataCellForBlobColumns(), + * _getDataCellForGeometryColumns(), + * _getDataCellForNonNumericAndNonBlobColumns() + */ + private function _buildEmptyDisplay($class, $condition_field, $meta, $align = '') + { + return ''; + } // end of the '_buildEmptyDisplay()' function + + + /** + * Adds the relavant classes. + * + * @param string $class class of table cell + * @param bool $condition_field whether to add CSS class condition + * @param object $meta the meta-information about this field + * @param string $nowrap avoid wrapping + * @param bool $is_field_truncated is field truncated (display ...) + * @param string $transform_function transformation function + * @param string $default_function default transformation function + * + * @return string the list of classes + * + * @access private + * + * @see _buildNullDisplay(), _getRowData() + */ + private function _addClass( + $class, $condition_field, $meta, $nowrap, $is_field_truncated = false, + $transform_function = '', $default_function = '' + ) { + + // Define classes to be added to this data field based on the type of data + $enum_class = ''; + if (strpos($meta->flags, 'enum') !== false) { + $enum_class = ' enum'; + } + + $set_class = ''; + if (strpos($meta->flags, 'set') !== false) { + $set_class = ' set'; + } + + $bit_class = ''; + if (strpos($meta->type, 'bit') !== false) { + $bit_class = ' bit'; + } + + $mime_type_class = ''; + if (isset($meta->mimetype)) { + $mime_type_class = ' ' . preg_replace('/\//', '_', $meta->mimetype); + } + + return $class . ($condition_field ? ' condition' : '') . $nowrap + . ' ' . ($is_field_truncated ? ' truncated' : '') + . ($transform_function != $default_function ? ' transformed' : '') + . $enum_class . $set_class . $bit_class . $mime_type_class; + + } // end of the '_addClass()' function + + + /** + * Prepare the body of the results table + * + * @param integer &$dt_result the link id associated to the query + * which results have to be displayed + * @param array &$is_display which elements to display + * @param array $map the list of relations + * @param array $analyzed_sql the analyzed query + * + * @return string $table_body_html html content + * + * @global array $row current row data + * + * @access private + * + * @see getTable() + */ + private function _getTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) + { + + global $row; // mostly because of browser transformations, + // to make the row-data accessible in a plugin + + $table_body_html = ''; + + // query without conditions to shorten URLs when needed, 200 is just + // guess, it should depend on remaining URL length + $url_sql_query = $this->_getUrlSqlQuery($analyzed_sql); + + if (! is_array($map)) { + $map = array(); + } + + $row_no = 0; + $GLOBALS['vertical_display']['edit'] = array(); + $GLOBALS['vertical_display']['copy'] = array(); + $GLOBALS['vertical_display']['delete'] = array(); + $GLOBALS['vertical_display']['data'] = array(); + $GLOBALS['vertical_display']['row_delete'] = array(); + // name of the class added to all grid editable elements + $grid_edit_class = 'grid_edit'; + + // prepare to get the column order, if available + list($col_order, $col_visib) = $this->_getColumnParams(); + + // Correction University of Virginia 19991216 in the while below + // Previous code assumed that all tables have keys, specifically that + // the phpMyAdmin GUI should support row delete/edit only for such + // tables. + // Although always using keys is arguably the prescribed way of + // defining a relational table, it is not required. This will in + // particular be violated by the novice. + // We want to encourage phpMyAdmin usage by such novices. So the code + // below has been changed to conditionally work as before when the + // table being displayed has one or more keys; but to display + // delete/edit options correctly for tables without keys. + + $odd_row = true; + $directionCondition + = ($_SESSION['tmp_user_values']['disp_direction'] + == self::DISP_DIR_HORIZONTAL) + || ($_SESSION['tmp_user_values']['disp_direction'] + == self::DISP_DIR_HORIZONTAL_FLIPPED); + + while ($row = PMA_DBI_fetch_row($dt_result)) { + + // "vertical display" mode stuff + $table_body_html .= $this->_getVerticalDisplaySupportSegments( + $GLOBALS['vertical_display'], $row_no, $directionCondition + ); + + $alternating_color_class = ($odd_row ? 'odd' : 'even'); + $odd_row = ! $odd_row; + + if ($directionCondition) { + // pointer code part + $table_body_html .= ''; + } + + // 1. Prepares the row + // 1.1 Results from a "SELECT" statement -> builds the + // WHERE clause to use in links (a unique key if possible) + /** + * @todo $where_clause could be empty, for example a table + * with only one field and it's a BLOB; in this case, + * avoid to display the delete and edit links + */ + list($where_clause, $clause_is_unique, $condition_array) + = PMA_getUniqueCondition( + $dt_result, $GLOBALS['fields_cnt'], $GLOBALS['fields_meta'], $row + ); + $where_clause_html = urlencode($where_clause); + + // 1.2 Defines the URLs for the modify/delete link(s) + + if (($is_display['edit_lnk'] != self::NO_EDIT_OR_DELETE) + || ($is_display['del_lnk'] != self::NO_EDIT_OR_DELETE) + ) { + // We need to copy the value + // or else the == 'both' check will always return true + + if ($GLOBALS['cfg']['PropertiesIconic'] === self::POSITION_BOTH) { + $iconic_spacer = '
'; + } else { + $iconic_spacer = ''; + } + + // 1.2.1 Modify link(s) - update row case + if ($is_display['edit_lnk'] == self::UPDATE_ROW) { + + list($edit_url, $copy_url, $edit_str, $copy_str, + $edit_anchor_class) + = $this->_getModifiedLinks( + $where_clause, + $clause_is_unique, $url_sql_query + ); + + } // end if (1.2.1) + + // 1.2.2 Delete/Kill link(s) + if (($is_display['del_lnk'] == self::DELETE_ROW) + || ($is_display['del_lnk'] == self::KILL_PROCESS) + ) { + + list($del_query, $del_url, $del_str, $js_conf) + = $this->_getDeleteAndKillLinks( + $where_clause, $clause_is_unique, + $url_sql_query, $is_display['del_lnk'] + ); + + } // end if (1.2.2) + + // 1.3 Displays the links at left if required + if ((($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_LEFT) + || ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_BOTH)) + && $directionCondition + ) { + + $table_body_html .= $this->_getPlacedLinks( + self::POSITION_LEFT, $del_url, $is_display, $row_no, + $where_clause, $where_clause_html, $condition_array, + $del_query, 'l', $edit_url, $copy_url, $edit_anchor_class, + $edit_str, $copy_str, $del_str, $js_conf + ); + + } elseif (($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_NONE) + && $directionCondition + ) { + + $table_body_html .= $this->_getPlacedLinks( + self::POSITION_NONE, $del_url, $is_display, $row_no, + $where_clause, $where_clause_html, $condition_array, + $del_query, 'l', $edit_url, $copy_url, $edit_anchor_class, + $edit_str, $copy_str, $del_str, $js_conf + ); + + } // end if (1.3) + } // end if (1) + + // 2. Displays the rows' values + + for ($j = 0; $j < $GLOBALS['fields_cnt']; ++$j) { + + // assign $i with appropriate column order + $i = $col_order ? $col_order[$j] : $j; + + $meta = $GLOBALS['fields_meta'][$i]; + $not_null_class = $meta->not_null ? 'not_null' : ''; + $relation_class = isset($map[$meta->name]) ? 'relation' : ''; + $hide_class = ($col_visib && !$col_visib[$j] + // hide per
'; + } // end if + + // 4. Gather links of del_urls and edit_urls in an array for later + // output + if (! isset($GLOBALS['vertical_display']['edit'][$row_no])) { + $GLOBALS['vertical_display']['edit'][$row_no] = ''; + $GLOBALS['vertical_display']['copy'][$row_no] = ''; + $GLOBALS['vertical_display']['delete'][$row_no] = ''; + $GLOBALS['vertical_display']['row_delete'][$row_no] = ''; + } + + $vertical_class = ' row_' . $row_no; + if ($GLOBALS['cfg']['BrowsePointerEnable'] == true) { + $vertical_class .= ' vpointer'; + } + + if ($GLOBALS['cfg']['BrowseMarkerEnable'] == true) { + $vertical_class .= ' vmarker'; + } + + if (!empty($del_url) + && ($is_display['del_lnk'] != self::KILL_PROCESS) + ) { + + $GLOBALS['vertical_display']['row_delete'][$row_no] + .= $this->_getCheckboxForMultiRowSubmissions( + $del_url, $is_display, $row_no, $where_clause_html, + $condition_array, $del_query, '[%_PMA_CHECKBOX_DIR_%]', + $alternating_color_class . $vertical_class + ); + + } else { + unset($GLOBALS['vertical_display']['row_delete'][$row_no]); + } + + if (isset($edit_url)) { + + $GLOBALS['vertical_display']['edit'][$row_no] .= $this->_getEditLink( + $edit_url, + $alternating_color_class . ' ' . $edit_anchor_class + . $vertical_class, $edit_str, + $where_clause, + $where_clause_html + ); + + } else { + unset($GLOBALS['vertical_display']['edit'][$row_no]); + } + + if (isset($copy_url)) { + + $GLOBALS['vertical_display']['copy'][$row_no] .= $this->_getCopyLink( + $copy_url, $copy_str, $where_clause, $where_clause_html, + $alternating_color_class . $vertical_class + ); + + } else { + unset($GLOBALS['vertical_display']['copy'][$row_no]); + } + + if (isset($del_url)) { + + if (! isset($js_conf)) { + $js_conf = ''; + } + + $GLOBALS['vertical_display']['delete'][$row_no] .= $this->_getDeleteLink( + $del_url, $del_str, $js_conf, + $alternating_color_class . $vertical_class + ); + + } else { + unset($GLOBALS['vertical_display']['delete'][$row_no]); + } + + $table_body_html .= $directionCondition ? "\n" : ''; + $row_no++; + + } // end while + + return $table_body_html; + + } // end of the '_getTableBody()' function + + + /** + * Get url sql query without conditions to shorten URLs + * + * @param array $analyzed_sql analyzed query + * + * @return string $url_sql analyzed sql query + * + * @access private + * + * @see _getTableBody() + */ + private function _getUrlSqlQuery($analyzed_sql) + { + + if (isset($analyzed_sql) + && isset($analyzed_sql[0]) + && isset($analyzed_sql[0]['querytype']) + && ($analyzed_sql[0]['querytype'] == self::QUERY_TYPE_SELECT) + && (strlen($this->_sql_query) > 200) + ) { + + $url_sql_query = 'SELECT '; + if (isset($analyzed_sql[0]['queryflags']['distinct'])) { + $url_sql_query .= ' DISTINCT '; + } + + $url_sql_query .= $analyzed_sql[0]['select_expr_clause']; + if (!empty($analyzed_sql[0]['from_clause'])) { + $url_sql_query .= ' FROM ' . $analyzed_sql[0]['from_clause']; + } + + return $url_sql_query; + } + + return $this->_sql_query; + + } // end of the '_getUrlSqlQuery()' function + + + /** + * Get column order and column visibility + * + * @return array 2 element array - $col_order, $col_visib + * + * @access private + * + * @see _getTableBody() + */ + private function _getColumnParams() + { + if ($this->_isSelect()) { + $pmatable = new PMA_Table($GLOBALS['table'], $GLOBALS['db']); + $col_order = $pmatable->getUiProp(PMA_Table::PROP_COLUMN_ORDER); + $col_visib = $pmatable->getUiProp(PMA_Table::PROP_COLUMN_VISIB); + } else { + $col_order = false; + $col_visib = false; + } + + return array($col_order, $col_visib); + } // end of the '_getColumnParams()' function + + + /** + * Prepare vertical display mode necessay HTML stuff + * + * @param array $vertical_display informations used with vertical + * display mode + * @param integer $row_no the index of current row + * @param boolean $directionCondition the directional condition + * + * @return string $vertical_disp_html html content + * + * @access private + * + * @see _getTableBody() + */ + private function _getVerticalDisplaySupportSegments( + $vertical_display, $row_no, $directionCondition + ) { + + $support_html = ''; + + if ((($row_no != 0) && ($_SESSION['tmp_user_values']['repeat_cells'] != 0)) + && !($row_no % $_SESSION['tmp_user_values']['repeat_cells']) + && $directionCondition + ) { + + $support_html .= '' . "\n"; + + if ($vertical_display['emptypre'] > 0) { + + $support_html .= ' ' . "\n"; + + } else if ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_NONE) { + $support_html .= ' ' . "\n"; + } + + foreach ($vertical_display['desc'] as $val) { + $support_html .= $val; + } + + if ($vertical_display['emptyafter'] > 0) { + $support_html + .= ' ' . "\n"; + } + $support_html .= '' . "\n"; + } // end if + + return $support_html; + + } // end of the '_getVerticalDisplaySupportSegments()' function + + + /** + * Get modified links + * + * @param string $where_clause the where clause of the sql + * @param boolean $clause_is_unique the unique condition of clause + * @param string $url_sql_query the analyzed sql query + * + * @return array 5 element array - $edit_url, $copy_url, + * $edit_str, $copy_str, $edit_anchor_class + * + * @access private + * + * @see _getTableBody() + */ + private function _getModifiedLinks( + $where_clause, $clause_is_unique, $url_sql_query + ) { + + $_url_params = array( + 'db' => $this->_db, + 'table' => $this->_table, + 'where_clause' => $where_clause, + 'clause_is_unique' => $clause_is_unique, + 'sql_query' => $url_sql_query, + 'goto' => 'sql.php', + ); + + $edit_url = 'tbl_change.php' + . PMA_generate_common_url( + $_url_params + array('default_action' => 'update') + ); + + $copy_url = 'tbl_change.php' + . PMA_generate_common_url( + $_url_params + array('default_action' => 'insert') + ); + + $edit_str = PMA_getIcon('b_edit.png', __('Edit')); + $copy_str = PMA_getIcon('b_insrow.png', __('Copy')); + + // Class definitions required for grid editing jQuery scripts + $edit_anchor_class = "edit_row_anchor"; + if ( $clause_is_unique == 0) { + $edit_anchor_class .= ' nonunique'; + } + + return array($edit_url, $copy_url, $edit_str, $copy_str, $edit_anchor_class); + + } // end of the '_getModifiedLinks()' function + + + /** + * Get delete and kill links + * + * @param string $where_clause the where clause of the sql + * @param boolean $clause_is_unique the unique condition of clause + * @param string $url_sql_query the analyzed sql query + * @param string $del_lnk the delete link of current row + * + * @return array 4 element array - $del_query, + * $del_url, $del_str, $js_conf + * + * @access private + * + * @see _getTableBody() + */ + private function _getDeleteAndKillLinks( + $where_clause, $clause_is_unique, $url_sql_query, $del_lnk + ) { + + if ($del_lnk == self::DELETE_ROW) { // delete row case + + $_url_params = array( + 'db' => $this->_db, + 'table' => $this->_table, + 'sql_query' => $url_sql_query, + 'message_to_show' => __('The row has been deleted'), + 'goto' => (empty($this->_goto) ? 'tbl_sql.php' : $this->_goto), + ); + + $lnk_goto = 'sql.php' . PMA_generate_common_url($_url_params, 'text'); + + $del_query = 'DELETE FROM ' . PMA_backquote($this->_db) . '.' + . PMA_backquote($this->_table) + . ' WHERE ' . $where_clause . + ($clause_is_unique ? '' : ' LIMIT 1'); + + $_url_params = array( + 'db' => $this->_db, + 'table' => $this->_table, + 'sql_query' => $del_query, + 'message_to_show' => __('The row has been deleted'), + 'goto' => $lnk_goto, + ); + $del_url = 'sql.php' . PMA_generate_common_url($_url_params); + + $js_conf = 'DELETE FROM ' . PMA_jsFormat($this->_db) . '.' + . PMA_jsFormat($this->_table) + . ' WHERE ' . PMA_jsFormat($where_clause, false) + . ($clause_is_unique ? '' : ' LIMIT 1'); + + $del_str = PMA_getIcon('b_drop.png', __('Delete')); + + } elseif ($del_lnk == self::KILL_PROCESS) { // kill process case + + $_url_params = array( + 'db' => $this->_db, + 'table' => $this->_table, + 'sql_query' => $url_sql_query, + 'goto' => 'main.php', + ); + + $lnk_goto = 'sql.php' + . PMA_generate_common_url( + $_url_params, 'text' + ); + + $_url_params = array( + 'db' => 'mysql', + 'sql_query' => 'KILL ' . $row[0], + 'goto' => $lnk_goto, + ); + + $del_url = 'sql.php' . PMA_generate_common_url($_url_params); + $del_query = 'KILL ' . $row[0]; + $js_conf = 'KILL ' . $row[0]; + $del_str = PMA_getIcon('b_drop.png', __('Kill')); + } + + return array($del_query, $del_url, $del_str, $js_conf); + + } // end of the '_getDeleteAndKillLinks()' function + + + /** + * Prepare placed links + * + * @param string $dir the direction of links should place + * @param string $del_url the url for delete row + * @param array $is_display which elements to display + * @param integer $row_no the index of current row + * @param string $where_clause the where clause of the sql + * @param string $where_clause_html the html encoded where clause + * @param array $condition_array array of keys (primary, unique, condition) + * @param string $del_query the query for delete row + * @param string $dir_letter the letter denoted the direction + * @param string $edit_url the url for edit row + * @param string $copy_url the url for copy row + * @param string $edit_anchor_class the class for html element for edit + * @param string $edit_str the label for edit row + * @param string $copy_str the label for copy row + * @param string $del_str the label for delete row + * @param string $js_conf text for the JS confirmation + * + * @return string html content + * + * @access private + * + * @see _getTableBody() + */ + private function _getPlacedLinks( + $dir, $del_url, $is_display, $row_no, $where_clause, $where_clause_html, + $condition_array, $del_query, $dir_letter, $edit_url, $copy_url, + $edit_anchor_class, $edit_str, $copy_str, $del_str, $js_conf + ) { + + if (! isset($js_conf)) { + $js_conf = ''; + } + + return $this->_getCheckboxAndLinks( + $dir, $del_url, $is_display, + $row_no, $where_clause, $where_clause_html, $condition_array, + $del_query, 'l', $edit_url, $copy_url, $edit_anchor_class, + $edit_str, $copy_str, $del_str, $js_conf + ); + + } // end of the '_getPlacedLinks()' function + + + /** + * Get resetted class for inline edit columns + * + * @param string $grid_edit_class the class for all editable columns + * @param string $not_null_class the class for not null columns + * @param string $relation_class the class for relations in a column + * @param string $hide_class the class for visibility of a column + * @param string $field_type_class the class related to type of the field + * @param integer $row_no the row index + * + * @return string $class the resetted class + * + * @access private + * + * @see _getTableBody() + */ + private function _getResettedClassForInlineEdit( + $grid_edit_class, $not_null_class, $relation_class, + $hide_class, $field_type_class, $row_no + ) { + + $class = 'data ' . $grid_edit_class . ' ' . $not_null_class . ' ' + . $relation_class . ' ' . $hide_class . ' ' . $field_type_class; + + if (($_SESSION['tmp_user_values']['disp_direction'] == self::DISP_DIR_VERTICAL) + && (! isset($GLOBALS['printview']) || ($GLOBALS['printview'] != '1')) + ) { + // the row number corresponds to a data row, not HTML table row + $class .= ' row_' . $row_no; + if ($GLOBALS['cfg']['BrowsePointerEnable'] == true) { + $class .= ' vpointer'; + } + + if ($GLOBALS['cfg']['BrowseMarkerEnable'] == true) { + $class .= ' vmarker'; + } + } + + return $class; + + } // end of the '_getResettedClassForInlineEdit()' function + + + /** + * Get class for datetime related fields + * + * @param string $type the type of the column field + * + * @return string $field_type_class the class for the column + * + * @access private + * + * @see _getTableBody() + */ + private function _getClassForDateTimeRelatedFields($type) + { + if ((substr($type, 0, 9) == self::TIMESTAMP_FIELD) + || ($type == self::DATETIME_FIELD) + ) { + $field_type_class = 'datetimefield'; + } else if ($type == self::DATE_FIELD) { + $field_type_class = 'datefield'; + } else { + $field_type_class = ''; + } + return $field_type_class; + } // end of the '_getClassForDateTimeRelatedFields()' function + + + /** + * Prepare data cell for numeric type fields + * + * @param string $column the relavent column in data row + * @param string $class the html class for column + * @param boolean $condition_field the column should highlighted or not + * @param object $meta the meta-information about this field + * @param array $map the list of relations + * @param boolean $is_field_truncated the condition for blob data replacements + * @param array $analyzed_sql the analyzed query + * @param string $transform_function the name of transformation function + * @param string $default_function the default transformation function + * @param string $transform_options the transformation parameters + * + * @return string $cell the prepared cell, html content + * + * @access private + * + * @see _getTableBody() + */ + private function _getDataCellForNumericColumns( + $column, $class, $condition_field, $meta, $map, $is_field_truncated, + $analyzed_sql, $transform_function, $default_function, $transform_options + ) { + + if (! isset($column) || is_null($column)) { + + $cell = $this->_buildNullDisplay( + 'right '.$class, $condition_field, $meta, '' + ); + + } elseif ($column != '') { + + $nowrap = ' nowrap'; + $where_comparison = ' = ' . $column; + + $cell = $this->_getRowData( + 'right '.$class, $condition_field, + $analyzed_sql, $meta, $map, $column, + $transform_function, $default_function, $nowrap, + $where_comparison, $transform_options, + $is_field_truncated + ); + } else { + + $cell = $this->_buildEmptyDisplay( + 'right '.$class, $condition_field, $meta, '' + ); + } + + return $cell; + + } // end of the '_getDataCellForNumericColumns()' function + + + /** + * Get data cell for blob type fields + * + * @param string $column the relavent column in data row + * @param string $class the html class for column + * @param object $meta the meta-information about this field + * @param array $_url_params the parameters for generate url + * @param string $field_flags field flags for column(blob, primary etc) + * @param string $transform_function the name of transformation function + * @param string $default_function the default transformation function + * @param string $transform_options the transformation parameters + * @param boolean $condition_field the column should highlighted or not + * @param boolean $is_field_truncated the condition for blob data replacements + * + * @return string $cell the prepared cell, html content + * + * @access private + * + * @see _getTableBody() + */ + private function _getDataCellForBlobColumns( + $column, $class, $meta, $_url_params, $field_flags, $transform_function, + $default_function, $transform_options, $condition_field, $is_field_truncated + ) { + + if (stristr($field_flags, self::BINARY_FIELD)) { + + // remove 'grid_edit' from $class as we can't edit binary data. + $class = str_replace('grid_edit', '', $class); + + if (! isset($column) || is_null($column)) { + + $cell = $this->_buildNullDisplay($class, $condition_field, $meta); + + } else { + + $blobtext = $this->_handleNonPrintableContents( + self::BLOB_FIELD, (isset($column) ? $column : ''), + $transform_function, $transform_options, + $default_function, $meta, $_url_params + ); + + $cell = $this->_buildValueDisplay( + $class, $condition_field, $blobtext + ); + unset($blobtext); + } + } else { + // not binary: + + if (! isset($column) || is_null($column)) { + + $cell = $this->_buildNullDisplay($class, $condition_field, $meta); + + } elseif ($column != '') { + + // if a transform function for blob is set, none of these + // replacements will be made + if ((PMA_strlen($column) > $GLOBALS['cfg']['LimitChars']) + && ($_SESSION['tmp_user_values']['display_text'] == self::DISPLAY_PARTIAL_TEXT) + ) { + $column = PMA_substr($column, 0, $GLOBALS['cfg']['LimitChars']) + . '...'; + $is_field_truncated = true; + } + + // displays all space characters, 4 space + // characters for tabulations and / + $column = ($default_function != $transform_function) + ? $transform_function($column, $transform_options, $meta) + : $default_function($column, array(), $meta); + + if ($is_field_truncated) { + $class .= ' truncated'; + } + + $cell = $this->_buildValueDisplay($class, $condition_field, $column); + + } else { + $cell = $this->_buildEmptyDisplay($class, $condition_field, $meta); + } + } + + return $cell; + + } // end of the '_getDataCellForBlobColumns()' function + + + /** + * Get data cell for geometry type fields + * + * @param string $column the relavent column in data row + * @param string $class the html class for column + * @param object $meta the meta-information about this field + * @param array $map the list of relations + * @param array $_url_params the parameters for generate url + * @param boolean $condition_field the column should highlighted or not + * @param string $transform_function the name of transformation function + * @param string $default_function the default transformation function + * @param string $transform_options the transformation parameters + * @param boolean $is_field_truncated the condition for blob data replacements + * @param array $analyzed_sql the analyzed query + * + * @return string $cell the prepared data cell, html content + * + * @access private + * + * @see _getTableBody() + */ + private function _getDataCellForGeometryColumns( + $column, $class, $meta, $map, $_url_params, $condition_field, + $transform_function, $default_function, $transform_options, + $is_field_truncated, $analyzed_sql + ) { + + if (! isset($column) || is_null($column)) { + + $cell = $this->_buildNullDisplay($class, $condition_field, $meta); + + } elseif ($column != '') { + + // Display as [GEOMETRY - (size)] + if ($_SESSION['tmp_user_values']['geometry_display'] == self::GEOMETRY_DISP_GEOM) { + + $geometry_text = $this->_handleNonPrintableContents( + strtoupper(self::GEOMETRY_FIELD), + (isset($column) ? $column : ''), $transform_function, + $transform_options, $default_function, $meta + ); + + $cell = $this->_buildValueDisplay( + $class, $condition_field, $geometry_text + ); + + } elseif ($_SESSION['tmp_user_values']['geometry_display'] + == self::GEOMETRY_DISP_WKT + ) { + // Prepare in Well Known Text(WKT) format. + + $where_comparison = ' = ' . $column; + + // Convert to WKT format + $wktval = PMA_asWKT($column); + + if ((PMA_strlen($wktval) > $GLOBALS['cfg']['LimitChars']) + && ($_SESSION['tmp_user_values']['display_text'] == self::DISPLAY_PARTIAL_TEXT) + ) { + $wktval = PMA_substr($wktval, 0, $GLOBALS['cfg']['LimitChars']) + . '...'; + $is_field_truncated = true; + } + + $cell = $this->_getRowData( + $class, $condition_field, $analyzed_sql, $meta, $map, + $wktval, $transform_function, $default_function, '', + $where_comparison, $transform_options, + $is_field_truncated + ); + + } else { + // Prepare in Well Known Binary(WKB) format. + + if ($_SESSION['tmp_user_values']['display_binary']) { + + $where_comparison = ' = ' . $column; + + if ($_SESSION['tmp_user_values']['display_binary_as_hex'] + && PMA_containsNonPrintableAscii($column) + ) { + $wkbval = PMA_substr(bin2hex($column), 8); + } else { + $wkbval = htmlspecialchars( + PMA_replaceBinaryContents($column) + ); + } + + if ((PMA_strlen($wkbval) > $GLOBALS['cfg']['LimitChars']) + && ($_SESSION['tmp_user_values']['display_text'] == self::DISPLAY_PARTIAL_TEXT) + ) { + $wkbval + = PMA_substr($wkbval, 0, $GLOBALS['cfg']['LimitChars']) + . '...'; + $is_field_truncated = true; + } + + $cell = $this->_getRowData( + $class, $condition_field, + $analyzed_sql, $meta, $map, $wkbval, + $transform_function, $default_function, '', + $where_comparison, $transform_options, + $is_field_truncated + ); + + } else { + $wkbval = $this->_handleNonPrintableContents( + self::BINARY_FIELD, $column, $transform_function, + $transform_options, $default_function, $meta, + $_url_params + ); + + $cell = $this->_buildValueDisplay( + $class, $condition_field, $wkbval + ); + } + } + } else { + $cell = $this->_buildEmptyDisplay($class, $condition_field, $meta); + } + + return $cell; + + } // end of the '_getDataCellForGeometryColumns()' function + + + /** + * Get data cell for non numeric and non blob type fields + * + * @param string $column the relavent column in data row + * @param string $class the html class for column + * @param object $meta the meta-information about this field + * @param array $map the list of relations + * @param array $_url_params the parameters for generate url + * @param boolean $condition_field the column should highlighted or not + * @param string $transform_function the name of transformation function + * @param string $default_function the default transformation function + * @param string $transform_options the transformation parameters + * @param boolean $is_field_truncated the condition for blob data replacements + * @param array $analyzed_sql the analyzed query + * @param integer &$dt_result the link id associated to the query + * which results have to be displayed + * @param integer $col_index the column index + * + * @return string $cell the prepared data cell, html content + * + * @access private + * + * @see _getTableBody() + */ + private function _getDataCellForNonNumericAndNonBlobColumns( + $column, $class, $meta, $map, $_url_params, $condition_field, + $transform_function, $default_function, $transform_options, + $is_field_truncated, $analyzed_sql, &$dt_result, $col_index + ) { + + if (! isset($column) || is_null($column)) { + + $cell = $this->_buildNullDisplay($class, $condition_field, $meta); + + } elseif ($column != '') { + + // Cut all fields to $GLOBALS['cfg']['LimitChars'] + // (unless it's a link-type transformation) + if (PMA_strlen($column) > $GLOBALS['cfg']['LimitChars'] + && ($_SESSION['tmp_user_values']['display_text'] == self::DISPLAY_PARTIAL_TEXT) + && !strpos($transform_function, 'link') === true + ) { + $column = PMA_substr($column, 0, $GLOBALS['cfg']['LimitChars']) + . '...'; + $is_field_truncated = true; + } + + // displays special characters from binaries + $field_flags = PMA_DBI_field_flags($dt_result, $col_index); + $formatted = false; + + if (isset($meta->_type) && $meta->_type === MYSQLI_TYPE_BIT) { + + $column = PMA_printableBitValue( + $column, $meta->length + ); + + // some results of PROCEDURE ANALYSE() are reported as + // being BINARY but they are quite readable, + // so don't treat them as BINARY + } elseif (stristr($field_flags, self::BINARY_FIELD) + && ($meta->type == self::STRING_FIELD) + && !(isset($GLOBALS['is_analyse']) && $GLOBALS['is_analyse']) + ) { + + if ($_SESSION['tmp_user_values']['display_binary']) { + + // user asked to see the real contents of BINARY + // fields + if ($_SESSION['tmp_user_values']['display_binary_as_hex'] + && PMA_containsNonPrintableAscii($column) + ) { + $column = bin2hex($column); + } else { + $column = htmlspecialchars( + PMA_replaceBinaryContents($column) + ); + } + + } else { + // we show the BINARY message and field's size + // (or maybe use a transformation) + $column = $this->_handleNonPrintableContents( + self::BINARY_FIELD, $column, $transform_function, + $transform_options, $default_function, + $meta, $_url_params + ); + $formatted = true; + } + } + + if ($formatted) { + + $cell = $this->_buildValueDisplay( + $class, $condition_field, $column + ); + + } else { + + // transform functions may enable no-wrapping: + $function_nowrap = $transform_function . '_nowrap'; + + $bool_nowrap = (($default_function != $transform_function) + && function_exists($function_nowrap)) + ? $function_nowrap($transform_options) + : false; + + // do not wrap if date field type + $nowrap = (preg_match('@DATE|TIME@i', $meta->type) + || $bool_nowrap) ? ' nowrap' : ''; + + $where_comparison = ' = \'' . PMA_sqlAddSlashes($column) + . '\''; + + $cell = $this->_getRowData( + $class, $condition_field, + $analyzed_sql, $meta, $map, $column, + $transform_function, $default_function, $nowrap, + $where_comparison, $transform_options, + $is_field_truncated + ); + } + + } else { + $cell = $this->_buildEmptyDisplay($class, $condition_field, $meta); + } + + return $cell; + + } // end of the '_getDataCellForNonNumericAndNonBlobColumns()' function + + + /** + * Get the resulted table with the vertical direction mode. + * + * @return string html content + * + * @access private + * + * @see _getTable() + */ + private function _getVerticalTable() + { + + $vertical_table_html = ''; + + // Prepares "multi row delete" link at top if required + if (($GLOBALS['cfg']['RowActionLinks'] != self::POSITION_RIGHT) + && is_array($GLOBALS['vertical_display']['row_delete']) + && ((count($GLOBALS['vertical_display']['row_delete']) > 0) + || !empty($GLOBALS['vertical_display']['textbtn'])) + ) { + + $vertical_table_html .= '' . "\n"; + if ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_NONE) { + // if we are not showing the RowActionLinks, then we need to show + // the Multi-Row-Action checkboxes + $vertical_table_html .= '' . "\n"; + } + + $vertical_table_html .= $GLOBALS['vertical_display']['textbtn'] + . $this->_getCheckBoxesForMultipleRowOperations( + $GLOBALS['vertical_display'], '_left' + ) + . '' . "\n"; + } // end if + + // Prepares "edit" link at top if required + if ((($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_LEFT) + || ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_BOTH)) + && is_array($GLOBALS['vertical_display']['edit']) + && ((count($GLOBALS['vertical_display']['edit']) > 0) + || !empty($GLOBALS['vertical_display']['textbtn'])) + ) { + $vertical_table_html .= $this->_getOperationLinksForVerticleTable( + $GLOBALS['vertical_display'], 'edit' + ); + } // end if + + // Prepares "copy" link at top if required + if ((($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_LEFT) + || ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_BOTH)) + && is_array($GLOBALS['vertical_display']['copy']) + && ((count($GLOBALS['vertical_display']['copy']) > 0) + || !empty($GLOBALS['vertical_display']['textbtn'])) + ) { + $vertical_table_html .= $this->_getOperationLinksForVerticleTable( + $GLOBALS['vertical_display'], 'copy' + ); + } // end if + + // Prepares "delete" link at top if required + if ((($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_LEFT) + || ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_BOTH)) + && is_array($GLOBALS['vertical_display']['delete']) + && ((count($GLOBALS['vertical_display']['delete']) > 0) + || !empty($GLOBALS['vertical_display']['textbtn'])) + ) { + $vertical_table_html .= $this->_getOperationLinksForVerticleTable( + $GLOBALS['vertical_display'], 'delete' + ); + } // end if + + list($col_order, $col_visib) = $this->_getColumnParams(); + + // Prepares data + foreach ($GLOBALS['vertical_display']['desc'] AS $j => $val) { + + // assign appropriate key with current column order + $key = $col_order ? $col_order[$j] : $j; + + $vertical_table_html .= '' . "\n" + . $val; + + $cell_displayed = 0; + foreach ($GLOBALS['vertical_display']['rowdata'][$key] as $subval) { + + if (($cell_displayed != 0) + && ($_SESSION['tmp_user_values']['repeat_cells'] != 0) + && !($cell_displayed % $_SESSION['tmp_user_values']['repeat_cells']) + ) { + $vertical_table_html .= $val; + } + + $vertical_table_html .= $subval; + $cell_displayed++; + + } // end while + + $vertical_table_html .= '' . "\n"; + } // end while + + // Prepares "multi row delete" link at bottom if required + if ((($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_RIGHT) + || ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_BOTH)) + && is_array($GLOBALS['vertical_display']['row_delete']) + && ((count($GLOBALS['vertical_display']['row_delete']) > 0) + || !empty($GLOBALS['vertical_display']['textbtn'])) + ) { + + $vertical_table_html .= '' . "\n" . $GLOBALS['vertical_display']['textbtn'] + . $this->_getCheckBoxesForMultipleRowOperations( + $GLOBALS['vertical_display'], '_right' + ) + . '' . "\n"; + } // end if + + // Prepares "edit" link at bottom if required + if ((($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_RIGHT) + || ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_BOTH)) + && is_array($GLOBALS['vertical_display']['edit']) + && ((count($GLOBALS['vertical_display']['edit']) > 0) + || !empty($GLOBALS['vertical_display']['textbtn'])) + ) { + $vertical_table_html .= $this->_getOperationLinksForVerticleTable( + $GLOBALS['vertical_display'], 'edit' + ); + } // end if + + // Prepares "copy" link at bottom if required + if ((($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_RIGHT) + || ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_BOTH)) + && is_array($GLOBALS['vertical_display']['copy']) + && ((count($GLOBALS['vertical_display']['copy']) > 0) + || !empty($GLOBALS['vertical_display']['textbtn'])) + ) { + $vertical_table_html .= $this->_getOperationLinksForVerticleTable( + $GLOBALS['vertical_display'], 'copy' + ); + } // end if + + // Prepares "delete" link at bottom if required + if ((($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_RIGHT) + || ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_BOTH)) + && is_array($GLOBALS['vertical_display']['delete']) + && ((count($GLOBALS['vertical_display']['delete']) > 0) + || !empty($GLOBALS['vertical_display']['textbtn'])) + ) { + $vertical_table_html .= $this->_getOperationLinksForVerticleTable( + $GLOBALS['vertical_display'], 'delete' + ); + } + + return $vertical_table_html; + + } // end of the '_getVerticalTable' function + + + /** + * Prepare edit, copy and delete links for verticle table + * + * @param array $vertical_display the information to display + * @param string $operation edit/copy/delete + * + * @return string $links_html html content + * + * @access private + * + * @see _getVerticalTable() + */ + private function _getOperationLinksForVerticleTable( + $vertical_display, $operation + ) { + + $link_html = '' . "\n"; + + if (! is_array($vertical_display['row_delete'])) { + + if (($operation == 'edit') || ($operation == 'copy')) { + $link_html .= $vertical_display['textbtn']; + + } elseif ($operation == 'delete') { + + if (! is_array($vertical_display['edit'])) { + $link_html .= $vertical_display['textbtn']; + } + } + } + + foreach ($vertical_display[$operation] as $val) { + $link_html .= $val; + } // end while + + $link_html .= '' . "\n"; + + return $link_html; + + } // end of the '_getOperationLinksForVerticleTable' function + + + /** + * Get checkboxes for multiple row data operations + * + * @param array $vertical_display the information to display + * @param string $dir _left / _right + * + * @return $checkBoxes_html html content + * + * @access private + * + * @see _getVerticalTable() + */ + private function _getCheckBoxesForMultipleRowOperations($vertical_display, $dir) + { + + $checkBoxes_html = ''; + $cell_displayed = 0; + + foreach ($vertical_display['row_delete'] as $val) { + + if (($cell_displayed != 0) + && ($_SESSION['tmp_user_values']['repeat_cells'] != 0) + && !($cell_displayed % $_SESSION['tmp_user_values']['repeat_cells']) + ) { + + $checkBoxes_html .= '' . "\n"; + + } + + $checkBoxes_html .= str_replace('[%_PMA_CHECKBOX_DIR_%]', $dir, $val); + $cell_displayed++; + } // end while + + return $checkBoxes_html; + + } // end of the '_getCheckBoxesForMultipleRowOperations' function + + + /** + * Checks the posted options for viewing query resutls + * and sets appropriate values in the session. + * + * @todo make maximum remembered queries configurable + * @todo move/split into SQL class!? + * @todo currently this is called twice unnecessary + * @todo ignore LIMIT and ORDER in query!? + * + * @return void + * + * @access public + * + * @see sql.php file + */ + public function setConfigParamsForDisplayTable() + { + + $sql_md5 = md5($GLOBALS['sql_query']); + + $_SESSION['tmp_user_values']['query'][$sql_md5]['sql'] + = $GLOBALS['sql_query']; + + $valid_disp_dir = PMA_isValid( + $_REQUEST['disp_direction'], + array(self::DISP_DIR_HORIZONTAL, self::DISP_DIR_VERTICAL, + self::DISP_DIR_HORIZONTAL_FLIPPED + ) + ); + + if ($valid_disp_dir) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['disp_direction'] + = $_REQUEST['disp_direction']; + unset($_REQUEST['disp_direction']); + } elseif ( + empty($_SESSION['tmp_user_values']['query'][$sql_md5]['disp_direction']) + ) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['disp_direction'] + = $GLOBALS['cfg']['DefaultDisplay']; + } + + if (PMA_isValid($_REQUEST['repeat_cells'], 'numeric')) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['repeat_cells'] + = $_REQUEST['repeat_cells']; + unset($_REQUEST['repeat_cells']); + } elseif ( + empty($_SESSION['tmp_user_values']['query'][$sql_md5]['repeat_cells']) + ) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['repeat_cells'] + = $GLOBALS['cfg']['RepeatCells']; + } + + // as this is a form value, the type is always string so we cannot + // use PMA_isValid($_REQUEST['session_max_rows'], 'integer') + if ((PMA_isValid($_REQUEST['session_max_rows'], 'numeric') + && ((int) $_REQUEST['session_max_rows'] == $_REQUEST['session_max_rows'])) + || ($_REQUEST['session_max_rows'] == self::ALL_ROWS) + ) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows'] + = $_REQUEST['session_max_rows']; + unset($_REQUEST['session_max_rows']); + } elseif (empty($_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows'])) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows'] + = $GLOBALS['cfg']['MaxRows']; + } + + if (PMA_isValid($_REQUEST['pos'], 'numeric')) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['pos'] + = $_REQUEST['pos']; + unset($_REQUEST['pos']); + } elseif (empty($_SESSION['tmp_user_values']['query'][$sql_md5]['pos'])) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['pos'] = 0; + } + + if (PMA_isValid( + $_REQUEST['display_text'], + array( + self::DISPLAY_PARTIAL_TEXT, self::DISPLAY_FULL_TEXT + ) + ) + ) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['display_text'] + = $_REQUEST['display_text']; + unset($_REQUEST['display_text']); + } elseif ( + empty($_SESSION['tmp_user_values']['query'][$sql_md5]['display_text']) + ) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['display_text'] + = self::DISPLAY_PARTIAL_TEXT; + } + + if (PMA_isValid( + $_REQUEST['relational_display'], + array( + self::RELATIONAL_KEY, self::RELATIONAL_DISPLAY_COLUMN + ) + ) + ) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['relational_display'] + = $_REQUEST['relational_display']; + unset($_REQUEST['relational_display']); + } elseif ( + empty( + $_SESSION['tmp_user_values']['query'][$sql_md5]['relational_display'] + ) + ) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['relational_display'] + = self::RELATIONAL_KEY; + } + + if (PMA_isValid( + $_REQUEST['geometry_display'], + array( + self::GEOMETRY_DISP_WKT, self::GEOMETRY_DISP_WKB, + self::GEOMETRY_DISP_GEOM + ) + ) + ) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['geometry_display'] + = $_REQUEST['geometry_display']; + unset($_REQUEST['geometry_display']); + } elseif ( + empty( + $_SESSION['tmp_user_values']['query'][$sql_md5]['geometry_display'] + ) + ) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['geometry_display'] + = self::GEOMETRY_DISP_GEOM; + } + + if (isset($_REQUEST['display_binary'])) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary'] = true; + unset($_REQUEST['display_binary']); + } elseif (isset($_REQUEST['display_options_form'])) { + // we know that the checkbox was unchecked + unset($_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary']); + } elseif (isset($_REQUEST['full_text_button'])) { + // do nothing to keep the value that is there in the session + } else { + // selected by default because some operations like OPTIMIZE TABLE + // and all queries involving functions return "binary" contents, + // according to low-level field flags + $_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary'] = true; + } + + if (isset($_REQUEST['display_binary_as_hex'])) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary_as_hex'] + = true; + unset($_REQUEST['display_binary_as_hex']); + } elseif (isset($_REQUEST['display_options_form'])) { + // we know that the checkbox was unchecked + unset($_SESSION['tmp_user_values']['query'][$sql_md5] + ['display_binary_as_hex'] + ); + } elseif (isset($_REQUEST['full_text_button'])) { + // do nothing to keep the value that is there in the session + } else { + // display_binary_as_hex config option + if (isset($GLOBALS['cfg']['DisplayBinaryAsHex']) + && ($GLOBALS['cfg']['DisplayBinaryAsHex'] === true) + ) { + $_SESSION['tmp_user_values']['query'][$sql_md5] + ['display_binary_as_hex'] = true; + } + } + + if (isset($_REQUEST['display_blob'])) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['display_blob'] = true; + unset($_REQUEST['display_blob']); + } elseif (isset($_REQUEST['display_options_form'])) { + // we know that the checkbox was unchecked + unset($_SESSION['tmp_user_values']['query'][$sql_md5]['display_blob']); + } + + if (isset($_REQUEST['hide_transformation'])) { + $_SESSION['tmp_user_values']['query'][$sql_md5]['hide_transformation'] + = true; + unset($_REQUEST['hide_transformation']); + } elseif (isset($_REQUEST['display_options_form'])) { + // we know that the checkbox was unchecked + unset($_SESSION['tmp_user_values']['query'][$sql_md5] + ['hide_transformation'] + ); + } + + // move current query to the last position, to be removed last + // so only least executed query will be removed if maximum remembered queries + // limit is reached + $tmp = $_SESSION['tmp_user_values']['query'][$sql_md5]; + unset($_SESSION['tmp_user_values']['query'][$sql_md5]); + $_SESSION['tmp_user_values']['query'][$sql_md5] = $tmp; + + // do not exceed a maximum number of queries to remember + if (count($_SESSION['tmp_user_values']['query']) > 10) { + array_shift($_SESSION['tmp_user_values']['query']); + //echo 'deleting one element ...'; + } + + // populate query configuration + $_SESSION['tmp_user_values']['display_text'] + = $_SESSION['tmp_user_values']['query'][$sql_md5]['display_text']; + $_SESSION['tmp_user_values']['relational_display'] + = $_SESSION['tmp_user_values']['query'][$sql_md5]['relational_display']; + $_SESSION['tmp_user_values']['geometry_display'] + = $_SESSION['tmp_user_values']['query'][$sql_md5]['geometry_display']; + $_SESSION['tmp_user_values']['display_binary'] + = isset($_SESSION['tmp_user_values']['query'][$sql_md5] + ['display_binary'] + ) + ? true + : false; + $_SESSION['tmp_user_values']['display_binary_as_hex'] + = isset($_SESSION['tmp_user_values']['query'][$sql_md5] + ['display_binary_as_hex'] + ) + ? true + : false; + $_SESSION['tmp_user_values']['display_blob'] + = isset($_SESSION['tmp_user_values']['query'][$sql_md5]['display_blob']) + ? true + : false; + $_SESSION['tmp_user_values']['hide_transformation'] + = isset($_SESSION['tmp_user_values']['query'][$sql_md5] + ['hide_transformation'] + ) + ? true + : false; + $_SESSION['tmp_user_values']['pos'] + = $_SESSION['tmp_user_values']['query'][$sql_md5]['pos']; + $_SESSION['tmp_user_values']['max_rows'] + = $_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows']; + $_SESSION['tmp_user_values']['repeat_cells'] + = $_SESSION['tmp_user_values']['query'][$sql_md5]['repeat_cells']; + $_SESSION['tmp_user_values']['disp_direction'] + = $_SESSION['tmp_user_values']['query'][$sql_md5]['disp_direction']; + + } + + + /** + * Prepare a table of results returned by a SQL query. + * This function is called by the "sql.php" script. + * + * @param integer &$dt_result the link id associated to the query + * which results have to be displayed + * @param array &$the_disp_mode the display mode + * @param array $analyzed_sql the analyzed query + * + * @return sting Generated HTML content for resulted table + * + * @access public + * + * @see sql.php file + */ + public function getTable(&$dt_result, &$the_disp_mode, $analyzed_sql) + { + + $table_html = ''; + + // why was this called here? (already called from sql.php) + //$this->setConfigParamsForDisplayTable(); + + /** + * @todo move this to a central place + * @todo for other future table types + */ + $is_innodb = (isset($GLOBALS['showtable']['Type']) + && $GLOBALS['showtable']['Type'] == self::TABLE_TYPE_INNO_DB); + + if ($is_innodb + && ! isset($analyzed_sql[0]['queryflags']['union']) + && ! isset($analyzed_sql[0]['table_ref'][1]['table_name']) + && (empty($analyzed_sql[0]['where_clause']) + || ($analyzed_sql[0]['where_clause'] == '1 ')) + ) { + // "j u s t b r o w s i n g" + $pre_count = '~'; + $after_count = PMA_showHint( + PMA_sanitize( + __( + 'May be approximate. See [a@./Documentation.html' + . '#faq3_11@Documentation]FAQ 3.11[/a]' + ) + ) + ); + } else { + $pre_count = ''; + $after_count = ''; + } + + // 1. ----- Prepares the work ----- + + // 1.1 Gets the informations about which functionalities should be + // displayed + $total = ''; + $is_display = $this->_setDisplayMode($the_disp_mode, $total); + + // 1.2 Defines offsets for the next and previous pages + if ($is_display['nav_bar'] == '1') { + list($pos_next, $pos_prev) = $this->_getOffsets(); + } // end if + + // 1.3 Find the sort expression + // we need $sort_expression and $sort_expression_nodirection + // even if there are many table references + list($sort_expression, $sort_expression_nodirection, $sort_direction) + = $this->_getSortParams($analyzed_sql[0]['order_by_clause']); + + + // 1.4 Prepares display of first and last value of the sorted column + + $sorted_column_message = $this->_getSortedColumnMessage( + $dt_result, $GLOBALS['fields_meta'], $GLOBALS['num_rows'], + $sort_expression_nodirection + ); + + + // 2. ----- Prepare to display the top of the page ----- + + // 2.1 Prepares a messages with position informations + if (($is_display['nav_bar'] == '1') && isset($pos_next)) { + + $message = $this->_setMessageInformation( + $sorted_column_message, + $analyzed_sql[0]['limit_clause'], $GLOBALS['unlim_num_rows'], + $total, $pos_next, $pre_count, $after_count + ); + + $table_html .= PMA_getMessage($message, $this->_sql_query, 'success'); + + } elseif (! isset($GLOBALS['printview']) || ($GLOBALS['printview'] != '1')) { + + $table_html .= PMA_getMessage( + __('Your SQL query has been executed successfully'), + $this->_sql_query, 'success' + ); + } + + // 2.3 Prepare the navigation bars + if (! strlen($this->_table)) { + + if (isset($analyzed_sql[0]['query_type']) + && ($analyzed_sql[0]['query_type'] == self::QUERY_TYPE_SELECT) + ) { + // table does not always contain a real table name, + // for example in MySQL 5.0.x, the query SHOW STATUS + // returns STATUS as a table name + $this->_table = $GLOBALS['fields_meta'][0]->table; + } else { + $this->_table = ''; + } + + } + + if (($is_display['nav_bar'] == '1') + && empty($analyzed_sql[0]['limit_clause']) + ) { + + $table_html .= $this->_getTableNavigation( + $pos_next, $pos_prev, 'top_direction_dropdown' + ) + . "\n"; + + } elseif (! isset($GLOBALS['printview']) || ($GLOBALS['printview'] != '1')) { + $table_html .= "\n" . '

' . "\n"; + } + + // 2b ----- Get field references from Database ----- + // (see the 'relation' configuration variable) + + // initialize map + $map = array(); + + // find tables + $target=array(); + if (isset($analyzed_sql[0]['table_ref']) + && is_array($analyzed_sql[0]['table_ref']) + ) { + + foreach ($analyzed_sql[0]['table_ref'] + as $table_ref_position => $table_ref) { + $target[] = $analyzed_sql[0]['table_ref'] + [$table_ref_position]['table_true_name']; + } + + } + + $tabs = '(\'' . join('\',\'', $target) . '\')'; + + if (! strlen($this->_table)) { + $exist_rel = false; + } else { + + // To be able to later display a link to the related table, + // we verify both types of relations: either those that are + // native foreign keys or those defined in the phpMyAdmin + // configuration storage. If no PMA storage, we won't be able + // to use the "column to display" notion (for example show + // the name related to a numeric id). + $exist_rel = PMA_getForeigners($this->_db, $this->_table, '', self::POSITION_BOTH); + + if ($exist_rel) { + + foreach ($exist_rel as $master_field => $rel) { + + $display_field = PMA_getDisplayField( + $rel['foreign_db'], $rel['foreign_table'] + ); + + $map[$master_field] = array( + $rel['foreign_table'], + $rel['foreign_field'], + $display_field, + $rel['foreign_db'] + ); + } // end while + } // end if + } // end if + // end 2b + + // 3. ----- Prepare the results table ----- + $table_html .= $this->_getTableHeaders( + $is_display, $GLOBALS['fields_meta'], $GLOBALS['fields_cnt'], $analyzed_sql, + $sort_expression, $sort_expression_nodirection, $sort_direction + ) + . '
' . "\n"; + + $url_query = ''; + $table_html .= $this->_getTableBody( + $dt_result, $is_display, $map, $analyzed_sql + ); + + // vertical output case + if ($_SESSION['tmp_user_values']['disp_direction'] == self::DISP_DIR_VERTICAL) { + $table_html .= $this->_getVerticalTable(); + } // end if + + unset($GLOBALS['vertical_display']); + $table_html .= '' . "\n" + . '
' . $value . 'NULL
only if the display dir is not vertical + && ($_SESSION['tmp_user_values']['disp_direction'] + != self::DISP_DIR_VERTICAL)) + ? 'hide' + : ''; + + // handle datetime-related class, for grid editing + $field_type_class + = $this->_getClassForDateTimeRelatedFields($meta->type); + + $pointer = $i; + $is_field_truncated = false; + //If the previous column had blob data, we need to reset the class + // to $inline_edit_class + $class = $this->_getResettedClassForInlineEdit( + $grid_edit_class, $not_null_class, $relation_class, + $hide_class, $field_type_class, $row_no + ); + + // See if this column should get highlight because it's used in the + // where-query. + $condition_field = (isset($GLOBALS['highlight_columns']) + && (isset($GLOBALS['highlight_columns'][$meta->name]) + || isset($GLOBALS['highlight_columns'][PMA_backquote($meta->name)]))) + ? true + : false; + + // Wrap MIME-transformations. [MIME] + $default_function = 'PMA_mimeDefaultFunction'; // default_function + $transform_function = $default_function; + $transform_options = array(); + + if ($GLOBALS['cfgRelation']['mimework'] + && $GLOBALS['cfg']['BrowseMIME'] + ) { + + if (isset($GLOBALS['mime_map'][$meta->name]['mimetype']) + && isset($GLOBALS['mime_map'][$meta->name]['transformation']) + && !empty($GLOBALS['mime_map'][$meta->name]['transformation']) + ) { + + $include_file + = './libraries/transformations/' . PMA_securePath( + $GLOBALS['mime_map'][$meta->name]['transformation'] + ); + + if (file_exists($include_file)) { + + $transformfunction_name = 'PMA_transformation_' + . str_replace( + '.inc.php', '', + $GLOBALS['mime_map'][$meta->name]['transformation'] + ); + + include_once $include_file; + + if (function_exists($transformfunction_name)) { + + $transform_function = $transformfunction_name; + + $transform_options = PMA_transformation_getOptions( + isset($GLOBALS['mime_map'][$meta->name] + ['transformation_options'] + ) + ? $GLOBALS['mime_map'][$meta->name] + ['transformation_options'] + : '' + ); + + $meta->mimetype = str_replace( + '_', '/', + $GLOBALS['mime_map'][$meta->name]['mimetype'] + ); + } + } // end if file_exists + } // end if transformation is set + } // end if mime/transformation works. + + $_url_params = array( + 'db' => $this->_db, + 'table' => $this->_table, + 'where_clause' => $where_clause, + 'transform_key' => $meta->name, + ); + + if (! empty($this->_sql_query)) { + $_url_params['sql_query'] = $url_sql_query; + } + + $transform_options['wrapper_link'] + = PMA_generate_common_url($_url_params); + + if ($meta->numeric == 1) { + // n u m e r i c + + // if two fields have the same name (this is possible + // with self-join queries, for example), using $meta->name + // will show both fields NULL even if only one is NULL, + // so use the $pointer + + $GLOBALS['vertical_display']['data'][$row_no][$i] + = $this->_getDataCellForNumericColumns( + $row[$i], $class, $condition_field, $meta, $map, + $is_field_truncated, $analyzed_sql, $transform_function, + $default_function, $transform_options + ); + + } elseif (stristr($meta->type, self::BLOB_FIELD)) { + // b l o b + + // PMA_mysql_fetch_fields returns BLOB in place of + // TEXT fields type so we have to ensure it's really a BLOB + $field_flags = PMA_DBI_field_flags($dt_result, $i); + + $GLOBALS['vertical_display']['data'][$row_no][$i] + = $this->_getDataCellForBlobColumns( + $row[$i], $class, $meta, $_url_params, $field_flags, + $transform_function, $default_function, + $transform_options, $condition_field, $is_field_truncated + ); + + } elseif ($meta->type == self::GEOMETRY_FIELD) { + // g e o m e t r y + + // Remove 'grid_edit' from $class as we do not allow to + // inline-edit geometry data. + $class = str_replace('grid_edit', '', $class); + + $GLOBALS['vertical_display']['data'][$row_no][$i] + = $this->_getDataCellForGeometryColumns( + $row[$i], $class, $meta, $map, $_url_params, + $condition_field, $transform_function, $default_function, + $transform_options, $is_field_truncated, $analyzed_sql + ); + + } else { + // n o t n u m e r i c a n d n o t B L O B + + $GLOBALS['vertical_display']['data'][$row_no][$i] + = $this->_getDataCellForNonNumericAndNonBlobColumns( + $row[$i], $class, $meta, $map, $_url_params, + $condition_field, $transform_function, $default_function, + $transform_options, $is_field_truncated, $analyzed_sql, + $dt_result, $i + ); + + } + + // output stored cell + if ($directionCondition) { + $table_body_html .= $GLOBALS['vertical_display']['data'][$row_no][$i]; + } + + if (isset($GLOBALS['vertical_display']['rowdata'][$i][$row_no])) { + $GLOBALS['vertical_display']['rowdata'][$i][$row_no] + .= $GLOBALS['vertical_display']['data'][$row_no][$i]; + } else { + $GLOBALS['vertical_display']['rowdata'][$i][$row_no] + = $GLOBALS['vertical_display']['data'][$row_no][$i]; + } + } // end for (2) + + // 3. Displays the modify/delete links on the right if required + if ((($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_RIGHT) + || ($GLOBALS['cfg']['RowActionLinks'] == self::POSITION_BOTH)) + && $directionCondition + ) { + + $table_body_html .= $this->_getPlacedLinks( + self::POSITION_RIGHT, $del_url, $is_display, $row_no, + $where_clause, $where_clause_html, $condition_array, + $del_query, 'r', $edit_url, $copy_url, $edit_anchor_class, + $edit_str, $copy_str, $del_str, $js_conf + ); + + } // end if (3) + + if ($directionCondition) { + $table_body_html .= '
' + . "\n".'  ' + . "\n" . '  
'; + + // 4. ----- Prepares the link for multi-fields edit and delete + + if ($is_display['del_lnk'] == self::DELETE_ROW + && $is_display['del_lnk'] != self::KILL_PROCESS + ) { + + $table_html .= $this->_getMultiRowOperationLinks( + $dt_result, $GLOBALS['fields_cnt'], $GLOBALS['fields_meta'], $GLOBALS['num_rows'], $analyzed_sql, + $is_display['del_lnk'] + ); + + } + + // 5. ----- Get the navigation bar at the bottom if required ----- + + if (($is_display['nav_bar'] == '1') + && empty($analyzed_sql[0]['limit_clause']) + ) { + + $table_html .= '
' . "\n"; + $table_html .= $this->_getTableNavigation( + $pos_next, $pos_prev, 'bottom_direction_dropdown' + ); + + } elseif (! isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') { + $table_html .= "\n" . '

' . "\n"; + } + + // 6. ----- Prepare "Query results operations" + if (! isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') { + $table_html .= $this->_getResultsOperations( + $the_disp_mode, $analyzed_sql + ); + } + + return $table_html; + + } // end of the 'getTable()' function + + + /** + * Get offsets for next page and previous page + * + * @return array array with two elements - $pos_next, $pos_prev + * + * @access private + * + * @see getTable() + */ + private function _getOffsets() + { + + if ($_SESSION['tmp_user_values']['max_rows'] == self::ALL_ROWS) { + $pos_next = 0; + $pos_prev = 0; + } else { + + $pos_next = $_SESSION['tmp_user_values']['pos'] + + $_SESSION['tmp_user_values']['max_rows']; + + $pos_prev = $_SESSION['tmp_user_values']['pos'] + - $_SESSION['tmp_user_values']['max_rows']; + + if ($pos_prev < 0) { + $pos_prev = 0; + } + } + + return array($pos_next, $pos_prev); + + } // end of the '_getOffsets()' function + + + /** + * Get sort parameters + * + * @param string $order_by_clause the order by clause of the sql query + * + * @return array 3 element array: $sort_expression, + * $sort_expression_nodirection, $sort_direction + * + * @access private + * + * @see getTable() + */ + private function _getSortParams($order_by_clause) + { + + if (! empty($order_by_clause)) { + + $sort_expression = trim( + str_replace(' ', ' ', $order_by_clause) + ); + /** + * Get rid of ASC|DESC + */ + preg_match( + '@(.*)([[:space:]]*(ASC|DESC))@si', $sort_expression, $matches + ); + + $sort_expression_nodirection = isset($matches[1]) + ? trim($matches[1]) + : $sort_expression; + + $sort_direction = isset($matches[2]) ? trim($matches[2]) : ''; + unset($matches); + + } else { + $sort_expression = $sort_expression_nodirection = $sort_direction = ''; + } + + return array($sort_expression, $sort_expression_nodirection, + $sort_direction + ); + + } // end of the '_getSortParams()' function + + + /** + * Prepare sorted column message + * + * @param integer &$dt_result the link id associated to the + * query which results have to + * be displayed + * @param array $fields_meta the list of fields properties + * @param integer $num_rows the total number of rows returned + * by the SQL query + * @param string $sort_expression_nodirection sort expression without direction + * + * @return string html content + * null if not found sorted column + * + * @access private + * + * @see getTable() + */ + private function _getSortedColumnMessage( + &$dt_result, $fields_meta, $num_rows, $sort_expression_nodirection + ) { + + if (! empty($sort_expression_nodirection)) { + + if (strpos($sort_expression_nodirection, '.') === false) { + $sort_table = $this->_table; + $sort_column = $sort_expression_nodirection; + } else { + list($sort_table, $sort_column) + = explode('.', $sort_expression_nodirection); + } + + $sort_table = PMA_unQuote($sort_table); + $sort_column = PMA_unQuote($sort_column); + + // find the sorted column index in row result + // (this might be a multi-table query) + $sorted_column_index = false; + + foreach ($fields_meta as $key => $meta) { + if (($meta->table == $sort_table) && ($meta->name == $sort_column)) { + $sorted_column_index = $key; + break; + } + } + + if ($sorted_column_index !== false) { + + // fetch first row of the result set + $row = PMA_DBI_fetch_row($dt_result); + + // initializing default arguments + $default_function = 'PMA_mimeDefaultFunction'; + $transform_function = $default_function; + $transform_options = array(); + + // check for non printable sorted row data + $meta = $fields_meta[$sorted_column_index]; + + if (stristr($meta->type, self::BLOB_FIELD) + || ($meta->type == self::GEOMETRY_FIELD) + ) { + + $column_for_first_row = $this->_handleNonPrintableContents( + $meta->type, $row[$sorted_column_index], $transform_function, + $transform_options, $default_function, $meta, null + ); + + } else { + $column_for_first_row = $row[$sorted_column_index]; + } + + $column_for_first_row = strtoupper( + substr($column_for_first_row, 0, $GLOBALS['cfg']['LimitChars']) + ); + + // fetch last row of the result set + PMA_DBI_data_seek($dt_result, $num_rows - 1); + $row = PMA_DBI_fetch_row($dt_result); + + // check for non printable sorted row data + $meta = $fields_meta[$sorted_column_index]; + if (stristr($meta->type, self::BLOB_FIELD) + || ($meta->type == self::GEOMETRY_FIELD) + ) { + + $column_for_last_row = $this->_handleNonPrintableContents( + $meta->type, $row[$sorted_column_index], $transform_function, + $transform_options, $default_function, $meta, null + ); + + } else { + $column_for_last_row = $row[$sorted_column_index]; + } + + $column_for_last_row = strtoupper( + substr($column_for_last_row, 0, $GLOBALS['cfg']['LimitChars']) + ); + + // reset to first row for the loop in _getTableBody() + PMA_DBI_data_seek($dt_result, 0); + + // we could also use here $sort_expression_nodirection + return ' [' . htmlspecialchars($sort_column) + . ': ' . htmlspecialchars($column_for_first_row) . ' - ' + . htmlspecialchars($column_for_last_row) . ']'; + } + } + + return null; + + } // end of the '_getSortedColumnMessage()' function + + + /** + * Set the content need to be show in message + * + * @param string $sorted_column_message the message for sorted column + * @param string $limit_clause the limit clause of analyzed query + * @param integer $unlim_num_rows the total number of rows returned by + * the SQL query without any appended + * "LIMIT" clause programmatically + * @param integer $total the total number of rows returned by + * the SQL query without any + * programmatically appended LIMIT clause + * @param integer $pos_next the offset for next page + * @param string $pre_count the string renders before row count + * @param string $after_count the string renders after row count + * + * @return PMA_Message $message an object of PMA_Message + * + * @access private + * + * @see getTable() + */ + private function _setMessageInformation( + $sorted_column_message, $limit_clause, $unlim_num_rows, + $total, $pos_next, $pre_count, $after_count + ) { + + if (isset($unlim_num_rows) && ($unlim_num_rows != $total)) { + $selectstring = ', ' . $unlim_num_rows . ' ' . __('in query'); + } else { + $selectstring = ''; + } + + if (! empty($limit_clause)) { + + $limit_data = PMA_analyzeLimitClause($limit_clause); + $first_shown_rec = $limit_data['start']; + + if ($limit_data['length'] < $total) { + $last_shown_rec = $limit_data['start'] + $limit_data['length'] - 1; + } else { + $last_shown_rec = $limit_data['start'] + $total - 1; + } + + } elseif (($_SESSION['tmp_user_values']['max_rows'] == self::ALL_ROWS) + || ($pos_next > $total) + ) { + + $first_shown_rec = $_SESSION['tmp_user_values']['pos']; + $last_shown_rec = $total - 1; + + } else { + + $first_shown_rec = $_SESSION['tmp_user_values']['pos']; + $last_shown_rec = $pos_next - 1; + + } + + if (PMA_Table::isView($this->_db, $this->_table) + && ($total == $GLOBALS['cfg']['MaxExactCountViews']) + ) { + + $message = PMA_Message::notice( + __( + 'This view has at least this number of rows. ' + . 'Please refer to %sdocumentation%s.' + ) + ); + + $message->addParam('[a@./Documentation.html#cfg_MaxExactCount@_blank]'); + $message->addParam('[/a]'); + $message_view_warning = PMA_showHint($message); + + } else { + $message_view_warning = false; + } + + $message = PMA_Message::success(__('Showing rows')); + $message->addMessage($first_shown_rec); + + if ($message_view_warning) { + + $message->addMessage('...', ' - '); + $message->addMessage($message_view_warning); + $message->addMessage('('); + + } else { + + $message->addMessage($last_shown_rec, ' - '); + $message->addMessage(' ('); + $message->addMessage($pre_count . PMA_formatNumber($total, 0)); + $message->addString(__('total')); + + if (!empty($after_count)) { + $message->addMessage($after_count); + } + + $message->addMessage($selectstring, ''); + $message->addMessage(', ', ''); + + } + + $messagge_qt = PMA_Message::notice(__('Query took %01.4f sec') . ')'); + $messagge_qt->addParam($GLOBALS['querytime']); + + $message->addMessage($messagge_qt, ''); + if (! is_null($sorted_column_message)) { + $message->addMessage($sorted_column_message, ''); + } + + return $message; + + } // end of the '_setMessageInformation()' function + + + /** + * Prepare multi field edit/delete links + * + * @param integer &$dt_result the link id associated to the query + * which results have to be displayed + * @param integer $fields_cnt the total number of fields returned by + * the SQL query + * @param array $fields_meta the list of fields properties + * @param integer $num_rows the total number of rows returned + * by the SQL query + * @param array $analyzed_sql the analyzed query + * @param string $del_link the display element - 'del_link' + * + * @return string $links_html html content + * + * @access private + * + * @see getTable() + */ + private function _getMultiRowOperationLinks( + &$dt_result, $fields_cnt, $fields_meta, $num_rows, $analyzed_sql, + $del_link + ) { + + $links_html = ''; + $delete_text = ($del_link == self::DELETE_ROW) ? __('Delete') : __('Kill'); + + $_url_params = array( + 'db' => $this->_db, + 'table' => $this->_table, + '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) { + + $checkall_params['onclick'] + = 'if (setCheckboxes(\'resultsForm\', true)) return false;'; + $uncheckall_params['onclick'] + = 'if (setCheckboxes(\'resultsForm\', false)) return false;'; + + } else { + + $checkall_params['onclick'] + = 'if (markAllRows(\'resultsForm\')) return false;'; + $uncheckall_params['onclick'] + = 'if (unMarkAllRows(\'resultsForm\')) return false;'; + + } + + $checkall_link = PMA_linkOrButton( + $checkall_url, __('Check All'), $checkall_params, false + ); + + $uncheckall_link = PMA_linkOrButton( + $uncheckall_url, __('Uncheck All'), $uncheckall_params, false + ); + + if ($_SESSION['tmp_user_values']['disp_direction'] != self::DISP_DIR_VERTICAL) { + + $links_html .= '' . __('With selected:') . ''; + } + + $links_html .= $checkall_link . "\n" + . ' / ' . "\n" + . $uncheckall_link . "\n" + . '' . __('With selected:') . '' . "\n"; + + $links_html .= PMA_getButtonOrImage( + 'submit_mult', 'mult_submit', 'submit_mult_change', + __('Change'), 'b_edit.png', 'edit' + ); + + $links_html .= PMA_getButtonOrImage( + 'submit_mult', 'mult_submit', 'submit_mult_delete', + $delete_text, 'b_drop.png', 'delete' + ); + + if (isset($analyzed_sql[0]) && $analyzed_sql[0]['querytype'] == self::QUERY_TYPE_SELECT) { + $links_html .= PMA_getButtonOrImage( + 'submit_mult', 'mult_submit', 'submit_mult_export', + __('Export'), 'b_tblexport.png', 'export' + ); + } + + $links_html .= "\n"; + + $links_html .= '' . "\n"; + + if (! empty($GLOBALS['url_query'])) { + $links_html .= '' . "\n"; + } + + // fetch last row of the result set + PMA_DBI_data_seek($dt_result, $num_rows - 1); + $row = PMA_DBI_fetch_row($dt_result); + + // $clause_is_unique is needed by getTable() to generate the proper param + // in the multi-edit and multi-delete form + list($where_clause, $clause_is_unique, $condition_array) + = PMA_getUniqueCondition($dt_result, $fields_cnt, $fields_meta, $row); + + // reset to first row for the loop in _getTableBody() + PMA_DBI_data_seek($dt_result, 0); + + $links_html .= '' . "\n"; + + $links_html .= '
' . "\n"; + + return $links_html; + + } // end of the '_getMultiRowOperationLinks()' function + + + /** + * Get operations that are available on results. + * + * @param array $the_disp_mode the display mode + * @param array $analyzed_sql the analyzed query + * + * @return string $results_operations_html html content + * + * @access private + * + * @see getTable() + */ + private function _getResultsOperations($the_disp_mode, $analyzed_sql) + { + + $results_operations_html = ''; + $header_shown = false; + $header = '
' . __('Query results operations') + . ''; + + if (($the_disp_mode[6] == '1') || ($the_disp_mode[9] == '1')) { + // Displays "printable view" link if required + if ($the_disp_mode[9] == '1') { + + if (!$header_shown) { + $results_operations_html .= $header; + $header_shown = true; + } + + $_url_params = array( + 'db' => $this->_db, + 'table' => $this->_table, + 'printview' => '1', + 'sql_query' => $this->_sql_query, + ); + $url_query = PMA_generate_common_url($_url_params); + + $results_operations_html .= PMA_linkOrButton( + 'sql.php' . $url_query, + PMA_getIcon('b_print.png', __('Print view'), true), + '', true, true, 'print_view' + ) + . "\n"; + + if ($_SESSION['tmp_user_values']['display_text']) { + + $_url_params['display_text'] = self::DISPLAY_FULL_TEXT; + + $results_operations_html .= PMA_linkOrButton( + 'sql.php' . PMA_generate_common_url($_url_params), + PMA_getIcon( + 'b_print.png', __('Print view (with full texts)'), true + ), + '', true, true, 'print_view' + ) + . "\n"; + unset($_url_params['display_text']); + } + } // end displays "printable view" + } + + // Export link + // (the url_query has extra parameters that won't be used to export) + // (the single_table parameter is used in display_export.lib.php + // to hide the SQL and the structure export dialogs) + // If the parser found a PROCEDURE clause + // (most probably PROCEDURE ANALYSE()) it makes no sense to + // display the Export link). + if (isset($analyzed_sql[0]) + && ($analyzed_sql[0]['querytype'] == self::QUERY_TYPE_SELECT) + && ! isset($printview) + && ! isset($analyzed_sql[0]['queryflags']['procedure']) + ) { + + if (isset($analyzed_sql[0]['table_ref'][0]['table_true_name']) + && ! isset($analyzed_sql[0]['table_ref'][1]['table_true_name']) + ) { + $_url_params['single_table'] = 'true'; + } + + if (!$header_shown) { + $results_operations_html .= $header; + $header_shown = true; + } + + $_url_params['unlim_num_rows'] = $GLOBALS['unlim_num_rows']; + + /** + * At this point we don't know the table name; this can happen + * for example with a query like + * SELECT bike_code FROM (SELECT bike_code FROM bikes) tmp + * As a workaround we set in the table parameter the name of the + * first table of this database, so that tbl_export.php and + * the script it calls do not fail + */ + if (empty($_url_params['table']) && !empty($_url_params['db'])) { + $_url_params['table'] = PMA_DBI_fetch_value("SHOW TABLES"); + /* No result (probably no database selected) */ + if ($_url_params['table'] === false) { + unset($_url_params['table']); + } + } + + $results_operations_html .= PMA_linkOrButton( + 'tbl_export.php' . PMA_generate_common_url($_url_params), + PMA_getIcon('b_tblexport.png', __('Export'), true), + '', true, true, '' + ) + . "\n"; + + // prepare chart + $results_operations_html .= PMA_linkOrButton( + 'tbl_chart.php' . PMA_generate_common_url($_url_params), + PMA_getIcon('b_chart.png', __('Display chart'), true), + '', true, true, '' + ) + . "\n"; + + // prepare GIS chart + $geometry_found = false; + // If atleast one geometry field is found + foreach ($GLOBALS['fields_meta'] as $meta) { + if ($meta->type == self::GEOMETRY_FIELD) { + $geometry_found = true; + break; + } + } + + if ($geometry_found) { + $results_operations_html .= PMA_linkOrButton( + 'tbl_gis_visualization.php' + . PMA_generate_common_url($_url_params), + PMA_getIcon('b_globe.gif', __('Visualize GIS data'), true), + '', true, true, '' + ) + . "\n"; + } + } + + // CREATE VIEW + /** + * + * @todo detect privileges to create a view + * (but see 2006-01-19 note in display_create_table.lib.php, + * I think we cannot detect db-specific privileges reliably) + * Note: we don't display a Create view link if we found a PROCEDURE clause + */ + if (!$header_shown) { + $results_operations_html .= $header; + $header_shown = true; + } + + if (!PMA_DRIZZLE && !isset($analyzed_sql[0]['queryflags']['procedure'])) { + + $ajax_class = $GLOBALS['cfg']['AjaxEnable'] ? ' ajax' : ''; + + $results_operations_html .= '' + . PMA_linkOrButton( + 'view_create.php' . $url_query, + PMA_getIcon('b_views.png', __('Create view'), true), + '', true, true, '' + ) + . '' . "\n"; + } + + if ($header_shown) { + $results_operations_html .= '

'; + } + + return $results_operations_html; + + } // end of the '_getResultsOperations()' function + + + /** + * Verifies what to do with non-printable contents (binary or BLOB) + * in Browse mode. + * + * @param string $category BLOB|BINARY|GEOMETRY + * @param string $content the binary content + * @param string $transform_function transformation function + * @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 + * download link + * + * @return mixed string or float + * + * @access private + * + * @see _getDataCellForBlobColumns(), _getDataCellForGeometryColumns(), + * _getDataCellForNonNumericAndNonBlobColumns(), + * _getSortedColumnMessage() + */ + private function _handleNonPrintableContents( + $category, $content, $transform_function, $transform_options, + $default_function, $meta, $url_params = array() + ) { + + $result = '[' . $category; + + if (is_null($content)) { + + $result .= ' - NULL'; + $size = 0; + + } elseif (isset($content)) { + + $size = strlen($content); + $display_size = PMA_formatByteDown($size, 3, 1); + $result .= ' - '. $display_size[0] . ' ' . $display_size[1]; + + } + + $result .= ']'; + + if (strpos($transform_function, 'octetstream')) { + $result = $content; + } + + if ($size > 0) { + + if ($default_function != $transform_function) { + $result = $transform_function($result, $transform_options, $meta); + } else { + + $result = $default_function($result, array(), $meta); + if (stristr($meta->type, self::BLOB_FIELD) + && $_SESSION['tmp_user_values']['display_blob'] + ) { + // in this case, restart from the original $content + $result = htmlspecialchars(PMA_replaceBinaryContents($content)); + } + + /* Create link to download */ + if (count($url_params) > 0) { + $result = '
' + . $result . ''; + } + } + } + + return($result); + + } // end of the '_handleNonPrintableContents()' function + + + /** + * Prepares the displayable content of a data cell in Browse mode, + * taking into account foreign key description field and transformations + * + * @param string $class css classes for the td element + * @param bool $condition_field whether the column is a part of the + * where clause + * @param string $analyzed_sql the analyzed query + * @param object $meta the meta-information about this field + * @param array $map the list of relations + * @param string $data data + * @param string $transform_function transformation function + * @param string $default_function default function + * @param string $nowrap 'nowrap' if the content should not be + * wrapped + * @param string $where_comparison data for the where clause + * @param array $transform_options array of options for transformation + * @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, + $transform_function, $default_function, $nowrap, $where_comparison, + $transform_options, $is_field_truncated + ) { + + $result = ''; + + if (isset($analyzed_sql[0]['select_expr']) + && is_array($analyzed_sql[0]['select_expr']) + ) { + + foreach ($analyzed_sql[0]['select_expr'] + as $select_expr_position => $select_expr + ) { + + $alias = $analyzed_sql[0]['select_expr'] + [$select_expr_position]['alias']; + + if (isset($alias) && strlen($alias)) { + $true_column = $analyzed_sql[0]['select_expr'] + [$select_expr_position]['column']; + + if ($alias == $meta->name) { + // this change in the parameter does not matter + // outside of the function + $meta->name = $true_column; + } // end if + + } // end if + } // end foreach + } // end if + + if (isset($map[$meta->name])) { + + // Field to display from the foreign table? + if (isset($map[$meta->name][2]) && strlen($map[$meta->name][2])) { + + $dispsql = 'SELECT ' . PMA_backquote($map[$meta->name][2]) + . ' FROM ' . PMA_backquote($map[$meta->name][3]) + . '.' . PMA_backquote($map[$meta->name][0]) + . ' WHERE ' . PMA_backquote($map[$meta->name][1]) + . $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 (isset($GLOBALS['printview']) && $GLOBALS['printview'] == '1') { + + $result .= ($transform_function != $default_function + ? $transform_function($data, $transform_options, $meta) + : $transform_function($data, array(), $meta)) + . ' [->' . $dispval . ']'; + + } else { + + if ($_SESSION['tmp_user_values']['relational_display'] == self::RELATIONAL_KEY) { + + // 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($data) . '"'; + } + + $_url_params = array( + 'db' => $map[$meta->name][3], + 'table' => $map[$meta->name][0], + 'pos' => '0', + 'sql_query' => 'SELECT * FROM ' + . PMA_backquote($map[$meta->name][3]) . '.' + . PMA_backquote($map[$meta->name][0]) + . ' WHERE ' . PMA_backquote($map[$meta->name][1]) + . $where_comparison, + ); + + $result .= ''; + + if ($transform_function != $default_function) { + // always apply a transformation on the real data, + // not on the display field + $result .= $transform_function($data, $transform_options, $meta); + } else { + + if ($_SESSION['tmp_user_values']['relational_display'] == self::RELATIONAL_DISPLAY_COLUMN) { + // user chose "relational display field" in the + // display options, so show display field in the cell + $result .= $transform_function($dispval, array(), $meta); + } else { + // otherwise display data in the cell + $result .= $transform_function($data, array(), $meta); + } + + } + $result .= ''; + } + + } else { + $result .= ($transform_function != $default_function) + ? $transform_function($data, $transform_options, $meta) + : $transform_function($data, array(), $meta); + } + + // create hidden field if results from structure table + if (isset($_GET['browse_distinct']) && ($_GET['browse_distinct'] == 1)) { + + $where_comparison = " = '" . $data . "'"; + + $_url_params_for_show_data_row = array( + 'db' => $this->_db, + 'table' => $meta->orgtable, + 'pos' => '0', + 'sql_query' => 'SELECT * FROM ' + . PMA_backquote($this->_db) . '.' + . PMA_backquote($meta->orgtable) + . ' WHERE ' + . PMA_backquote($meta->orgname) + . $where_comparison, + ); + + $result .= ''; + + } + + $result .= '' . "\n"; + + return $result; + + } // end of the '_getRowData()' function + + + /** + * Prepares a checkbox for multi-row submits + * + * @param string $del_url delete url + * @param array $is_display array with explicit indexes for all + * the display elements + * @param string $row_no the row number + * @param string $where_clause_html url encoded where clause + * @param array $condition_array array of conditions in the where clause + * @param string $del_query delete query + * @param string $id_suffix suffix for the id + * @param string $class css classes for the td element + * + * @return string the generated HTML + * + * @access private + * + * @see _getTableBody(), _getCheckboxAndLinks() + */ + private function _getCheckboxForMultiRowSubmissions( + $del_url, $is_display, $row_no, $where_clause_html, $condition_array, + $del_query, $id_suffix, $class + ) { + + $ret = ''; + + if (! empty($del_url) && $is_display['del_lnk'] != self::KILL_PROCESS) { + + $ret .= '' + . '' + . ' '; + } + + return $ret; + + } // end of the '_getCheckboxForMultiRowSubmissions()' function + + + /** + * Prepares an Edit link + * + * @param string $edit_url edit url + * @param string $class css classes for td element + * @param string $edit_str text for the edit link + * @param string $where_clause where clause + * @param string $where_clause_html url encoded where clause + * + * @return string the generated HTML + * + * @access private + * + * @see _getTableBody(), _getCheckboxAndLinks() + */ + private function _getEditLink( + $edit_url, $class, $edit_str, $where_clause, $where_clause_html + ) { + + $ret = ''; + if (! empty($edit_url)) { + + $ret .= '' + . PMA_linkOrButton($edit_url, $edit_str, array(), false); + /* + * Where clause for selecting this row uniquely is provided as + * a hidden input. Used by jQuery scripts for handling grid editing + */ + if (! empty($where_clause)) { + $ret .= ''; + } + $ret .= ''; + } + + return $ret; + + } // end of the '_getEditLink()' function + + + /** + * Prepares an Copy link + * + * @param string $copy_url copy url + * @param string $copy_str text for the copy link + * @param string $where_clause where clause + * @param string $where_clause_html url encoded where clause + * @param string $class css classes for the td element + * + * @return string the generated HTML + * + * @access private + * + * @see _getTableBody(), _getCheckboxAndLinks() + */ + private function _getCopyLink( + $copy_url, $copy_str, $where_clause, $where_clause_html, $class + ) { + + $ret = ''; + if (! empty($copy_url)) { + + $ret .= '' + . PMA_linkOrButton($copy_url, $copy_str, array(), false); + + /* + * Where clause for selecting this row uniquely is provided as + * a hidden input. Used by jQuery scripts for handling grid editing + */ + if (! empty($where_clause)) { + $ret .= ''; + } + $ret .= ''; + } + + return $ret; + + } // end of the '_getCopyLink()' function + + + /** + * Prepares a Delete link + * + * @param string $del_url delete url + * @param string $del_str text for the delete link + * @param string $js_conf text for the JS confirmation + * @param string $class css classes for the td element + * + * @return string the generated HTML + * + * @access private + * + * @see _getTableBody(), _getCheckboxAndLinks() + */ + private function _getDeleteLink($del_url, $del_str, $js_conf, $class) + { + + $ret = ''; + if (! empty($del_url)) { + + $ret .= '' + . PMA_linkOrButton($del_url, $del_str, $js_conf, false) + . ''; + } + + return $ret; + + } // end of the '_getDeleteLink()' function + + + /** + * Prepare checkbox and links at some position (left or right) + * (only called for horizontal mode) + * + * @param string $position the position of the checkbox and links + * @param string $del_url delete url + * @param array $is_display array with explicit indexes for all the + * display elements + * @param string $row_no row number + * @param string $where_clause where clause + * @param string $where_clause_html url encoded where clause + * @param array $condition_array array of conditions in the where clause + * @param string $del_query delete query + * @param string $id_suffix suffix for the id + * @param string $edit_url edit url + * @param string $copy_url copy url + * @param string $class css classes for the td elements + * @param string $edit_str text for the edit link + * @param string $copy_str text for the copy link + * @param string $del_str text for the delete link + * @param string $js_conf text for the JS confirmation + * + * @return string the generated HTML + * + * @access private + * + * @see _getPlacedLinks() + */ + private function _getCheckboxAndLinks( + $position, $del_url, $is_display, $row_no, $where_clause, + $where_clause_html, $condition_array, $del_query, $id_suffix, + $edit_url, $copy_url, $class, $edit_str, $copy_str, $del_str, $js_conf + ) { + + $ret = ''; + + if ($position == self::POSITION_LEFT) { + + $ret .= $this->_getCheckboxForMultiRowSubmissions( + $del_url, $is_display, $row_no, $where_clause_html, $condition_array, + $del_query, $id_suffix = '_left', '', '', '' + ); + + $ret .= $this->_getEditLink( + $edit_url, $class, $edit_str, $where_clause, $where_clause_html, '' + ); + + $ret .= $this->_getCopyLink( + $copy_url, $copy_str, $where_clause, $where_clause_html, '' + ); + + $ret .= $this->_getDeleteLink($del_url, $del_str, $js_conf, '', ''); + + } elseif ($position == self::POSITION_RIGHT) { + + $ret .= $this->_getDeleteLink($del_url, $del_str, $js_conf, '', ''); + + $ret .= $this->_getCopyLink( + $copy_url, $copy_str, $where_clause, $where_clause_html, '' + ); + + $ret .= $this->_getEditLink( + $edit_url, $class, $edit_str, $where_clause, $where_clause_html, '' + ); + + $ret .= $this->_getCheckboxForMultiRowSubmissions( + $del_url, $is_display, $row_no, $where_clause_html, $condition_array, + $del_query, $id_suffix = '_right', '', '', '' + ); + + } else { // $position == self::POSITION_NONE + + $ret .= $this->_getCheckboxForMultiRowSubmissions( + $del_url, $is_display, $row_no, $where_clause_html, $condition_array, + $del_query, $id_suffix = '_left', '', '', '' + ); + } + + return $ret; + + } // end of the '_getCheckboxAndLinks()' function + +} +?> diff --git a/libraries/Error_Handler.class.php b/libraries/Error_Handler.class.php index d623c321ca..d2e4fefa1b 100644 --- a/libraries/Error_Handler.class.php +++ b/libraries/Error_Handler.class.php @@ -288,7 +288,8 @@ class PMA_Error_Handler } else { ob_start(); var_dump($error); - $retval .= ob_end_clean(); + $retval .= ob_get_contents(); + ob_end_clean(); } } } else { diff --git a/libraries/Footer.class.php b/libraries/Footer.class.php index d231e134cc..7ba4069615 100644 --- a/libraries/Footer.class.php +++ b/libraries/Footer.class.php @@ -172,7 +172,8 @@ class PMA_Footer ob_start(); print_r($_SESSION['debug']); - $retval .= ob_end_clean(); + $retval .= ob_get_contents(); + ob_end_clean(); $retval .= ''; $retval .= ''; @@ -322,7 +323,8 @@ class PMA_Footer if (file_exists(CUSTOM_FOOTER_FILE)) { ob_start(); include CUSTOM_FOOTER_FILE; - $retval .= ob_end_clean(); + $retval .= ob_get_contents(); + ob_end_clean(); } } else if (! $this->_isAjax) { $retval .= ""; diff --git a/libraries/Header.class.php b/libraries/Header.class.php index eaabde56c8..ddad908901 100644 --- a/libraries/Header.class.php +++ b/libraries/Header.class.php @@ -297,7 +297,8 @@ class PMA_Header if (file_exists(CUSTOM_HEADER_FILE)) { ob_start(); include CUSTOM_HEADER_FILE; - $retval .= ob_end_clean(); + $retval .= ob_get_contents(); + ob_end_clean(); } // offer to load user preferences from localStorage if ($this->_userprefsOfferImport) { diff --git a/libraries/common.lib.php b/libraries/common.lib.php index edade08500..7d363f1cbe 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -25,6 +25,7 @@ function PMA_detectPow() } } + /** * Exponential expression / raise number into power * @@ -38,7 +39,7 @@ function PMA_pow($base, $exp, $use_function = false) { static $pow_function = null; - if (null == $pow_function) { + if ($pow_function == null) { $pow_function = PMA_detectPow(); } @@ -46,9 +47,10 @@ function PMA_pow($base, $exp, $use_function = false) $use_function = $pow_function; } - if ($exp < 0 && 'pow' != $use_function) { + if (($exp < 0) && ($use_function != 'pow')) { return false; } + switch ($use_function) { case 'bcpow' : // bcscale() needed for testing PMA_pow() with base values < 1 @@ -70,6 +72,7 @@ function PMA_pow($base, $exp, $use_function = false) return $pow; } + /** * Returns an HTML IMG tag for a particular icon from a theme, * which may be an actual file or an icon from a sprite. @@ -88,7 +91,7 @@ function PMA_getIcon($icon, $alternate = '', $force_text = false) $include_icon = ($GLOBALS['cfg']['PropertiesIconic'] !== false); // $cfg['PropertiesIconic'] is false or both // OR we have no $include_icon - $include_text = ($force_text || true !== $GLOBALS['cfg']['PropertiesIconic']); + $include_text = ($force_text || ($GLOBALS['cfg']['PropertiesIconic'] !== true)); // Always use a span (we rely on this in js/sql.js) $button = ''; @@ -106,6 +109,7 @@ function PMA_getIcon($icon, $alternate = '', $force_text = false) return $button; } + /** * Returns an HTML IMG tag for a particular image from a theme, * which may be an actual file or an icon from a sprite @@ -135,6 +139,7 @@ function PMA_getImage($image, $alternate = '', $attributes = array()) $sprites = array(); } } + // Check if we have the requested image as a sprite // and set $url accordingly $class = str_replace(array('.gif','.png'), '', $image); @@ -144,6 +149,7 @@ function PMA_getImage($image, $alternate = '', $attributes = array()) } else { $url = $GLOBALS['pmaThemeImage'] . $image; } + // set class attribute if ($is_sprite) { if (isset($attributes['class'])) { @@ -152,6 +158,7 @@ function PMA_getImage($image, $alternate = '', $attributes = array()) $attributes['class'] = "icon ic_$class"; } } + // set all other attributes $attr_str = ''; foreach ($attributes as $key => $value) { @@ -159,18 +166,21 @@ function PMA_getImage($image, $alternate = '', $attributes = array()) $attr_str .= " $key=\"$value\""; } } + // override the alt attribute if (isset($attributes['alt'])) { $alt = $attributes['alt']; } else { $alt = $alternate; } + // override the title attribute if (isset($attributes['title'])) { $title = $attributes['title']; } else { $title = $alternate; } + // generate the IMG tag $template = '%s'; $retval = sprintf($template, $url, $title, $alt, $attr_str); @@ -178,6 +188,7 @@ function PMA_getImage($image, $alternate = '', $attributes = array()) return $retval; } + /** * Returns the formatted maximum size for an upload * @@ -195,6 +206,7 @@ function PMA_getFormattedMaximumUploadSize($max_upload_size) return '(' . sprintf(__('Max: %s%s'), $max_size, $max_unit) . ')'; } + /** * Generates a hidden field which should indicate to the browser * the maximum size for upload @@ -210,6 +222,7 @@ function PMA_generateHiddenMaxFileSize($max_size) return ''; } + /** * Add slashes before "'" and "\" characters so a value containing them can * be used in a sql comparison. @@ -226,9 +239,10 @@ function PMA_generateHiddenMaxFileSize($max_size) * * @access public */ -function PMA_sqlAddSlashes($a_string = '', $is_like = false, $crlf = false, - $php_code = false +function PMA_sqlAddSlashes( + $a_string = '', $is_like = false, $crlf = false, $php_code = false ) { + if ($is_like) { $a_string = str_replace('\\', '\\\\\\\\', $a_string); } else { @@ -268,6 +282,7 @@ function PMA_escapeMysqlWildcards($name) return strtr($name, array('_' => '\\_', '%' => '\\%')); } // end of the 'PMA_escapeMysqlWildcards()' function + /** * removes slashes before "_" and "%" characters * Note: This function does not unescape backslashes! @@ -283,6 +298,7 @@ function PMA_unescapeMysqlWildcards($name) return strtr($name, array('\\_' => '_', '\\%' => '%')); } // end of the 'PMA_unescapeMysqlWildcards()' function + /** * removes quotes (',",`) from a quoted string * @@ -297,7 +313,7 @@ function PMA_unQuote($quoted_string, $quote = null) { $quotes = array(); - if (null === $quote) { + if ($quote === null) { $quotes[] = '`'; $quotes[] = '"'; $quotes[] = "'"; @@ -323,6 +339,7 @@ function PMA_unQuote($quoted_string, $quote = null) return $quoted_string; } + /** * format sql strings * @@ -352,7 +369,7 @@ function PMA_formatSql($parsed_sql, $unparsed_sql = '') // We don't so just return the input directly // This is intended to be used for when the SQL Parser is turned off $formatted_sql = "
\n";
-        if ($cfg['SQP']['fmtType'] == 'none' && $unparsed_sql != '') {
+        if (($cfg['SQP']['fmtType'] == 'none') && ($unparsed_sql != '')) {
             $formatted_sql .= $unparsed_sql;
         } else {
             $formatted_sql .= $parsed_sql;
@@ -404,6 +421,7 @@ function PMA_showDocLink($link, $target = 'documentation')
         . '';
 } // end of the 'PMA_showDocLink()' function
 
+
 /**
  * Displays a link to the official MySQL documentation
  *
@@ -417,12 +435,13 @@ function PMA_showDocLink($link, $target = 'documentation')
  *
  * @access  public
  */
-function PMA_showMySQLDocu($chapter, $link, $big_icon = false, $anchor = '',
-    $just_open = false
+function PMA_showMySQLDocu(
+    $chapter, $link, $big_icon = false, $anchor = '', $just_open = false
 ) {
+    
     global $cfg;
 
-    if ($cfg['MySQLManualType'] == 'none' || empty($cfg['MySQLManualBase'])) {
+    if (($cfg['MySQLManualType'] == 'none') || empty($cfg['MySQLManualBase'])) {
         return '';
     }
 
@@ -494,6 +513,7 @@ function PMA_showMySQLDocu($chapter, $link, $big_icon = false, $anchor = '',
     } else {
         return PMA_showDocLink(PMA_linkURL($url), 'mysql_doc');
     }
+    
 } // end of the 'PMA_showMySQLDocu()' function
 
 
@@ -511,6 +531,7 @@ function PMA_showDocu($anchor)
     return PMA_showDocLink('Documentation.html#' . $anchor);
 } // end of the 'PMA_showDocu()' function
 
+
 /**
  * Displays a link to the PHP documentation
  *
@@ -527,6 +548,7 @@ function PMA_showPHPDocu($target)
     return PMA_showDocLink($url);
 } // end of the 'PMA_showPHPDocu()' function
 
+
 /**
  * Returns HTML code for a tooltip
  *
@@ -538,15 +560,13 @@ function PMA_showPHPDocu($target)
  */
 function PMA_showHint($message)
 {
-    $retval  = '';
-    $retval .= PMA_getImage('b_help.png');
-    $retval .= '';
-    $retval .= $message;
-    $retval .= '';
-    $retval .= '';
-    return $retval;
+    return ''
+        . PMA_getImage('b_help.png')
+        . '' . $message . ''
+        . '';
 }
 
+
 /**
  * Displays a MySQL error message in the right frame.
  *
@@ -567,6 +587,7 @@ function PMA_mysqlDie(
     $error_message = '', $the_query = '',
     $is_modify_link = true, $back_url = '', $exit = true
 ) {
+    
     global $table, $db;
 
     $error_msg = '';
@@ -581,7 +602,7 @@ function PMA_mysqlDie(
     // --- Added to solve bug #641765
     if (! function_exists('PMA_SQP_isError') || PMA_SQP_isError()) {
         $formatted_sql = htmlspecialchars($the_query);
-    } elseif (empty($the_query) || trim($the_query) == '') {
+    } elseif (empty($the_query) || (trim($the_query) == '')) {
         $formatted_sql = '';
     } else {
         if (strlen($the_query) > $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) {
@@ -708,6 +729,7 @@ function PMA_mysqlDie(
     }
 } // end of the 'PMA_mysqlDie()' function
 
+
 /**
  * returns array with tables of given db with extended information and grouped
  *
@@ -723,7 +745,7 @@ function PMA_getTableList($db, $tables = null, $limit_offset = 0,
 ) {
     $sep = $GLOBALS['cfg']['LeftFrameTableSeparator'];
 
-    if (null === $tables) {
+    if ($tables === null) {
         $tables = PMA_DBI_get_tables_full(
             $db, false, false, null, $limit_offset, $limit_count
         );
@@ -747,7 +769,7 @@ function PMA_getTableList($db, $tables = null, $limit_offset = 0,
 
     foreach ($tables as $table_name => $table) {
         // check for correct row count
-        if (null === $table['Rows']) {
+        if ($table['Rows'] === null) {
             // Do not check exact row count here,
             // if row count is invalid possibly the table is defect
             // and this would break left frame;
@@ -774,24 +796,30 @@ function PMA_getTableList($db, $tables = null, $limit_offset = 0,
         if ($GLOBALS['cfg']['LeftFrameDBTree']
             && $sep && strstr($table_name, $sep)
         ) {
+            
             $parts = explode($sep, $table_name);
 
             $group =& $table_groups;
             $i = 0;
             $group_name_full = '';
             $parts_cnt = count($parts) - 1;
-            while ($i < $parts_cnt
-                && $i < $GLOBALS['cfg']['LeftFrameTableLevel']
+            
+            while (($i < $parts_cnt)
+                && ($i < $GLOBALS['cfg']['LeftFrameTableLevel'])
             ) {
+                
                 $group_name = $parts[$i] . $sep;
                 $group_name_full .= $group_name;
 
                 if (! isset($group[$group_name])) {
+                    
                     $group[$group_name] = array();
                     $group[$group_name]['is' . $sep . 'group'] = true;
                     $group[$group_name]['tab' . $sep . 'count'] = 1;
                     $group[$group_name]['tab' . $sep . 'group'] = $group_name_full;
+                    
                 } elseif (! isset($group[$group_name]['is' . $sep . 'group'])) {
+                    
                     $table = $group[$group_name];
                     $group[$group_name] = array();
                     $group[$group_name][$group_name] = $table;
@@ -799,12 +827,15 @@ function PMA_getTableList($db, $tables = null, $limit_offset = 0,
                     $group[$group_name]['is' . $sep . 'group'] = true;
                     $group[$group_name]['tab' . $sep . 'count'] = 1;
                     $group[$group_name]['tab' . $sep . 'group'] = $group_name_full;
+                    
                 } else {
                     $group[$group_name]['tab' . $sep . 'count']++;
                 }
+                
                 $group =& $group[$group_name];
                 $i++;
             }
+            
         } else {
             if (! isset($table_groups[$table_name])) {
                 $table_groups[$table_name] = array();
@@ -831,6 +862,7 @@ function PMA_getTableList($db, $tables = null, $limit_offset = 0,
     return $table_groups;
 }
 
+
 /* ----------------------- Set of misc functions ----------------------- */
 
 
@@ -855,6 +887,7 @@ function PMA_getTableList($db, $tables = null, $limit_offset = 0,
  */
 function PMA_backquote($a_name, $do_it = true)
 {
+    
     if (is_array($a_name)) {
         foreach ($a_name as &$data) {
             $data = PMA_backquote($data, $do_it);
@@ -876,8 +909,10 @@ function PMA_backquote($a_name, $do_it = true)
     } else {
         return $a_name;
     }
+    
 } // end of the 'PMA_backquote()' function
 
+
 /**
  * Defines the  value depending on the user OS.
  *
@@ -899,6 +934,7 @@ function PMA_whichCrlf()
     return $the_crlf;
 } // end of the 'PMA_whichCrlf()' function
 
+
 /**
  * Reloads navigation if needed.
  *
@@ -923,6 +959,7 @@ function PMA_getReloadNavigationScript($jsonly = false)
             '',
             '&'
         );
+        
         if (! $jsonly) {
             $retval .= '' . PHP_EOL;
         }
@@ -943,6 +981,7 @@ function PMA_getReloadNavigationScript($jsonly = false)
     return $retval;
 }
 
+
 /**
  * Prepare the message and the query
  * usually the message is the result of the query executed
@@ -957,11 +996,9 @@ function PMA_getReloadNavigationScript($jsonly = false)
  * @access  public
  */
 function PMA_getMessage(
-    $message,
-    $sql_query = null,
-    $type = 'notice',
-    $is_view = false
+    $message, $sql_query = null, $type = 'notice', $is_view = false
 ) {
+    
     global $cfg;
     $retval = '';
 
@@ -1294,8 +1331,7 @@ function PMA_getMessage(
         // in the tools div, only display the Inline link when not in ajax
         // mode because 1) it currently does not work and 2) we would
         // have two similar mechanisms on the page for the same goal
-        if ($is_select
-            || $GLOBALS['is_ajax_request'] === false
+        if ($is_select || ($GLOBALS['is_ajax_request'] === false)
             && ! $query_too_big
         ) {
             // see in js/functions.js the jQuery code attached to id inline_edit
@@ -1314,6 +1350,7 @@ function PMA_getMessage(
             . $refresh_link . $validate_link;
         $retval .= '';
     }
+    
     $retval .= '';
     if ($GLOBALS['is_ajax_request'] === false) {
         $retval .= '
'; @@ -1323,6 +1360,7 @@ function PMA_getMessage( } // end of the 'PMA_getMessage()' function + /** * Verifies if current MySQL server supports profiling * @@ -1337,7 +1375,7 @@ function PMA_profilingSupported() // (avoid a trip to the server for MySQL before 5.0.37) // and do not set a constant as we might be switching servers if (defined('PMA_MYSQL_INT_VERSION') - && PMA_MYSQL_INT_VERSION >= 50037 + && (PMA_MYSQL_INT_VERSION >= 50037) && PMA_DBI_fetch_value("SHOW VARIABLES LIKE 'profiling'") ) { PMA_cacheSet('profiling_supported', true, true); @@ -1349,6 +1387,7 @@ function PMA_profilingSupported() return PMA_cacheGet('profiling_supported', true); } + /** * Returns HTML for the form with the Profiling checkbox * @@ -1367,9 +1406,11 @@ function PMA_getProfilingForm($sql_query) $retval .= PMA_generate_common_hidden_inputs( $GLOBALS['db'], $GLOBALS['table'] ); + $retval .= '' . "\n"; - $retval .= '' . "\n"; + . htmlspecialchars($sql_query) . '" />' . "\n" + . '' . "\n"; + $retval .= PMA_getCheckbox( 'profiling', __('Profiling'), isset($_SESSION['profiling']), true ); @@ -1379,6 +1420,7 @@ function PMA_getProfilingForm($sql_query) return $retval; } + /** * Formats $value to byte view * @@ -1411,14 +1453,14 @@ function PMA_formatByteDown($value, $limes = 6, $comma = 0) __('PiB'), /* l10n: shortcuts for Exabyte */ __('EiB') - ); + ); $dh = PMA_pow(10, $comma); $li = PMA_pow(10, $limes); $unit = $byteUnits[0]; for ($d = 6, $ex = 15; $d >= 1; $d--, $ex-=3) { - if (isset($byteUnits[$d]) && $value >= $li * PMA_pow(10, $ex)) { + if (isset($byteUnits[$d]) && ($value >= $li * PMA_pow(10, $ex))) { // use 1024.0 to avoid integer overflow on 64-bit machines $value = round($value / (PMA_pow(1024, $d) / $dh)) /$dh; $unit = $byteUnits[$d]; @@ -1439,6 +1481,7 @@ function PMA_formatByteDown($value, $limes = 6, $comma = 0) return array(trim($return_value), $unit); } // end of the 'PMA_formatByteDown' function + /** * Changes thousands and decimal separators to locale specific values. * @@ -1455,11 +1498,12 @@ function PMA_localizeNumber($value) __(','), /* l10n: Decimal separator */ __('.'), - ), + ), $value ); } + /** * Formats $value to the given length and appends SI prefixes * with a $length of 0 no truncation occurs, number is only formated @@ -1490,6 +1534,7 @@ function PMA_formatNumber( $value, $digits_left = 3, $digits_right = 0, $only_down = false, $noTrailingZero = true ) { + if ($value == 0) { return '0'; } @@ -1498,7 +1543,7 @@ function PMA_formatNumber( //number_format is not multibyte safe, str_replace is safe if ($digits_left === 0) { $value = number_format($value, $digits_right); - if ($originalValue != 0 && floatval($value) == 0) { + if (($originalValue != 0) && (floatval($value) == 0)) { $value = ' <' . (1 / PMA_pow(10, $digits_right)); } @@ -1575,6 +1620,7 @@ function PMA_formatNumber( return $sign . $value . ' ' . $unit; } // end of the 'PMA_formatNumber' function + /** * Returns the number of bytes when a formatted size is given * @@ -1596,6 +1642,7 @@ function PMA_extractValueFromFormattedSize($formatted_size) return $return_value; }// end of the 'PMA_extractValueFromFormattedSize' function + /** * Writes localised date * @@ -1709,7 +1756,7 @@ function PMA_getHtmlTab($tab, $url_params = array()) ) { $tab['class'] = 'active'; } elseif (is_null($tab['active']) && empty($GLOBALS['active_page']) - && basename($GLOBALS['PMA_PHP_SELF']) == $tab['link'] + && (basename($GLOBALS['PMA_PHP_SELF']) == $tab['link']) && empty($tab['warning'])) { $tab['class'] = 'active'; } @@ -1777,6 +1824,7 @@ function PMA_getHtmlTab($tab, $url_params = array()) return $out; } // end of the 'PMA_getHtmlTab()' function + /** * returns html-code for a tab navigation * @@ -1820,9 +1868,11 @@ function PMA_getHtmlTabs($tabs, $url_params, $menu_id = 'topmenu') * * @return string the results to be echoed or saved in an array */ -function PMA_linkOrButton($url, $message, $tag_params = array(), +function PMA_linkOrButton( + $url, $message, $tag_params = array(), $new_form = true, $strip_img = false, $target = '' ) { + $url_length = strlen($url); // with this we should be able to catch case of image upload // into a (MEDIUM) BLOB; not worth generating even a form for these @@ -1856,14 +1906,14 @@ function PMA_linkOrButton($url, $message, $tag_params = array(), $displayed_message = ''; // Add text if not already added if (stristr($message, ''; + . htmlspecialchars( + preg_replace('/^.*\salt="([^"]*)".*$/si', '\1', $message) + ) + . ''; } // Suhosin: Check that each query parameter is not above maximum @@ -1881,12 +1931,15 @@ function PMA_linkOrButton($url, $message, $tag_params = array(), } } - if ($url_length <= $GLOBALS['cfg']['LinkLengthLimit'] && $in_suhosin_limits) { + if (($url_length <= $GLOBALS['cfg']['LinkLengthLimit']) && $in_suhosin_limits) { + // no whitespace within an else Safari will make it part of the link $ret = "\n" . '' . $message . $displayed_message . '' . "\n"; + } else { + // no spaces (linebreaks) at all // or after the hidden fields // IE will display them all @@ -1918,6 +1971,7 @@ function PMA_linkOrButton($url, $message, $tag_params = array(), $subname_close = ']'; $submit_link = '#usesubform[' . $GLOBALS['subform_counter'] . ']=1'; } + foreach ($query_parts as $query_pair) { list($eachvar, $eachval) = explode('=', $query_pair); $ret .= '' - . $message . ' ' . $displayed_message . '' . "\n"; + . implode(' ', $tag_params_strings) . '>' + . $message . ' ' . $displayed_message . '' . "\n"; if ($new_form) { $ret .= ''; @@ -1955,13 +2009,16 @@ function PMA_splitURLQuery($url) $url = str_replace(htmlentities('&'), $separator, $url); $url = str_replace('&', $separator, $url); } + $url = str_replace(htmlentities($separator), $separator, $url); // end decode $url_parts = parse_url($url); + return explode($separator, $url_parts['query']); } + /** * Returns a given timespan value in a readable format. * @@ -1975,20 +2032,24 @@ function PMA_timespanFormat($seconds) if ($days > 0) { $seconds -= $days * 86400; } + $hours = floor($seconds / 3600); if ($days > 0 || $hours > 0) { $seconds -= $hours * 3600; } + $minutes = floor($seconds / 60); if ($days > 0 || $hours > 0 || $minutes > 0) { $seconds -= $minutes * 60; } + return sprintf( __('%s days, %s hours, %s minutes and %s seconds'), (string)$days, (string)$hours, (string)$minutes, (string)$seconds ); } + /** * Takes a string and outputs each character on a line for itself. Used * mainly for horizontalflipped display mode. @@ -2036,6 +2097,7 @@ function PMA_flipstring($string, $Separator = "
\n") return $format_string; } + /** * Function added to avoid path disclosures. * Called by each script that needs parameters, it displays @@ -2067,7 +2129,7 @@ function PMA_checkParameters($params, $request = true) $error_message = ''; foreach ($params as $param) { - if ($request && $param != 'db' && $param != 'table') { + if ($request && ($param != 'db') && ($param != 'table')) { $checked_special = true; } @@ -2085,6 +2147,7 @@ function PMA_checkParameters($params, $request = true) } } // end function + /** * Function to generate unique condition for specified row. * @@ -2101,6 +2164,7 @@ function PMA_checkParameters($params, $request = true) function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, $force_unique = false ) { + $primary_key = ''; $unique_key = ''; $nonprimary_condition = ''; @@ -2111,6 +2175,7 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, $condition_array = array(); for ($i = 0; $i < $fields_cnt; ++$i) { + $condition = ''; $con_key = ''; $con_val = ''; @@ -2149,7 +2214,7 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, // (The isView() verification should not be costly in most cases // because there is some caching in the function). if (isset($meta->orgtable) - && $meta->table != $meta->orgtable + && ($meta->table != $meta->orgtable) && ! PMA_Table::isView($GLOBALS['db'], $meta->table) ) { $meta->table = $meta->orgtable; @@ -2172,17 +2237,22 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, if (! isset($row[$i]) || is_null($row[$i])) { $con_val = 'IS NULL'; } else { + // timestamp is numeric on some MySQL 4.1 // for real we use CONCAT above and it should compare to string if ($meta->numeric - && $meta->type != 'timestamp' - && $meta->type != 'real' + && ($meta->type != 'timestamp') + && ($meta->type != 'real') ) { + $con_val = '= ' . $row[$i]; - } elseif (($meta->type == 'blob' || $meta->type == 'string') + + } elseif ((($meta->type == 'blob') || ($meta->type == 'string')) // hexify only if this is a true not empty BLOB or a BINARY && stristr($field_flags, 'BINARY') - && ! empty($row[$i])) { + && ! empty($row[$i]) + ) { + // do not waste memory building a too big condition if (strlen($row[$i]) < 1000) { // use a CAST if possible, to avoid problems @@ -2192,31 +2262,40 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, // this blob won't be part of the final condition $con_val = null; } + } elseif (in_array($meta->type, PMA_getGISDatatypes()) && ! empty($row[$i]) ) { + // do not build a too big condition if (strlen($row[$i]) < 5000) { $condition .= '=0x' . bin2hex($row[$i]) . ' AND'; } else { $condition = ''; } + } elseif ($meta->type == 'bit') { + $con_val = "= b'" . PMA_printableBitValue($row[$i], $meta->length) . "'"; + } else { $con_val = '= \'' . PMA_sqlAddSlashes($row[$i], false, true) . '\''; - } + } } + if ($con_val != null) { + $condition .= $con_val . ' AND'; - if ($meta->primary_key > 0) { + + if ($meta->primary_key > 0) { $primary_key .= $condition; - $primary_key_array[$con_key] = $con_val; - } elseif ($meta->unique_key > 0) { + $primary_key_array[$con_key] = $con_val; + } elseif ($meta->unique_key > 0) { $unique_key .= $condition; - $unique_key_array[$con_key] = $con_val; + $unique_key_array[$con_key] = $con_val; } + $nonprimary_condition .= $condition; $nonprimary_condition_array[$con_key] = $con_val; } @@ -2226,22 +2305,26 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, // prefer primary or unique keys for condition, // but use conjunction of all values if no primary key $clause_is_unique = true; - if ($primary_key) { + + if ($primary_key) { $preferred_condition = $primary_key; $condition_array = $primary_key_array; - } elseif ($unique_key) { + + } elseif ($unique_key) { $preferred_condition = $unique_key; $condition_array = $unique_key_array; - } elseif (! $force_unique) { + + } elseif (! $force_unique) { $preferred_condition = $nonprimary_condition; $condition_array = $nonprimary_condition_array; - $clause_is_unique = false; + $clause_is_unique = false; } $where_clause = trim(preg_replace('|\s?AND$|', '', $preferred_condition)); return(array($where_clause, $clause_is_unique, $condition_array)); } // end function + /** * Generate a button or image tag * @@ -2256,13 +2339,15 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, * * @access public */ -function PMA_getButtonOrImage($button_name, $button_class, $image_name, $text, - $image, $value = '' +function PMA_getButtonOrImage( + $button_name, $button_class, $image_name, $text, $image, $value = '' ) { + if ($value == '') { $value = $text; } - if (false === $GLOBALS['cfg']['PropertiesIconic']) { + + if ($GLOBALS['cfg']['PropertiesIconic'] === false) { return ' ' . "\n"; @@ -2287,6 +2372,7 @@ function PMA_getButtonOrImage($button_name, $button_class, $image_name, $text, } } // end function + /** * Generate a pagination selector for browsing resultsets * @@ -2307,10 +2393,11 @@ function PMA_getButtonOrImage($button_name, $button_class, $image_name, $text, * * @access public */ -function PMA_pageselector($rows, $pageNow = 1, $nbTotalPage = 1, - $showAll = 200, $sliceStart = 5, $sliceEnd = 5, $percent = 20, - $range = 10, $prompt = '' +function PMA_pageselector( + $rows, $pageNow = 1, $nbTotalPage = 1, $showAll = 200, $sliceStart = 5, + $sliceEnd = 5, $percent = 20, $range = 10, $prompt = '' ) { + $increment = floor($nbTotalPage / $percent); $pageNowMinusRange = ($pageNow - $range); $pageNowPlusRange = ($pageNow + $range); @@ -2319,10 +2406,13 @@ function PMA_pageselector($rows, $pageNow = 1, $nbTotalPage = 1, if ($GLOBALS['cfg']['AjaxEnable']) { $gotopage .= ' class="ajax"'; } + $gotopage .= ' name="pos" >' . "\n"; if ($nbTotalPage < $showAll) { $pages = range(1, $nbTotalPage); + } else { + $pages = array(); // Always show first X pages @@ -2344,6 +2434,7 @@ function PMA_pageselector($rows, $pageNow = 1, $nbTotalPage = 1, $i = $sliceStart; $x = $nbTotalPage - $sliceEnd; $met_boundary = false; + while ($i <= $x) { if ($i >= $pageNowMinusRange && $i <= $pageNowPlusRange) { // If our pageselector comes near the current page, we use 1 @@ -2424,7 +2515,7 @@ function PMA_pageselector($rows, $pageNow = 1, $nbTotalPage = 1, /** - * Generate navigation for a list + * Prepare navigation for a list * * @param int $count number of elements in the list * @param int $pos current position in the list @@ -2433,24 +2524,31 @@ function PMA_pageselector($rows, $pageNow = 1, $nbTotalPage = 1, * @param string $frame target frame * @param int $max_count maximum number of elements to display from the list * - * @return void + * @return string $list_navigator_html the html content * * @access public * * @todo use $pos from $_url_params */ -function PMA_listNavigator($count, $pos, $_url_params, $script, $frame, $max_count) -{ +function PMA_getListNavigator( + $count, $pos, $_url_params, $script, $frame, $max_count +) { + + $list_navigator_html = ''; if ($max_count < $count) { - echo 'frame_navigation' == $frame + + $list_navigator_html .= ($frame == 'frame_navigation') ? '' . "\n"; + $list_navigator_html .= '' . "\n"; } } + + return $list_navigator_html; + } + /** * replaces %u in given path with current user name * @@ -2538,6 +2648,7 @@ function PMA_userDir($dir) return str_replace('%u', $GLOBALS['cfg']['Server']['user'], $dir); } + /** * returns html code for db link to default db page * @@ -2565,8 +2676,9 @@ function PMA_getDbLink($database = null) . '">' . htmlspecialchars($database) . ''; } + /** - * Displays a lightbulb hint explaining a known external bug + * Prepare a lightbulb hint explaining a known external bug * that affects a functionality * * @param string $functionality localized message explaining the func. @@ -2576,19 +2688,22 @@ function PMA_getDbLink($database = null) * * @return void */ -function PMA_externalBug($functionality, $component, $minimum_version, $bugref) -{ - if ($component == 'mysql' && PMA_MYSQL_INT_VERSION < $minimum_version) { - echo PMA_showHint( +function PMA_getExternalBug($functionality, $component, $minimum_version, $bugref) +{ + $ext_but_html = ''; + if (($component == 'mysql') && (PMA_MYSQL_INT_VERSION < $minimum_version)) { + $ext_but_html .= PMA_showHint( sprintf( __('The %s functionality is affected by a known bug, see %s'), $functionality, PMA_linkURL('http://bugs.mysql.com/') . $bugref ) ); - } + } + return $ext_but_html; } + /** * Returns a HTML checkbox * @@ -2601,14 +2716,13 @@ function PMA_externalBug($functionality, $component, $minimum_version, $bugref) */ function PMA_getCheckbox($html_field_name, $label, $checked, $onclick) { - return ''; - } + /** * Generates a set of radio HTML fields * @@ -2628,25 +2742,31 @@ function PMA_getRadioFields($html_field_name, $choices, $checked_choice = '', $radio_html = ''; foreach ($choices as $choice_value => $choice_label) { + if (! empty($class)) { $radio_html .= '
'; } + $html_field_id = $html_field_name . '_' . $choice_value; $radio_html .= '' . ($escape_label ? htmlspecialchars($choice_label) : $choice_label) . ''; + if ($line_break) { $radio_html .= '
'; } + if (! empty($class)) { $radio_html .= '
'; } @@ -2657,6 +2777,7 @@ function PMA_getRadioFields($html_field_name, $choices, $checked_choice = '', } + /** * Generates and returns an HTML dropdown * @@ -2675,17 +2796,21 @@ function PMA_getDropdown($select_name, $choices, $active_choice, $id) { $result = ''; + return $result; } + /** * Generates a slider effect (jQjuery) * Takes care of generating the initial
and the link @@ -2720,6 +2845,7 @@ function PMA_getDivForSliderEffect($id, $message) } + /** * Creates an AJAX sliding toggle button * (or and equivalent form when AJAX is disabled) @@ -2738,6 +2864,7 @@ function PMA_toggleButton($action, $select_name, $options, $callback) $link = "$action&" . urlencode($select_name) . "="; $link_on = $link . urlencode($options[1]['value']); $link_off = $link . urlencode($options[0]['value']); + if ($options[1]['selected'] == true) { $state = 'on'; } else if ($options[0]['selected'] == true) { @@ -2745,45 +2872,46 @@ function PMA_toggleButton($action, $select_name, $options, $callback) } else { $state = 'on'; } + // Generate output - $retval = "\n"; - $retval .= "
\n"; - $retval .= "
\n"; - $retval .= "
\n"; - $retval .= " \n"; - $retval .= "
 
\n"; - $retval .= " \n"; - $retval .= " $link_off\n"; - $retval .= "
"; - $retval .= str_replace(' ', ' ', htmlspecialchars($options[0]['label'])); - $retval .= "\n" . "
\n"; - $retval .= " \n"; - $retval .= " \n"; - $retval .= " \n"; - $retval .= " "; - $retval .= htmlspecialchars($callback) . "\n"; - $retval .= " "; - $retval .= htmlspecialchars($GLOBALS['text_dir']) . "\n"; - $retval .= "
\n"; - $retval .= "
\n"; - $retval .= "
\n"; - $retval .= ""; - - return $retval; + return "\n" + . "
\n" + . "
\n" + . "
\n" + . " \n" + . " \n" + . " \n" + . " \n" + . " \n" + . " \n" + . " \n" + . " \n" + . "
\n" + . " $link_on\n" + . "
" + . str_replace(' ', ' ', htmlspecialchars($options[1]['label'])) + . "\n" . "
\n" + . "
 
\n" + . " $link_off\n" + . "
" + . str_replace(' ', ' ', htmlspecialchars($options[0]['label'])) + . "\n" . "
\n" + . "
\n" + . " " + . htmlspecialchars($callback) . "\n" + . " " + . htmlspecialchars($GLOBALS['text_dir']) . "\n" + . "
\n" + . "
\n" + . "
\n" + . ""; + } // end PMA_toggleButton() + /** * Clears cache content which needs to be refreshed on user change. * @@ -2794,6 +2922,7 @@ function PMA_clearUserCache() PMA_cacheUnset('is_superuser', true); } + /** * Verifies if something is cached in the session * @@ -2810,6 +2939,7 @@ function PMA_cacheExists($var, $server = 0) return isset($_SESSION['cache']['server_' . $server][$var]); } + /** * Gets cached information from the session * @@ -2830,6 +2960,7 @@ function PMA_cacheGet($var, $server = 0) } } + /** * Caches information in the session * @@ -2847,6 +2978,7 @@ function PMA_cacheSet($var, $val = null, $server = 0) $_SESSION['cache']['server_' . $server][$var] = $val; } + /** * Removes cached information from the session * @@ -2857,12 +2989,13 @@ function PMA_cacheSet($var, $val = null, $server = 0) */ function PMA_cacheUnset($var, $server = 0) { - if (true === $server) { + if ($server === true) { $server = $GLOBALS['server']; } unset($_SESSION['cache']['server_' . $server][$var]); } + /** * Converts a bit value to printable format; * in MySQL a BIT field can be from 1 to 64 bits so we need this @@ -2883,6 +3016,7 @@ function PMA_printableBitValue($value, $length) return $printable; } + /** * Verifies whether the value contains a non-printable character * @@ -2895,6 +3029,7 @@ function PMA_containsNonPrintableAscii($value) return preg_match('@[^[:print:]]@', $value); } + /** * Converts a BIT type default value * for example, b'010' becomes 010 @@ -2908,6 +3043,7 @@ function PMA_convertBitDefaultValue($bit_default_value) return strtr($bit_default_value, array("b" => "", "'" => "")); } + /** * Extracts the various parts from a column spec * @@ -2935,6 +3071,7 @@ function PMA_extractColumnSpec($columnspec) } if ('enum' == $type || 'set' == $type) { + // Define our working vars $enum_set_values = array(); $working = ""; @@ -2943,11 +3080,13 @@ function PMA_extractColumnSpec($columnspec) // While there is another character to process while (isset($columnspec[$index])) { + // Grab the char to look at $char = $columnspec[$index]; // If it is a single quote, needs to be handled specially if ($char == "'") { + // If we are not currently in a string, begin one if (! $in_string) { $in_string = true; @@ -2973,6 +3112,7 @@ function PMA_extractColumnSpec($columnspec) $index++; } } + } elseif ('\\' == $char && isset($columnspec[$index + 1]) && "'" == $columnspec[$index + 1] @@ -2984,15 +3124,19 @@ function PMA_extractColumnSpec($columnspec) // Otherwise, add it to our working string like normal $working .= $char; } + // Increment character index $index++; } // end while + $printtype = $type . '(' . str_replace("','", "', '", $spec_in_brackets) . ')'; $binary = false; $unsigned = false; $zerofill = false; + } else { + $enum_set_values = array(); /* Create printable type name */ @@ -3010,6 +3154,7 @@ function PMA_extractColumnSpec($columnspec) } else { $binary = false; } + $printtype = preg_replace('@zerofill@', '', $printtype, -1, $zerofill_cnt); $zerofill = ($zerofill_cnt > 0); $printtype = preg_replace('@unsigned@', '', $printtype, -1, $unsigned_cnt); @@ -3060,6 +3205,7 @@ function PMA_extractColumnSpec($columnspec) ); } + /** * Verifies if this table's engine supports foreign keys * @@ -3070,13 +3216,14 @@ function PMA_extractColumnSpec($columnspec) function PMA_isForeignKeySupported($engine) { $engine = strtoupper($engine); - if ('INNODB' == $engine || 'PBXT' == $engine) { + if (($engine == 'INNODB') || ($engine == 'PBXT')) { return true; } else { return false; } } + /** * Replaces some characters by a displayable equivalent * @@ -3094,6 +3241,7 @@ function PMA_replaceBinaryContents($content) return $result; } + /** * Converts GIS data to Well Known Text format * @@ -3110,17 +3258,21 @@ function PMA_asWKT($data, $includeSRID = false) if ($includeSRID) { $wktsql .= ", SRID(x'" . $hex . "')"; } + $wktresult = PMA_DBI_try_query($wktsql, null, PMA_DBI_QUERY_STORE); $wktarr = PMA_DBI_fetch_row($wktresult, 0); $wktval = $wktarr[0]; + if ($includeSRID) { $srid = $wktarr[1]; $wktval = "'" . $wktval . "'," . $srid; } @PMA_DBI_free_result($wktresult); + return $wktval; } + /** * If the string starts with a \r\n pair (0x0d0a) add an extra \n * @@ -3138,6 +3290,7 @@ function PMA_duplicateFirstNewline($string) return $string; } + /** * Get the action word corresponding to a script name * in order to display it as a title in navigation panel @@ -3166,6 +3319,7 @@ function PMA_getTitleForTarget($target) return $mapping[$target]; } + /** * Formats user string, expanding @VARIABLES@, accepting strftime format * string. @@ -3183,11 +3337,13 @@ function PMA_expandUserString($string, $escape = null, $updates = array()) $vars['http_host'] = PMA_getenv('HTTP_HOST'); $vars['server_name'] = $GLOBALS['cfg']['Server']['host']; $vars['server_verbose'] = $GLOBALS['cfg']['Server']['verbose']; + if (empty($GLOBALS['cfg']['Server']['verbose'])) { $vars['server_verbose_or_name'] = $GLOBALS['cfg']['Server']['host']; } else { $vars['server_verbose_or_name'] = $GLOBALS['cfg']['Server']['verbose']; } + $vars['database'] = $GLOBALS['db']; $vars['table'] = $GLOBALS['table']; $vars['phpmyadmin_version'] = 'phpMyAdmin ' . PMA_VERSION; @@ -3247,32 +3403,40 @@ function PMA_expandUserString($string, $escape = null, $updates = array()) return strtr(strftime($string), $replace); } + /** - * Display the form used to browse anywhere on the local server for a file to + * Prepare the form used to browse anywhere on the local server for a file to * import * * @param string $max_upload_size maximum upload size * * @return void */ -function PMA_browseUploadFile($max_upload_size) +function PMA_getBrowseUploadFileBlock($max_upload_size) { + + $block_html = ''; + if ($GLOBALS['is_upload'] && ! empty($GLOBALS['cfg']['UploadDir'])) { - echo '
diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php deleted file mode 100644 index 503f06d15d..0000000000 --- a/libraries/display_tbl.lib.php +++ /dev/null @@ -1,4827 +0,0 @@ - updates the - // display mode - if ($the_disp_mode != 'nnnn000000') { - if (isset($GLOBALS['printview']) && $GLOBALS['printview'] == '1') { - // 2.0 Print view -> set all elements to false! - $do_display['edit_lnk'] = 'nn'; // no edit link - $do_display['del_lnk'] = 'nn'; // no delete link - $do_display['sort_lnk'] = (string) '0'; - $do_display['nav_bar'] = (string) '0'; - $do_display['ins_row'] = (string) '0'; - $do_display['bkm_form'] = (string) '0'; - $do_display['text_btn'] = (string) '0'; - $do_display['pview_lnk'] = (string) '0'; - } elseif ($GLOBALS['is_count'] || $GLOBALS['is_analyse'] - || $GLOBALS['is_maint'] || $GLOBALS['is_explain'] - ) { - // 2.1 Statement is a "SELECT COUNT", a - // "CHECK/ANALYZE/REPAIR/OPTIMIZE", an "EXPLAIN" one or - // contains a "PROC ANALYSE" part - $do_display['edit_lnk'] = 'nn'; // no edit link - $do_display['del_lnk'] = 'nn'; // no delete link - $do_display['sort_lnk'] = (string) '0'; - $do_display['nav_bar'] = (string) '0'; - $do_display['ins_row'] = (string) '0'; - $do_display['bkm_form'] = (string) '1'; - if ($GLOBALS['is_maint']) { - $do_display['text_btn'] = (string) '1'; - } else { - $do_display['text_btn'] = (string) '0'; - } - $do_display['pview_lnk'] = (string) '1'; - - } elseif ($GLOBALS['is_show']) { - // 2.2 Statement is a "SHOW..." - /** - * 2.2.1 - * @todo defines edit/delete links depending on show statement - */ - $tmp = preg_match( - '@^SHOW[[:space:]]+(VARIABLES|(FULL[[:space:]]+)?' - . 'PROCESSLIST|STATUS|TABLE|GRANTS|CREATE|LOGS|DATABASES|FIELDS)@i', - $GLOBALS['sql_query'], $which - ); - if (isset($which[1]) - && (strpos(' ' . strtoupper($which[1]), 'PROCESSLIST') > 0) - ) { - $do_display['edit_lnk'] = 'nn'; // no edit link - $do_display['del_lnk'] = 'kp'; // "kill process" type edit link - } else { - // Default case -> no links - $do_display['edit_lnk'] = 'nn'; // no edit link - $do_display['del_lnk'] = 'nn'; // no delete link - } - // 2.2.2 Other settings - $do_display['sort_lnk'] = (string) '0'; - $do_display['nav_bar'] = (string) '0'; - $do_display['ins_row'] = (string) '0'; - $do_display['bkm_form'] = (string) '1'; - $do_display['text_btn'] = (string) '1'; - $do_display['pview_lnk'] = (string) '1'; - } else { - // 2.3 Other statements (ie "SELECT" ones) -> updates - // $do_display['edit_lnk'], $do_display['del_lnk'] and - // $do_display['text_btn'] (keeps other default values) - $prev_table = $fields_meta[0]->table; - $do_display['text_btn'] = (string) '1'; - for ($i = 0; $i < $GLOBALS['fields_cnt']; $i++) { - $is_link = ($do_display['edit_lnk'] != 'nn') - || ($do_display['del_lnk'] != 'nn') - || ($do_display['sort_lnk'] != '0') - || ($do_display['ins_row'] != '0'); - // 2.3.2 Displays edit/delete/sort/insert links? - if ($is_link - && (($fields_meta[$i]->table == '') - || ($fields_meta[$i]->table != $prev_table)) - ) { - $do_display['edit_lnk'] = 'nn'; // don't display links - $do_display['del_lnk'] = 'nn'; - /** - * @todo May be problematic with same field names - * in two joined table. - */ - // $do_display['sort_lnk'] = (string) '0'; - $do_display['ins_row'] = (string) '0'; - if ($do_display['text_btn'] == '1') { - break; - } - } // end if (2.3.2) - // 2.3.3 Always display print view link - $do_display['pview_lnk'] = (string) '1'; - $prev_table = $fields_meta[$i]->table; - } // end for - } // end if..elseif...else (2.1 -> 2.3) - } // end if (2) - - // 3. Gets the total number of rows if it is unknown - if (isset($unlim_num_rows) && $unlim_num_rows != '') { - $the_total = $unlim_num_rows; - } elseif ((($do_display['nav_bar'] == '1') || ($do_display['sort_lnk'] == '1')) - && (strlen($db) && !empty($table)) - ) { - $the_total = PMA_Table::countRecords($db, $table); - } - - // 4. If navigation bar or sorting fields names URLs should be - // displayed but there is only one row, change these settings to - // false - if ($do_display['nav_bar'] == '1' || $do_display['sort_lnk'] == '1') { - - // - Do not display sort links if less than 2 rows. - // - For a VIEW we (probably) did not count the number of rows - // so don't test this number here, it would remove the possibility - // of sorting VIEW results. - if (isset($unlim_num_rows) - && $unlim_num_rows < 2 - && ! PMA_Table::isView($db, $table) - ) { - // force display of navbar for vertical/horizontal display-choice. - // $do_display['nav_bar'] = (string) '0'; - $do_display['sort_lnk'] = (string) '0'; - } - } // end if (3) - - // 5. Updates the synthetic var - $the_disp_mode = join('', $do_display); - - return $do_display; - -} // end of the 'PMA_setDisplayMode()' function - - -/** - * Return true if we are executing a query in the form of - * "SELECT * FROM ..." - * - * @return boolean - */ -function PMA_isSelect() -{ - // global variables set from sql.php - global $is_count, $is_export, $is_func, $is_analyse; - global $analyzed_sql; - - return ! ($is_count || $is_export || $is_func || $is_analyse) - && (count($analyzed_sql[0]['select_expr']) == 0) - && isset($analyzed_sql[0]['queryflags']['select_from']) - && (count($analyzed_sql[0]['table_ref']) == 1); -} - - -/** - * Get a navigation button - * - * @param string $caption iconic caption for button - * @param string $title text for button - * @param integer $pos position for next query - * @param string $html_sql_query query ready for display - * @param string $onsubmit optional onsubmit clause - * @param string $input_for_real_end optional hidden field for special treatment - * @param string $onclick optional onclick clause - * - * @return string html content - * - * @global string $db the database name - * @global string $table the table name - * @global string $goto the URL to go back in case of errors - * - * @access private - * - * @see PMA_getTableNavigation() - */ -function PMA_getTableNavigationButton($caption, $title, $pos, $html_sql_query, - $onsubmit = '', $input_for_real_end = '', $onclick = '' -) { - - global $db, $table, $goto; - - $caption_output = ''; - // for true or 'both' - if ($GLOBALS['cfg']['NavigationBarIconic']) { - $caption_output .= $caption; - } - - // for false or 'both' - if (($GLOBALS['cfg']['NavigationBarIconic'] === false) - || ($GLOBALS['cfg']['NavigationBarIconic'] === 'both') - ) { - $caption_output .= ' ' . $title; - } - $title_output = ' title="' . $title . '"'; - - return '' - . '
' - . PMA_generate_common_hidden_inputs($db, $table) - . '' - . '' - . '' - . $input_for_real_end - . '' - . '
' - . ''; - -} // end function PMA_getTableNavigationButton() - - -/** - * Get a navigation bar to browse among the results of a SQL query - * - * @param integer $pos_next the offset for the "next" page - * @param integer $pos_prev the offset for the "previous" page - * @param string $sql_query the URL-encoded query - * @param string $id_for_direction_dropdown the id for the direction dropdown - * - * @return string html content - * - * @global string $db the database name - * @global string $table the table name - * @global string $goto the URL to go back in case of errors - * @global integer $num_rows the total number of rows returned by the - * SQL query - * @global integer $unlim_num_rows the total number of rows returned by the - * SQL any programmatically appended "LIMIT" clause - * @global boolean $is_innodb whether its InnoDB or not - * @global array $showtable table definitions - * - * @access private - * - * @see PMA_getTable() - */ -function PMA_getTableNavigation($pos_next, $pos_prev, $sql_query, - $id_for_direction_dropdown -) { - - global $db, $table, $goto; - global $num_rows, $unlim_num_rows; - global $is_innodb; - global $showtable; - - $table_navigation_html = ''; - - // here, using htmlentities() would cause problems if the query - // contains accented characters - $html_sql_query = htmlspecialchars($sql_query); - - /** - * @todo move this to a central place - * @todo for other future table types - */ - $is_innodb = (isset($showtable['Type']) && $showtable['Type'] == 'InnoDB'); - - // Navigation bar - $table_navigation_html .= '' - . '' - . ''; - - // Move to the beginning or to the previous page - if ($_SESSION['tmp_user_values']['pos'] - && ($_SESSION['tmp_user_values']['max_rows'] != 'all') - ) { - - $table_navigation_html .= PMA_getMoveBackwardButtonsForTableNavigation( - $html_sql_query, $pos_prev - ); - - } // end move back - - $nbTotalPage = 1; - //page redirection - // (unless we are showing all records) - if ($_SESSION['tmp_user_values']['max_rows'] != 'all') { //if1 - - $pageNow = @floor( - $_SESSION['tmp_user_values']['pos'] - / $_SESSION['tmp_user_values']['max_rows'] - ) + 1; - - $nbTotalPage = @ceil( - $unlim_num_rows - / $_SESSION['tmp_user_values']['max_rows'] - ); - - if ($nbTotalPage > 1) { //if2 - - $table_navigation_html .= ''; - } //_if2 - } //_if1 - - // Display the "Show all" button if allowed - if (($num_rows < $unlim_num_rows) - && ($GLOBALS['cfg']['ShowAll'] - || ($GLOBALS['cfg']['MaxRows'] * 5 >= $unlim_num_rows)) - ) { - - $table_navigation_html .= PMA_getShowAllButtonForTableNavigation( - $db, $table, $html_sql_query, $goto - ); - - } // end show all - - // Move to the next page or to the last one - $endpos = $_SESSION['tmp_user_values']['pos'] - + $_SESSION['tmp_user_values']['max_rows']; - - if (($endpos < $unlim_num_rows) - && ($num_rows >= $_SESSION['tmp_user_values']['max_rows']) - && ($_SESSION['tmp_user_values']['max_rows'] != 'all') - ) { - - $table_navigation_html .= PMA_getMoveForwardButtonsForTableNavigation( - $html_sql_query, $pos_next, $is_innodb, - $unlim_num_rows, $num_rows - ); - - } // end move toward - - // show separator if pagination happen - if ($nbTotalPage > 1) { - $table_navigation_html - .= ''; - } - - $table_navigation_html .= '' - . ''; - - // if displaying a VIEW, $unlim_num_rows could be zero because - // of $cfg['MaxExactCountViews']; in this case, avoid passing - // the 5th parameter to checkFormElementInRange() - // (this means we can't validate the upper limit - $table_navigation_html .= '' - . '' - . '' - . ''; - - return $table_navigation_html; - -} // end of the 'PMA_getTableNavigation()' function - - -/** - * Prepare move backward buttons - previous and first - * - * @param string $html_sql_query the sql encoded by html special characters - * @param integer $pos_prev the offset for the "previous" page - * - * @return string html content - * - * @see PMA_getTableNavigation() - */ -function PMA_getMoveBackwardButtonsForTableNavigation($html_sql_query, $pos_prev) -{ - return PMA_getTableNavigationButton( - '<<', _pgettext('First page', 'Begin'), 0, $html_sql_query - ) - . PMA_getTableNavigationButton( - '<', _pgettext('Previous page', 'Previous'), $pos_prev, - $html_sql_query - ); -} - - -/** - * Prepare Show All button for table navigation - * - * @param string $db the database name - * @param string $table the table name - * @param string $html_sql_query the sql encoded by html special characters - * @param string $goto the URL to go back in case of errors - * - * @return string html content - * - * @see PMA_getTableNavigation() - */ -function PMA_getShowAllButtonForTableNavigation($db, $table, $html_sql_query, $goto) -{ - return "\n" - . '' - . '
' - . PMA_generate_common_hidden_inputs($db, $table) - . '' - . '' - . '' - . '' - . '' - . '
' - . ''; -} - - -/** - * Prepare move farward buttons - next and last - * - * @param string $html_sql_query the sql encoded by html special characters - * @param integer $pos_next the offset for the "next" page - * @param boolean $is_innodb whether its InnoDB or not - * @param integer $unlim_num_rows the total number of rows returned by the - * @param integer $num_rows the total number of rows returned by the - * - * @return string $buttons_html html content - * - * @see PMA_getTableNavigation() - */ -function PMA_getMoveForwardButtonsForTableNavigation( - $html_sql_query, $pos_next, $is_innodb, $unlim_num_rows, $num_rows -) { - - // display the Next button - $buttons_html = PMA_getTableNavigationButton( - '>', - _pgettext('Next page', 'Next'), - $pos_next, - $html_sql_query - ); - - // prepare some options for the End button - if ($is_innodb && $unlim_num_rows > $GLOBALS['cfg']['MaxExactCount']) { - $input_for_real_end = ''; - // no backquote around this message - $onclick = ''; - } else { - $input_for_real_end = $onclick = ''; - } - - $onsubmit = 'onsubmit="return ' - . ($_SESSION['tmp_user_values']['pos'] - + $_SESSION['tmp_user_values']['max_rows'] < $unlim_num_rows - && $num_rows >= $_SESSION['tmp_user_values']['max_rows']) - ? 'true' - : 'false' . '"'; - - // display the End button - $buttons_html .= PMA_getTableNavigationButton( - '>>', - _pgettext('Last page', 'End'), - @((ceil($unlim_num_rows / $_SESSION['tmp_user_values']['max_rows'])- 1) - * $_SESSION['tmp_user_values']['max_rows']), - $html_sql_query, $onsubmit, $input_for_real_end, $onclick - ); - - return $buttons_html; - -} - - -/** - * Prepare feilds followed by Show button for table navigation - * Start row, Number of rows, Headers every - * - * @param string $html_sql_query the sql encoded by html special - * characters - * @param string $goto the URL to go back in case of errors - * @param integer $pos_next the offset for the "next" page - * @param integer $unlim_num_rows the total number of rows returned by the - * @param string $id_for_direction_dropdown the id for the direction dropdown - * - * @return string $additional_fields_html html content - * - * @see PMA_getTableNavigation() - */ -function PMA_getAdditionalFieldsForTableNavigation( - $html_sql_query, $goto, $pos_next, - $unlim_num_rows, $id_for_direction_dropdown -) { - - $additional_fields_html = ''; - - $additional_fields_html .= '' - . '' - . '' - . __('Start row') . ': ' . "\n" - . '' - . __('Number of rows') . ': ' . "\n" - . ''; - - if ($GLOBALS['cfg']['ShowDisplayDirection']) { - // Display mode (horizontal/vertical and repeat headers) - $additional_fields_html .= __('Mode') . ': ' . "\n"; - $choices = array( - 'horizontal' => __('horizontal'), - 'horizontalflipped' => __('horizontal (rotated headers)'), - 'vertical' => __('vertical') - ); - - $additional_fields_html .= PMA_getDropdown( - 'disp_direction', $choices, - $_SESSION['tmp_user_values']['disp_direction'], - $id_for_direction_dropdown - ); - unset($choices); - } - - $additional_fields_html .= sprintf( - __('Headers every %s rows'), - ' ' - ); - - return $additional_fields_html; - -} - - -/** - * Get the headers of the results table - * - * @param array &$is_display which elements to display - * @param array &$fields_meta the list of fields properties - * @param integer $fields_cnt the total number of fields returned by - * the SQL query - * @param array $analyzed_sql the analyzed query - * @param string $sort_expression sort expression - * @param string $sort_expression_nodirection sort expression without direction - * @param string $sort_direction sort direction - * - * @return string html content - * - * @global string $db the database name - * @global string $table the table name - * @global string $goto the URL to go back in case of errors - * @global string $sql_query the SQL query - * @global integer $num_rows the total number of rows returned by the - * SQL query - * @global array $vertical_display informations used with vertical display - * mode - * - * @access private - * - * @see PMA_getTable() - */ -function PMA_getTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, - $analyzed_sql = '', $sort_expression = '', $sort_expression_nodirection = '', - $sort_direction = '' -) { - - global $db, $table, $goto; - global $sql_query, $num_rows; - global $vertical_display, $highlight_columns; - - $table_headers_html = ''; - - // required to generate sort links that will remember whether the - // "Show all" button has been clicked - $sql_md5 = md5($GLOBALS['sql_query']); - $session_max_rows = $_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows']; - - $direction = isset($_SESSION['tmp_user_values']['disp_direction']) - ? $_SESSION['tmp_user_values']['disp_direction'] - : ''; - - if ($analyzed_sql == '') { - $analyzed_sql = array(); - } - - $directionCondition = ($direction == 'horizontal') - || ($direction == 'horizontalflipped'); - - // can the result be sorted? - if ($is_display['sort_lnk'] == '1') { - - // Just as fallback - $unsorted_sql_query = $sql_query; - if (isset($analyzed_sql[0]['unsorted_query'])) { - $unsorted_sql_query = $analyzed_sql[0]['unsorted_query']; - } - // Handles the case of multiple clicks on a column's header - // which would add many spaces before "ORDER BY" in the - // generated query. - $unsorted_sql_query = trim($unsorted_sql_query); - - // sorting by indexes, only if it makes sense (only one table ref) - if (isset($analyzed_sql) - && isset($analyzed_sql[0]) - && isset($analyzed_sql[0]['querytype']) - && ($analyzed_sql[0]['querytype'] == 'SELECT') - && isset($analyzed_sql[0]['table_ref']) - && (count($analyzed_sql[0]['table_ref']) == 1) - ) { - - // grab indexes data: - $indexes = PMA_Index::getFromTable($table, $db); - - // do we have any index? - if ($indexes) { - $table_headers_html .= PMA_getSortByKeyDropDown( - $db, $table, $indexes, $sort_expression, - $unsorted_sql_query - ); - } - } - } - - // Output data needed for grid editing - $table_headers_html .= '' - . '
' - . PMA_generate_common_hidden_inputs($db, $table) - . '
'; - - // Output data needed for column reordering and show/hide column - if (PMA_isSelect()) { - $table_headers_html .= PMA_getDataForResettingColumnOrder(); - } - - $vertical_display['emptypre'] = 0; - $vertical_display['emptyafter'] = 0; - $vertical_display['textbtn'] = ''; - - // Display options (if we are not in print view) - if (! (isset($GLOBALS['printview']) && ($GLOBALS['printview'] == '1'))) { - - $table_headers_html .= PMA_getOptionsBlock($db, $table, $sql_query, $goto); - - // prepare full/partial text button or link - $full_or_partial_text_link = PMA_getFullOrPartialTextButtonOrLink( - $db, $table, $sql_query, $goto - ); - } - - // Start of form for multi-rows edit/delete/export - $table_headers_html .= PMA_getFormForMultiRowOperations( - $db, $table, $is_display['del_lnk'] - ); - - // 1. Displays the full/partial text button (part 1)... - if ($directionCondition) { - - $table_headers_html .= '' . "\n"; - - $colspan = (($is_display['edit_lnk'] != 'nn') - && ($is_display['del_lnk'] != 'nn')) - ? ' colspan="4"' - : ''; - - } else { - $rowspan = (($is_display['edit_lnk'] != 'nn') - && ($is_display['del_lnk'] != 'nn')) - ? ' rowspan="4"' - : ''; - } - - // ... before the result table - if ((($is_display['edit_lnk'] == 'nn') && ($is_display['del_lnk'] == 'nn')) - && ($is_display['text_btn'] == '1') - ) { - - $vertical_display['emptypre'] = (($is_display['edit_lnk'] != 'nn') - && ($is_display['del_lnk'] != 'nn')) ? 4 : 0; - - if ($directionCondition) { - - $table_headers_html .= '' - . '' - . ''; - - // end horizontal/horizontalflipped mode - } else { - - $span = $num_rows + 1 + floor( - $num_rows / $_SESSION['tmp_user_values']['repeat_cells'] - ); - $table_headers_html .= ''; - - } // end vertical mode - - } elseif ((($GLOBALS['cfg']['RowActionLinks'] == 'left') - || ($GLOBALS['cfg']['RowActionLinks'] == 'both')) - && ($is_display['text_btn'] == '1') - ) { - // ... at the left column of the result table header if possible - // and required - - $vertical_display['emptypre'] = (($is_display['edit_lnk'] != 'nn') - && ($is_display['del_lnk'] != 'nn')) ? 4 : 0; - - if ($directionCondition) { - - $table_headers_html .= '' - . $full_or_partial_text_link . ''; - // end horizontal/horizontalflipped mode - - } else { - - $vertical_display['textbtn'] - = ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n"; - } // end vertical mode - - } elseif ((($GLOBALS['cfg']['RowActionLinks'] == 'left') - || ($GLOBALS['cfg']['RowActionLinks'] == 'both')) - && (($is_display['edit_lnk'] != 'nn') || ($is_display['del_lnk'] != 'nn')) - ) { - // ... elseif no button, displays empty(ies) col(s) if required - - $vertical_display['emptypre'] = (($is_display['edit_lnk'] != 'nn') - && ($is_display['del_lnk'] != 'nn')) ? 4 : 0; - - if ($directionCondition) { - - $table_headers_html .= ''; - - // end horizontal/horizontalfipped mode - } else { - $vertical_display['textbtn'] = ' ' . "\n"; - } // end vertical mode - - } elseif (($GLOBALS['cfg']['RowActionLinks'] == 'none') - && ($directionCondition) - ) { - // ... elseif display an empty column if the actions links are disabled to - // match the rest of the table - $table_headers_html .= ''; - } - - // 2. Displays the fields' name - // 2.0 If sorting links should be used, checks if the query is a "JOIN" - // statement (see 2.1.3) - - // 2.0.1 Prepare Display column comments if enabled - // ($GLOBALS['cfg']['ShowBrowseComments']). - // Do not show comments, if using horizontalflipped mode, - // because of space usage - if ($GLOBALS['cfg']['ShowBrowseComments'] - && ($direction != 'horizontalflipped') - ) { - $comments_map = array(); - if (isset($analyzed_sql[0]) && is_array($analyzed_sql[0])) { - foreach ($analyzed_sql[0]['table_ref'] as $tbl) { - $tb = $tbl['table_true_name']; - $comments_map[$tb] = PMA_getComments($db, $tb); - unset($tb); - } - } - } - - if ($GLOBALS['cfgRelation']['commwork'] - && $GLOBALS['cfgRelation']['mimework'] - && $GLOBALS['cfg']['BrowseMIME'] - && ! $_SESSION['tmp_user_values']['hide_transformation'] - ) { - include_once './libraries/transformations.lib.php'; - $GLOBALS['mime_map'] = PMA_getMIME($db, $table); - } - - // See if we have to highlight any header fields of a WHERE query. - // Uses SQL-Parser results. - $highlight_columns = array(); - if (isset($analyzed_sql) && isset($analyzed_sql[0]) - && isset($analyzed_sql[0]['where_clause_identifiers']) - ) { - - $wi = 0; - if (isset($analyzed_sql[0]['where_clause_identifiers']) - && is_array($analyzed_sql[0]['where_clause_identifiers']) - ) { - foreach ($analyzed_sql[0]['where_clause_identifiers'] - as $wci_nr => $wci - ) { - $highlight_columns[$wci] = 'true'; - } - } - } - - list($col_order, $col_visib) = PMA_getColumnParams(); - - for ($j = 0; $j < $fields_cnt; $j++) { - - // assign $i with appropriate column order - $i = $col_order ? $col_order[$j] : $j; - - // See if this column should get highlight because it's used in the - // where-query. - $condition_field = (isset($highlight_columns[$fields_meta[$i]->name]) - || isset($highlight_columns[PMA_backquote($fields_meta[$i]->name)])) - ? true - : false; - - // 2.0 Prepare comment-HTML-wrappers for each row, if defined/enabled. - $comments = PMA_getCommentForRow($comments_map, $fields_meta[$i]); - - if ($is_display['sort_lnk'] == '1') { - // 2.1 Results can be sorted - - // 2.1.1 Checks if the table name is required; it's the case - // for a query with a "JOIN" statement and if the column - // isn't aliased, or in queries like - // SELECT `1`.`master_field` , `2`.`master_field` - // FROM `PMA_relation` AS `1` , `PMA_relation` AS `2` - - $sort_tbl = (isset($fields_meta[$i]->table) - && strlen($fields_meta[$i]->table)) - ? PMA_backquote($fields_meta[$i]->table) . '.' - : ''; - - // 2.1.2 Checks if the current column is used to sort the - // results - // the orgname member does not exist for all MySQL versions - // but if found, it's the one on which to sort - $name_to_use_in_sort = $fields_meta[$i]->name; - $is_orgname = false; - if (isset($fields_meta[$i]->orgname) - && strlen($fields_meta[$i]->orgname) - ) { - $name_to_use_in_sort = $fields_meta[$i]->orgname; - $is_orgname = true; - } - - // $name_to_use_in_sort might contain a space due to - // formatting of function expressions like "COUNT(name )" - // so we remove the space in this situation - $name_to_use_in_sort = str_replace(' )', ')', $name_to_use_in_sort); - - $is_in_sort = PMA_isInSorted( - $sort_expression, $sort_expression_nodirection, - $sort_tbl, $name_to_use_in_sort - ); - - // 2.1.3 Check the field name for a bracket. - // If it contains one, it's probably a function column - // like 'COUNT(`field`)' - // It still might be a column name of a view. See bug #3383711 - // Check is_orgname. - if ((strpos($name_to_use_in_sort, '(') !== false) && ! $is_orgname) { - $sort_order = "\n" . 'ORDER BY ' . $name_to_use_in_sort . ' '; - } else { - $sort_order = "\n" . 'ORDER BY ' . $sort_tbl - . PMA_backquote($name_to_use_in_sort) . ' '; - } - unset($name_to_use_in_sort); - unset($is_orgname); - - // 2.1.4 Do define the sorting URL - - list($sort_order, $order_img) = PMA_getSortingUrlParams( - $is_in_sort, $sort_direction, $fields_meta[$i], - $sort_order, $i - ); - - if (preg_match( - '@(.*)([[:space:]](LIMIT (.*)|PROCEDURE (.*)|FOR UPDATE|' - . 'LOCK IN SHARE MODE))@is', - $unsorted_sql_query, $regs3 - )) { - $sorted_sql_query = $regs3[1] . $sort_order . $regs3[2]; - } else { - $sorted_sql_query = $unsorted_sql_query . $sort_order; - } - - $_url_params = array( - 'db' => $db, - 'table' => $table, - 'sql_query' => $sorted_sql_query, - 'session_max_rows' => $session_max_rows - ); - $order_url = 'sql.php' . PMA_generate_common_url($_url_params); - - // 2.1.5 Displays the sorting URL - // enable sort order swapping for image - $order_link = PMA_getSortOrderLink( - $order_img, $i, $direction, $fields_meta[$i], $order_url - ); - - if ($directionCondition) { - $table_headers_html .= PMA_getDraggableClassForSortableColumns( - $col_visib, $col_visib[$j], $condition_field, - $direction, $fields_meta[$i], $order_link, $comments - ); - } - - $vertical_display['desc'][] = ' ' . "\n" . $order_link . $comments . ' ' . "\n"; - } else { - // 2.2 Results can't be sorted - - if ($directionCondition) { - $table_headers_html .= PMA_getDraggableClassForNonSortableColumns( - $col_visib, $col_visib[$j], $condition_field, - $direction, $fields_meta[$i], $comments - ); - } - - $vertical_display['desc'][] = ' ' . "\n" . ' ' . htmlspecialchars($fields_meta[$i]->name) - . "\n" . $comments . ' '; - } // end else (2.2) - } // end for - - // 3. Displays the needed checkboxes at the right - // column of the result table header if possible and required... - if ((($GLOBALS['cfg']['RowActionLinks'] == 'right') - || ($GLOBALS['cfg']['RowActionLinks'] == 'both')) - && (($is_display['edit_lnk'] != 'nn') || ($is_display['del_lnk'] != 'nn')) - && ($is_display['text_btn'] == '1') - ) { - - $vertical_display['emptyafter'] = (($is_display['edit_lnk'] != 'nn') - && ($is_display['del_lnk'] != 'nn')) ? 4 : 1; - - if ($directionCondition) { - $table_headers_html .= "\n" - . '' . $full_or_partial_text_link - . ''; - - // end horizontal/horizontalflipped mode - } else { - $vertical_display['textbtn'] = ' ' . "\n" - . ' ' . "\n" - . ' ' . "\n"; - } // end vertical mode - } elseif ((($GLOBALS['cfg']['RowActionLinks'] == 'left') - || ($GLOBALS['cfg']['RowActionLinks'] == 'both')) - && (($is_display['edit_lnk'] == 'nn') && ($is_display['del_lnk'] == 'nn')) - ) { - // ... elseif no button, displays empty columns if required - // (unless coming from Browse mode print view) - - $vertical_display['emptyafter'] = (($is_display['edit_lnk'] != 'nn') - && ($is_display['del_lnk'] != 'nn')) ? 4 : 1; - - if ($directionCondition) { - $table_headers_html .= "\n" - . ''; - - // end horizontal/horizontalflipped mode - } else { - $vertical_display['textbtn'] = ' ' . "\n"; - } // end vertical mode - } - - if ($directionCondition) { - $table_headers_html .= '' - . ''; - } - - return $table_headers_html; - -} // end of the 'PMA_getTableHeaders()' function - - -/** - * Prepare sort by key dropdown - html code segment - * - * @param string $db the database name - * @param string $table the table name - * @param array $indexes the indexes of the table for sort criteria - * @param string $sort_expression the sort expression - * @param string $unsorted_sql_query the unsorted sql query - * - * @return string $drop_down_html html content - * - * @see PMA_getTableHeaders() - */ -function PMA_getSortByKeyDropDown( - $db, $table, $indexes, $sort_expression, $unsorted_sql_query -) { - - $drop_down_html = ''; - - $drop_down_html .= '
' . "\n" - . PMA_generate_common_hidden_inputs($db, $table) - . __('Sort by key') - . ': ' . "\n" - . '
' . "\n"; - - return $drop_down_html; - -} - - -/** - * Prepare data for column restoring and show/hide - * - * @return string $data_html html content - * - * @see PMA_getTableHeaders() - */ -function PMA_getDataForResettingColumnOrder() -{ - - $data_html = ''; - - // generate the column order, if it is set - $pmatable = new PMA_Table($GLOBALS['table'], $GLOBALS['db']); - $col_order = $pmatable->getUiProp(PMA_Table::PROP_COLUMN_ORDER); - - if ($col_order) { - $data_html .= ''; - } - - $col_visib = $pmatable->getUiProp(PMA_Table::PROP_COLUMN_VISIB); - - if ($col_visib) { - $data_html .= ''; - } - - // generate table create time - if (! PMA_Table::isView($GLOBALS['table'], $GLOBALS['db'])) { - $data_html .= ''; - } - - return $data_html; - -} - - -/** - * Prepare option fields block - * - * @param string $db the database name - * @param string $table the table name - * @param string $sql_query the SQL query - * @param string $goto the URL to go back in case of errors - * - * @return string $options_html html content - * - * @see PMA_getTableHeaders() - */ -function PMA_getOptionsBlock($db, $table, $sql_query, $goto) -{ - - $options_html = ''; - - $options_html .= '
$db, - 'table' => $table, - 'sql_query' => $sql_query, - 'goto' => $goto, - 'display_options_form' => 1 - ); - - $options_html .= PMA_generate_common_hidden_inputs($url_params) - . '
' - . PMA_getDivForSliderEffect('displayoptions', __('Options')) - . '
'; - - $options_html .= '
'; - $choices = array( - 'P' => __('Partial texts'), - 'F' => __('Full texts') - ); - - $options_html .= PMA_getRadioFields( - 'display_text', $choices, - $_SESSION['tmp_user_values']['display_text'] - ) - . '
'; - - if ($GLOBALS['cfgRelation']['relwork'] - && $GLOBALS['cfgRelation']['displaywork'] - ) { - $options_html .= '
'; - $choices = array( - 'K' => __('Relational key'), - 'D' => __('Relational display column') - ); - - $options_html .= PMA_getRadioFields( - 'relational_display', $choices, - $_SESSION['tmp_user_values']['relational_display'] - ) - . '
'; - } - - $options_html .= '
' - . PMA_getCheckbox( - 'display_binary', __('Show binary contents'), - ! empty($_SESSION['tmp_user_values']['display_binary']), false - ) - . '
' - . PMA_getCheckbox( - 'display_blob', __('Show BLOB contents'), - ! empty($_SESSION['tmp_user_values']['display_blob']), false - ) - . '
' - . PMA_getCheckbox( - 'display_binary_as_hex', __('Show binary contents as HEX'), - ! empty($_SESSION['tmp_user_values']['display_binary_as_hex']), false - ) - . '
'; - - // I would have preferred to name this "display_transformation". - // This is the only way I found to be able to keep this setting sticky - // per SQL query, and at the same time have a default that displays - // the transformations. - $options_html .= '
' - . PMA_getCheckbox( - 'hide_transformation', __('Hide browser transformation'), - ! empty($_SESSION['tmp_user_values']['hide_transformation']), false - ) - . '
'; - - if (! PMA_DRIZZLE) { - $options_html .= '
'; - $choices = array( - 'GEOM' => __('Geometry'), - 'WKT' => __('Well Known Text'), - 'WKB' => __('Well Known Binary') - ); - - $options_html .= PMA_getRadioFields( - 'geometry_display', $choices, - $_SESSION['tmp_user_values']['geometry_display'] - ) - . '
'; - } - - $options_html .= '
' - . '
'; - - $options_html .= '
' - . '' - . '
' - . '' - . '
'; - - return $options_html; - -} - - -/** - * Get full/partial text button or link - * - * @param string $db the database name - * @param string $table the table name - * @param string $sql_query the SQL query - * @param string $goto the URL to go back in case of errors - * - * @return string html content - * - * @see PMA_getTableHeaders() - */ -function PMA_getFullOrPartialTextButtonOrLink($db, $table, $sql_query, $goto) -{ - - $url_params_full_text = array( - 'db' => $db, - 'table' => $table, - 'sql_query' => $sql_query, - 'goto' => $goto, - 'full_text_button' => 1 - ); - - if ($_SESSION['tmp_user_values']['display_text'] == 'F') { - // currently in fulltext mode so show the opposite link - $tmp_image_file = $GLOBALS['pmaThemeImage'] . 's_partialtext.png'; - $tmp_txt = __('Partial texts'); - $url_params_full_text['display_text'] = 'P'; - } else { - $tmp_image_file = $GLOBALS['pmaThemeImage'] . 's_fulltext.png'; - $tmp_txt = __('Full texts'); - $url_params_full_text['display_text'] = 'F'; - } - - $tmp_image = ''
-                 . $tmp_txt . ''; - $tmp_url = 'sql.php' . PMA_generate_common_url($url_params_full_text); - - return PMA_linkOrButton($tmp_url, $tmp_image, array(), false); - -} - - -/** - * Prepare html form for multi row operations - * - * @param string $db the database name - * @param string $table the table name - * @param string $del_lnk the delete link of current row - * - * @return string $form_html html content - * - * @see PMA_getTableHeaders() - */ -function PMA_getFormForMultiRowOperations($db, $table, $del_lnk) -{ - - $form_html = ''; - - if (($del_lnk == 'dr') || ($del_lnk == 'kp')) { - - $form_html .= '
' . "\n"; - } - - $form_html .= '' . "\n"; - - return $form_html; - -} - - -/** - * Get comment for row - * - * @param array $comments_map comments array - * @param array $fields_meta set of field properties - * - * @return string $comment html content - * - * @see PMA_getTableHeaders() - */ -function PMA_getCommentForRow($comments_map, $fields_meta) -{ - $comments = ''; - if (isset($comments_map) - && isset($comments_map[$fields_meta->table]) - && isset($comments_map[$fields_meta->table][$fields_meta->name]) - ) { - $comments = '' - . htmlspecialchars( - $comments_map[$fields_meta->table][$fields_meta->name] - ) - . ''; - } - return $comments; -} - - -/** - * Check whether the column is sorted - * - * @param string $sort_expression sort expression - * @param string $sort_expression_nodirection sort expression without direction - * @param string $sort_tbl the table name - * @param string $name_to_use_in_sort the sorting column name - * - * @return boolean $is_in_sort the column sorted or not - * - * @see PMA_getTableHeaders() - */ -function PMA_isInSorted( - $sort_expression, $sort_expression_nodirection, $sort_tbl, - $name_to_use_in_sort -) { - - if (empty($sort_expression)) { - $is_in_sort = false; - } else { - // Field name may be preceded by a space, or any number - // of characters followed by a dot (tablename.fieldname) - // so do a direct comparison for the sort expression; - // this avoids problems with queries like - // "SELECT id, count(id)..." and clicking to sort - // on id or on count(id). - // Another query to test this: - // SELECT p.*, FROM_UNIXTIME(p.temps) FROM mytable AS p - // (and try clicking on each column's header twice) - if (! empty($sort_tbl) - && (strpos($sort_expression_nodirection, $sort_tbl) === false) - && (strpos($sort_expression_nodirection, '(') === false) - ) { - $new_sort_expression_nodirection = $sort_tbl - . $sort_expression_nodirection; - } else { - $new_sort_expression_nodirection = $sort_expression_nodirection; - } - - $is_in_sort = false; - $sort_name = str_replace('`', '', $sort_tbl) . $name_to_use_in_sort; - - if (($sort_name == str_replace('`', '', $new_sort_expression_nodirection)) - || ($sort_name == str_replace('`', '', $sort_expression_nodirection)) - ) { - $is_in_sort = true; - } - } - - return $is_in_sort; - -} - - -/** - * Get sort url paramaeters - sort order and order image - * - * @param boolean $is_in_sort the column sorted or not - * @param string $sort_direction the sort direction - * @param array $fields_meta set of field properties - * @param string $sort_order the sorting order - * @param integer $column_index the index of the column - * - * @return array 2 element array - $sort_order, $order_img - * - * @see PMA_getTableHeaders() - */ -function PMA_getSortingUrlParams( - $is_in_sort, $sort_direction, $fields_meta, $sort_order, $column_index -) { - - if (! $is_in_sort) { - - // patch #455484 ("Smart" order) - $GLOBALS['cfg']['Order'] = strtoupper($GLOBALS['cfg']['Order']); - - if ($GLOBALS['cfg']['Order'] === 'SMART') { - $sort_order .= (preg_match( - '@time|date@i', - $fields_meta->type - )) ? 'DESC' : 'ASC'; - } else { - $sort_order .= $GLOBALS['cfg']['Order']; - } - $order_img = ''; - - } elseif ($sort_direction == 'DESC') { - - $sort_order .= ' ASC'; - $order_img = ' ' . PMA_getImage( - 's_desc.png', __('Descending'), - array('class' => "soimg$column_index", 'title' => '') - ); - - $order_img .= ' ' . PMA_getImage( - 's_asc.png', __('Ascending'), - array('class' => "soimg$column_index hide", 'title' => '') - ); - - } else { - - $sort_order .= ' DESC'; - $order_img = ' ' . PMA_getImage( - 's_asc.png', __('Ascending'), - array('class' => "soimg$column_index", 'title' => '') - ); - - $order_img .= ' ' . PMA_getImage( - 's_desc.png', __('Descending'), - array('class' => "soimg$column_index hide", 'title' => '') - ); - } - - return array($sort_order, $order_img); - -} - - -/** - * Get sort order link - * - * @param string $order_img the sort order image - * @param integer $col_index the index of the column - * @param string $direction the display direction - * @param array $fields_meta set of field properties - * @param string $order_url the url for sort - * - * @return string the sort order link - * - * @see PMA_getTableHeaders() - */ -function PMA_getSortOrderLink( - $order_img, $col_index, $direction, $fields_meta, $order_url -) { - - $order_link_params = array(); - - if (isset($order_img) && ($order_img != '')) { - if (strstr($order_img, 'asc')) { - $order_link_params['onmouseover'] = "$('.soimg$col_index').toggle()"; - $order_link_params['onmouseout'] = "$('.soimg$col_index').toggle()"; - } elseif (strstr($order_img, 'desc')) { - $order_link_params['onmouseover'] = "$('.soimg$col_index').toggle()"; - $order_link_params['onmouseout'] = "$('.soimg$col_index').toggle()"; - } - } - - if ($GLOBALS['cfg']['HeaderFlipType'] == 'auto') { - - $GLOBALS['cfg']['HeaderFlipType'] - = (PMA_USR_BROWSER_AGENT == 'IE') ? 'css' : 'fake'; - } - - if ($direction == 'horizontalflipped' - && $GLOBALS['cfg']['HeaderFlipType'] == 'css' - ) { - $order_link_params['style'] = 'direction: ltr; writing-mode: tb-rl;'; - } - - $order_link_params['title'] = __('Sort'); - - $order_link_content = (($direction == 'horizontalflipped') - && ($GLOBALS['cfg']['HeaderFlipType'] == 'fake')) - ? PMA_flipstring( - htmlspecialchars($fields_meta->name), - "
\n" - ) - : htmlspecialchars($fields_meta->name); - - return PMA_linkOrButton( - $order_url, $order_link_content . $order_img, - $order_link_params, false, true - ); - -} - - -/** - * Prepare columns to draggable effect for sortable columns - * - * @param boolean $col_visib the column is visible (false) - * array the column is not visible (string array) - * @param string $col_visib_j element of $col_visib array - * @param boolean $condition_field whether to add CSS class condition - * @param string $direction the display direction - * @param array $fields_meta set of field properties - * @param string $order_link the order link - * @param string $comments the comment for the column - * - * @return string $draggable_html html content - * - * @see PMA_getTableHeaders() - */ -function PMA_getDraggableClassForSortableColumns( - $col_visib, $col_visib_j, $condition_field, $direction, $fields_meta, - $order_link, $comments -) { - - $draggable_html = 'name) - . '">' . $order_link . $comments . ''; - - return $draggable_html; - -} - - -/** - * Prepare columns to draggable effect for non sortable columns - * - * @param boolean $col_visib the column is visible (false) - * array the column is not visible (string array) - * @param string $col_visib_j element of $col_visib array - * @param boolean $condition_field whether to add CSS class condition - * @param string $direction the display direction - * @param array $fields_meta set of field properties - * @param string $comments the comment for the column - * - * @return string $draggable_html html content - * - * @see PMA_getTableHeaders() - */ -function PMA_getDraggableClassForNonSortableColumns( - $col_visib, $col_visib_j, $condition_field, - $direction, $fields_meta, $comments -) { - - $draggable_html = 'name) . '">'; - - if (($direction == 'horizontalflipped') - && ($GLOBALS['cfg']['HeaderFlipType'] == 'fake') - ) { - - $draggable_html .= PMA_flipstring( - htmlspecialchars($fields_meta->name), '
' - ); - - } else { - $draggable_html .= htmlspecialchars($fields_meta->name); - } - - $draggable_html .= "\n" . $comments . ''; - - return $draggable_html; - -} - - -/** - * Prepares the display for a value - * - * @param string $class class of table cell - * @param bool $condition_field whether to add CSS class condition - * @param string $value value to display - * - * @return string the td - */ -function PMA_buildValueDisplay($class, $condition_field, $value) -{ - return '
'; -} - - -/** - * Prepares the display for a null value - * - * @param string $class class of table cell - * @param bool $condition_field whether to add CSS class condition - * @param object $meta the meta-information about this field - * @param string $align cell allignment - * - * @return string the td - */ -function PMA_buildNullDisplay($class, $condition_field, $meta, $align = '') -{ - // the null class is needed for grid editing - return ''; -} - - -/** - * Prepares the display for an empty value - * - * @param string $class class of table cell - * @param bool $condition_field whether to add CSS class condition - * @param object $meta the meta-information about this field - * @param string $align cell allignment - * - * @return string the td - */ -function PMA_buildEmptyDisplay($class, $condition_field, $meta, $align = '') -{ - return ''; -} - - -/** - * Adds the relavant classes. - * - * @param string $class class of table cell - * @param bool $condition_field whether to add CSS class condition - * @param object $meta the meta-information about this field - * @param string $nowrap avoid wrapping - * @param bool $is_field_truncated is field truncated (display ...) - * @param string $transform_function transformation function - * @param string $default_function default transformation function - * - * @return string the list of classes - */ -function PMA_addClass($class, $condition_field, $meta, $nowrap, - $is_field_truncated = false, $transform_function = '', $default_function = '' -) { - - // Define classes to be added to this data field based on the type of data - $enum_class = ''; - if (strpos($meta->flags, 'enum') !== false) { - $enum_class = ' enum'; - } - - $set_class = ''; - if (strpos($meta->flags, 'set') !== false) { - $set_class = ' set'; - } - - $bit_class = ''; - if (strpos($meta->type, 'bit') !== false) { - $bit_class = ' bit'; - } - - $mime_type_class = ''; - if (isset($meta->mimetype)) { - $mime_type_class = ' ' . preg_replace('/\//', '_', $meta->mimetype); - } - - return $class . ($condition_field ? ' condition' : '') . $nowrap - . ' ' . ($is_field_truncated ? ' truncated' : '') - . ($transform_function != $default_function ? ' transformed' : '') - . $enum_class . $set_class . $bit_class . $mime_type_class; - -} - - -/** - * Prepare the body of the results table - * - * @param integer &$dt_result the link id associated to the query - * which results have to be displayed - * @param array &$is_display which elements to display - * @param array $map the list of relations - * @param array $analyzed_sql the analyzed query - * - * @return string $table_body_html html content - * - * @global string $db the database name - * @global string $table the table name - * @global string $goto the URL to go back in case of errors - * @global string $sql_query the SQL query - * @global array $fields_meta the list of fields properties - * @global integer $fields_cnt the total number of fields returned by - * the SQL query - * @global array $vertical_display informations used with vertical display - * mode - * @global array $highlight_columns column names to highlight - * @global array $row current row data - * - * @access private - * - * @see PMA_getTable() - */ -function PMA_getTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) -{ - - global $db, $table, $goto; - global $sql_query, $fields_meta, $fields_cnt; - global $vertical_display, $highlight_columns; - global $row; // mostly because of browser transformations, - // to make the row-data accessible in a plugin - - $table_body_html = ''; - - // query without conditions to shorten URLs when needed, 200 is just - // guess, it should depend on remaining URL length - $url_sql_query = PMA_getUrlSqlQuery($analyzed_sql, $sql_query); - - if (! is_array($map)) { - $map = array(); - } - - $row_no = 0; - $vertical_display['edit'] = array(); - $vertical_display['copy'] = array(); - $vertical_display['delete'] = array(); - $vertical_display['data'] = array(); - $vertical_display['row_delete'] = array(); - // name of the class added to all grid editable elements - $grid_edit_class = 'grid_edit'; - - // prepare to get the column order, if available - list($col_order, $col_visib) = PMA_getColumnParams(); - - // Correction University of Virginia 19991216 in the while below - // Previous code assumed that all tables have keys, specifically that - // the phpMyAdmin GUI should support row delete/edit only for such - // tables. - // Although always using keys is arguably the prescribed way of - // defining a relational table, it is not required. This will in - // particular be violated by the novice. - // We want to encourage phpMyAdmin usage by such novices. So the code - // below has been changed to conditionally work as before when the - // table being displayed has one or more keys; but to display - // delete/edit options correctly for tables without keys. - - $odd_row = true; - $directionCondition - = ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal') - || ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped'); - - while ($row = PMA_DBI_fetch_row($dt_result)) { - - // "vertical display" mode stuff - $table_body_html .= PMA_getVerticalDisplaySupportSegments( - $vertical_display, $row_no, $directionCondition - ); - - $alternating_color_class = ($odd_row ? 'odd' : 'even'); - $odd_row = ! $odd_row; - - if ($directionCondition) { - // pointer code part - $table_body_html .= ''; - } - - // 1. Prepares the row - // 1.1 Results from a "SELECT" statement -> builds the - // WHERE clause to use in links (a unique key if possible) - /** - * @todo $where_clause could be empty, for example a table - * with only one field and it's a BLOB; in this case, - * avoid to display the delete and edit links - */ - list($where_clause, $clause_is_unique, $condition_array) - = PMA_getUniqueCondition($dt_result, $fields_cnt, $fields_meta, $row); - $where_clause_html = urlencode($where_clause); - - // 1.2 Defines the URLs for the modify/delete link(s) - - if (($is_display['edit_lnk'] != 'nn') || ($is_display['del_lnk'] != 'nn')) { - // We need to copy the value - // or else the == 'both' check will always return true - - if ($GLOBALS['cfg']['PropertiesIconic'] === 'both') { - $iconic_spacer = '
'; - } else { - $iconic_spacer = ''; - } - - // 1.2.1 Modify link(s) - if ($is_display['edit_lnk'] == 'ur') { // update row case - - list($edit_url, $copy_url, $edit_str, $copy_str, $edit_anchor_class) - = PMA_getModifiedLinks( - $db, $table, $where_clause, - $clause_is_unique, $url_sql_query - ); - - } // end if (1.2.1) - - // 1.2.2 Delete/Kill link(s) - if (($is_display['del_lnk'] == 'dr') - || ($is_display['del_lnk'] == 'kp') - ) { - - list($del_query, $del_url, $del_str, $js_conf) - = PMA_getDeleteAndKillLinks( - $db, $table, $where_clause, $clause_is_unique, - $url_sql_query, $goto, $is_display['del_lnk'] - ); - - } // end if (1.2.2) - - // 1.3 Displays the links at left if required - if ((($GLOBALS['cfg']['RowActionLinks'] == 'left') - || ($GLOBALS['cfg']['RowActionLinks'] == 'both')) - && $directionCondition - ) { - - $table_body_html .= PMA_getPlacedLinks( - 'left', $del_url, $is_display, $row_no, $where_clause, - $where_clause_html, $condition_array, $del_query, 'l', - $edit_url, $copy_url, $edit_anchor_class, $edit_str, - $copy_str, $del_str, $js_conf - ); - - } elseif (($GLOBALS['cfg']['RowActionLinks'] == 'none') - && $directionCondition - ) { - - $table_body_html .= PMA_getPlacedLinks( - 'none', $del_url, $is_display, $row_no, $where_clause, - $where_clause_html, $condition_array, $del_query, 'l', - $edit_url, $copy_url, $edit_anchor_class, $edit_str, - $copy_str, $del_str, $js_conf - ); - - } // end if (1.3) - } // end if (1) - - // 2. Displays the rows' values - - for ($j = 0; $j < $fields_cnt; ++$j) { - - // assign $i with appropriate column order - $i = $col_order ? $col_order[$j] : $j; - - $meta = $fields_meta[$i]; - $not_null_class = $meta->not_null ? 'not_null' : ''; - $relation_class = isset($map[$meta->name]) ? 'relation' : ''; - $hide_class = ($col_visib && !$col_visib[$j] - // hide per
'; - } // end if - - // 4. Gather links of del_urls and edit_urls in an array for later - // output - if (! isset($vertical_display['edit'][$row_no])) { - $vertical_display['edit'][$row_no] = ''; - $vertical_display['copy'][$row_no] = ''; - $vertical_display['delete'][$row_no] = ''; - $vertical_display['row_delete'][$row_no] = ''; - } - - $vertical_class = ' row_' . $row_no; - if ($GLOBALS['cfg']['BrowsePointerEnable'] == true) { - $vertical_class .= ' vpointer'; - } - - if ($GLOBALS['cfg']['BrowseMarkerEnable'] == true) { - $vertical_class .= ' vmarker'; - } - - if (!empty($del_url) && ($is_display['del_lnk'] != 'kp')) { - - $vertical_display['row_delete'][$row_no] - .= PMA_getCheckboxForMultiRowSubmissions( - $del_url, $is_display, $row_no, $where_clause_html, - $condition_array, $del_query, '[%_PMA_CHECKBOX_DIR_%]', - $alternating_color_class . $vertical_class - ); - - } else { - unset($vertical_display['row_delete'][$row_no]); - } - - if (isset($edit_url)) { - - $vertical_display['edit'][$row_no] .= PMA_getEditLink( - $edit_url, - $alternating_color_class . ' ' . $edit_anchor_class - . $vertical_class, $edit_str, - $where_clause, - $where_clause_html - ); - - } else { - unset($vertical_display['edit'][$row_no]); - } - - if (isset($copy_url)) { - - $vertical_display['copy'][$row_no] .= PMA_getCopyLink( - $copy_url, $copy_str, $where_clause, $where_clause_html, - $alternating_color_class . $vertical_class - ); - - } else { - unset($vertical_display['copy'][$row_no]); - } - - if (isset($del_url)) { - - if (! isset($js_conf)) { - $js_conf = ''; - } - - $vertical_display['delete'][$row_no] .= PMA_getDeleteLink( - $del_url, $del_str, $js_conf, - $alternating_color_class . $vertical_class - ); - - } else { - unset($vertical_display['delete'][$row_no]); - } - - $table_body_html .= $directionCondition ? "\n" : ''; - $row_no++; - - } // end while - - return $table_body_html; - -} // end of the 'PMA_getTableBody()' function - - -/** - * Get url sql query without conditions to shorten URLs - * - * @param array $analyzed_sql analyzed query - * @param string $sql_query the SQL query - * - * @return string $url_sql analyzed sql query - * - * @see PMA_getTableBody() - */ -function PMA_getUrlSqlQuery($analyzed_sql, $sql_query) -{ - - if (isset($analyzed_sql) - && isset($analyzed_sql[0]) - && isset($analyzed_sql[0]['querytype']) - && ($analyzed_sql[0]['querytype'] == 'SELECT') - && (strlen($sql_query) > 200) - ) { - - $url_sql_query = 'SELECT '; - if (isset($analyzed_sql[0]['queryflags']['distinct'])) { - $url_sql_query .= ' DISTINCT '; - } - - $url_sql_query .= $analyzed_sql[0]['select_expr_clause']; - if (!empty($analyzed_sql[0]['from_clause'])) { - $url_sql_query .= ' FROM ' . $analyzed_sql[0]['from_clause']; - } - - return $url_sql_query; - } - - return $sql_query; - -} - - -/** - * Get column order and column visibility - * - * @return array 2 element array - $col_order, $col_visib - * - * @see PMA_getTableBody() - */ -function PMA_getColumnParams() -{ - if (PMA_isSelect()) { - $pmatable = new PMA_Table($GLOBALS['table'], $GLOBALS['db']); - $col_order = $pmatable->getUiProp(PMA_Table::PROP_COLUMN_ORDER); - $col_visib = $pmatable->getUiProp(PMA_Table::PROP_COLUMN_VISIB); - } else { - $col_order = false; - $col_visib = false; - } - - return array($col_order, $col_visib); -} - - -/** - * Prepare vertical display mode necessay HTML stuff - * - * @param array $vertical_display informations used with vertical - * display mode - * @param integer $row_no the index of current row - * @param boolean $directionCondition the directional condition - * - * @return string $vertical_disp_html html content - * - * @see PMA_getTableBody() - */ -function PMA_getVerticalDisplaySupportSegments( - $vertical_display, $row_no, $directionCondition -) { - - $support_html = ''; - - if ((($row_no != 0) && ($_SESSION['tmp_user_values']['repeat_cells'] != 0)) - && !($row_no % $_SESSION['tmp_user_values']['repeat_cells']) - && $directionCondition - ) { - - $support_html .= '' . "\n"; - - if ($vertical_display['emptypre'] > 0) { - - $support_html .= ' ' . "\n"; - - } else if ($GLOBALS['cfg']['RowActionLinks'] == 'none') { - $support_html .= ' ' . "\n"; - } - - foreach ($vertical_display['desc'] as $val) { - $support_html .= $val; - } - - if ($vertical_display['emptyafter'] > 0) { - $support_html .= ' ' . "\n"; - } - $support_html .= '' . "\n"; - } // end if - - return $support_html; - -} - - -/** - * Get modified links - * - * @param string $db the database name - * @param string $table the table name - * @param string $where_clause the where clause of the sql - * @param boolean $clause_is_unique the unique condition of clause - * @param string $url_sql_query the analyzed sql query - * - * @return array 5 element array - $edit_url, $copy_url, - * $edit_str, $copy_str, $edit_anchor_class - * - * @see PMA_getTableBody() - */ -function PMA_getModifiedLinks( - $db, $table, $where_clause, $clause_is_unique, $url_sql_query -) { - - $_url_params = array( - 'db' => $db, - 'table' => $table, - 'where_clause' => $where_clause, - 'clause_is_unique' => $clause_is_unique, - 'sql_query' => $url_sql_query, - 'goto' => 'sql.php', - ); - - $edit_url = 'tbl_change.php' - . PMA_generate_common_url( - $_url_params + array('default_action' => 'update') - ); - - $copy_url = 'tbl_change.php' - . PMA_generate_common_url( - $_url_params + array('default_action' => 'insert') - ); - - $edit_str = PMA_getIcon('b_edit.png', __('Edit')); - $copy_str = PMA_getIcon('b_insrow.png', __('Copy')); - - // Class definitions required for grid editing jQuery scripts - $edit_anchor_class = "edit_row_anchor"; - if ( $clause_is_unique == 0) { - $edit_anchor_class .= ' nonunique'; - } - - return array($edit_url, $copy_url, $edit_str, $copy_str, $edit_anchor_class); - -} - - -/** - * Get delete and kill links - * - * @param string $db the database name - * @param string $table the table name - * @param string $where_clause the where clause of the sql - * @param boolean $clause_is_unique the unique condition of clause - * @param string $url_sql_query the analyzed sql query - * @param string $goto the URL to go back in case of errors - * @param string $del_lnk the delete link of current row - * - * @return array 4 element array - $del_query, - * $del_url, $del_str, $js_conf - * - * @see PMA_getTableBody() - */ -function PMA_getDeleteAndKillLinks( - $db, $table, $where_clause, $clause_is_unique, $url_sql_query, $goto, $del_lnk -) { - - if ($del_lnk == 'dr') { // delete row case - - $_url_params = array( - 'db' => $db, - 'table' => $table, - 'sql_query' => $url_sql_query, - 'message_to_show' => __('The row has been deleted'), - 'goto' => (empty($goto) ? 'tbl_sql.php' : $goto), - ); - - $lnk_goto = 'sql.php' . PMA_generate_common_url($_url_params, 'text'); - - $del_query = 'DELETE FROM ' . PMA_backquote($db) . '.' - . PMA_backquote($table) - . ' WHERE ' . $where_clause . - ($clause_is_unique ? '' : ' LIMIT 1'); - - $_url_params = array( - 'db' => $db, - 'table' => $table, - 'sql_query' => $del_query, - 'message_to_show' => __('The row has been deleted'), - 'goto' => $lnk_goto, - ); - $del_url = 'sql.php' . PMA_generate_common_url($_url_params); - - $js_conf = 'DELETE FROM ' . PMA_jsFormat($db) . '.' - . PMA_jsFormat($table) - . ' WHERE ' . PMA_jsFormat($where_clause, false) - . ($clause_is_unique ? '' : ' LIMIT 1'); - - $del_str = PMA_getIcon('b_drop.png', __('Delete')); - - } elseif ($del_lnk == 'kp') { // kill process case - - $_url_params = array( - 'db' => $db, - 'table' => $table, - 'sql_query' => $url_sql_query, - 'goto' => 'main.php', - ); - - $lnk_goto = 'sql.php' - . PMA_generate_common_url( - $_url_params, 'text' - ); - - $_url_params = array( - 'db' => 'mysql', - 'sql_query' => 'KILL ' . $row[0], - 'goto' => $lnk_goto, - ); - - $del_url = 'sql.php' . PMA_generate_common_url($_url_params); - $del_query = 'KILL ' . $row[0]; - $js_conf = 'KILL ' . $row[0]; - $del_str = PMA_getIcon('b_drop.png', __('Kill')); - } - - return array($del_query, $del_url, $del_str, $js_conf); - -} - - -/** - * Prepare placed links - * - * @param string $dir the direction of links should place - * @param string $del_url the url for delete row - * @param array $is_display which elements to display - * @param integer $row_no the index of current row - * @param string $where_clause the where clause of the sql - * @param string $where_clause_html the html encoded where clause - * @param array $condition_array array of keys (primary, unique, condition) - * @param string $del_query the query for delete row - * @param string $dir_letter the letter denoted the direction - * @param string $edit_url the url for edit row - * @param string $copy_url the url for copy row - * @param string $edit_anchor_class the class for html element for edit - * @param string $edit_str the label for edit row - * @param string $copy_str the label for copy row - * @param string $del_str the label for delete row - * @param string $js_conf text for the JS confirmation - * - * @return string html content - * - * @see PMA_getTableBody() - */ -function PMA_getPlacedLinks( - $dir, $del_url, $is_display, $row_no, $where_clause, $where_clause_html, - $condition_array, $del_query, $dir_letter, $edit_url, $copy_url, - $edit_anchor_class, $edit_str, $copy_str, $del_str, $js_conf -) { - - if (! isset($js_conf)) { - $js_conf = ''; - } - - return PMA_getCheckboxAndLinks( - $dir, $del_url, $is_display, - $row_no, $where_clause, $where_clause_html, $condition_array, - $del_query, 'l', $edit_url, $copy_url, $edit_anchor_class, - $edit_str, $copy_str, $del_str, $js_conf - ); - -} - - -/** - * Get resetted class for inline edit columns - * - * @param string $grid_edit_class the class for all editable columns - * @param string $not_null_class the class for not null columns - * @param string $relation_class the class for relations in a column - * @param string $hide_class the class for visibility of a column - * @param string $field_type_class the class related to type of the field - * @param integer $row_no the row index - * - * @return string $class the resetted class - * - * @see PMA_getTableBody() - */ -function PMA_getResettedClassForInlineEdit( - $grid_edit_class, $not_null_class, $relation_class, - $hide_class, $field_type_class, $row_no -) { - - $class = 'data ' . $grid_edit_class . ' ' . $not_null_class . ' ' - . $relation_class . ' ' . $hide_class . ' ' . $field_type_class; - - if (($_SESSION['tmp_user_values']['disp_direction'] == 'vertical') - && (! isset($GLOBALS['printview']) || ($GLOBALS['printview'] != '1')) - ) { - // the row number corresponds to a data row, not HTML table row - $class .= ' row_' . $row_no; - if ($GLOBALS['cfg']['BrowsePointerEnable'] == true) { - $class .= ' vpointer'; - } - - if ($GLOBALS['cfg']['BrowseMarkerEnable'] == true) { - $class .= ' vmarker'; - } - } - - return $class; - -} - - -/** - * Get class for datetime related fields - * - * @param string $type the type of the column field - * - * @return string $field_type_class the class for the column - * - * @see PMA_getTableBody() - */ -function PMA_getClassForDateTimeRelatedFields($type) -{ - if ((substr($type, 0, 9) == 'timestamp') || ($type == 'datetime')) { - $field_type_class = 'datetimefield'; - } else if ($type == 'date') { - $field_type_class = 'datefield'; - } else { - $field_type_class = ''; - } - return $field_type_class; -} - - -/** - * Prepare data cell for numeric type fields - * - * @param string $column the relavent column in data row - * @param string $class the html class for column - * @param boolean $condition_field the column should highlighted or not - * @param object $meta the meta-information about this field - * @param array $map the list of relations - * @param boolean $is_field_truncated the condition for blob data replacements - * @param array $analyzed_sql the analyzed query - * @param string $transform_function the name of transformation function - * @param string $default_function the default transformation function - * @param string $transform_options the transformation parameters - * - * @return string $cell the prepared cell, html content - * - * @see PMA_getTableBody() - */ -function PMA_getDataCellForNumericFeilds( - $column, $class, $condition_field, $meta, $map, $is_field_truncated, - $analyzed_sql, $transform_function, $default_function, $transform_options -) { - - if (! isset($column) || is_null($column)) { - - $cell = PMA_buildNullDisplay( - 'right '.$class, $condition_field, $meta, '' - ); - - } elseif ($column != '') { - - $nowrap = ' nowrap'; - $where_comparison = ' = ' . $column; - - $cell = PMA_getRowData( - 'right '.$class, $condition_field, - $analyzed_sql, $meta, $map, $column, - $transform_function, $default_function, $nowrap, - $where_comparison, $transform_options, - $is_field_truncated - ); - } else { - - $cell = PMA_buildEmptyDisplay( - 'right '.$class, $condition_field, $meta, '' - ); - } - - return $cell; - -} - - -/** - * Get data cell for blob type fields - * - * @param string $column the relavent column in data row - * @param string $class the html class for column - * @param object $meta the meta-information about this field - * @param array $_url_params the parameters for generate url - * @param string $field_flags field flags for column(blob, primary etc) - * @param string $transform_function the name of transformation function - * @param string $default_function the default transformation function - * @param string $transform_options the transformation parameters - * @param boolean $condition_field the column should highlighted or not - * @param boolean $is_field_truncated the condition for blob data replacements - * - * @return string $cell the prepared cell, html content - * - * @see PMA_getTableBody() - */ -function PMA_getDataCellForBlobField( - $column, $class, $meta, $_url_params, $field_flags, $transform_function, - $default_function, $transform_options, $condition_field, $is_field_truncated -) { - - if (stristr($field_flags, 'BINARY')) { - - // remove 'grid_edit' from $class as we can't edit binary data. - $class = str_replace('grid_edit', '', $class); - - if (! isset($column) || is_null($column)) { - - $cell = PMA_buildNullDisplay($class, $condition_field, $meta); - - } else { - - $blobtext = PMA_handleNonPrintableContents( - 'BLOB', (isset($column) ? $column : ''), - $transform_function, $transform_options, - $default_function, $meta, $_url_params - ); - - $cell = PMA_buildValueDisplay( - $class, $condition_field, $blobtext - ); - unset($blobtext); - } - } else { - // not binary: - - if (! isset($column) || is_null($column)) { - - $cell = PMA_buildNullDisplay($class, $condition_field, $meta); - - } elseif ($column != '') { - - // if a transform function for blob is set, none of these - // replacements will be made - if ((PMA_strlen($column) > $GLOBALS['cfg']['LimitChars']) - && ($_SESSION['tmp_user_values']['display_text'] == 'P') - ) { - $column = PMA_substr($column, 0, $GLOBALS['cfg']['LimitChars']) - . '...'; - $is_field_truncated = true; - } - - // displays all space characters, 4 space - // characters for tabulations and / - $column = ($default_function != $transform_function) - ? $transform_function($column, $transform_options, $meta) - : $default_function($column, array(), $meta); - - if ($is_field_truncated) { - $class .= ' truncated'; - } - - $cell = PMA_buildValueDisplay($class, $condition_field, $column); - - } else { - $cell = PMA_buildEmptyDisplay($class, $condition_field, $meta); - } - } - - return $cell; - -} - - -/** - * Get data cell for geometry type fields - * - * @param string $column the relavent column in data row - * @param string $class the html class for column - * @param object $meta the meta-information about this field - * @param array $map the list of relations - * @param array $_url_params the parameters for generate url - * @param boolean $condition_field the column should highlighted or not - * @param string $transform_function the name of transformation function - * @param string $default_function the default transformation function - * @param string $transform_options the transformation parameters - * @param boolean $is_field_truncated the condition for blob data replacements - * @param array $analyzed_sql the analyzed query - * - * @return string $cell the prepared data cell, html content - * - * @see PMA_getTableBody() - */ -function PMA_getDataCellForGeometryFields( - $column, $class, $meta, $map, $_url_params, $condition_field, - $transform_function, $default_function, $transform_options, - $is_field_truncated, $analyzed_sql -) { - - if (! isset($column) || is_null($column)) { - - $cell = PMA_buildNullDisplay($class, $condition_field, $meta); - - } elseif ($column != '') { - - // Display as [GEOMETRY - (size)] - if ($_SESSION['tmp_user_values']['geometry_display'] == 'GEOM') { - - $geometry_text = PMA_handleNonPrintableContents( - 'GEOMETRY', (isset($column) ? $column : ''), - $transform_function, $transform_options, - $default_function, $meta - ); - - $cell = PMA_buildValueDisplay( - $class, $condition_field, $geometry_text - ); - - } elseif ($_SESSION['tmp_user_values']['geometry_display'] == 'WKT') { - // Prepare in Well Known Text(WKT) format. - - $where_comparison = ' = ' . $column; - - // Convert to WKT format - $wktval = PMA_asWKT($column); - - if ((PMA_strlen($wktval) > $GLOBALS['cfg']['LimitChars']) - && ($_SESSION['tmp_user_values']['display_text'] == 'P') - ) { - $wktval = PMA_substr($wktval, 0, $GLOBALS['cfg']['LimitChars']) - . '...'; - $is_field_truncated = true; - } - - $cell = PMA_getRowData( - $class, $condition_field, $analyzed_sql, $meta, $map, - $wktval, $transform_function, $default_function, '', - $where_comparison, $transform_options, - $is_field_truncated - ); - - } else { - // Prepare in Well Known Binary(WKB) format. - - if ($_SESSION['tmp_user_values']['display_binary']) { - - $where_comparison = ' = ' . $column; - - if ($_SESSION['tmp_user_values']['display_binary_as_hex'] - && PMA_containsNonPrintableAscii($column) - ) { - $wkbval = PMA_substr(bin2hex($column), 8); - } else { - $wkbval = htmlspecialchars( - PMA_replaceBinaryContents($column) - ); - } - - if ((PMA_strlen($wkbval) > $GLOBALS['cfg']['LimitChars']) - && ($_SESSION['tmp_user_values']['display_text'] == 'P') - ) { - $wkbval = PMA_substr($wkbval, 0, $GLOBALS['cfg']['LimitChars']) - . '...'; - $is_field_truncated = true; - } - - $cell = PMA_getRowData( - $class, $condition_field, - $analyzed_sql, $meta, $map, $wkbval, - $transform_function, $default_function, '', - $where_comparison, $transform_options, - $is_field_truncated - ); - - } else { - $wkbval = PMA_handleNonPrintableContents( - 'BINARY', $column, $transform_function, - $transform_options, $default_function, $meta, - $_url_params - ); - - $cell = PMA_buildValueDisplay($class, $condition_field, $wkbval); - } - } - } else { - $cell = PMA_buildEmptyDisplay($class, $condition_field, $meta); - } - - return $cell; - -} - - -/** - * Get data cell for non numeric and non blob type fields - * - * @param string $column the relavent column in data row - * @param string $class the html class for column - * @param object $meta the meta-information about this field - * @param array $map the list of relations - * @param array $_url_params the parameters for generate url - * @param boolean $condition_field the column should highlighted or not - * @param string $transform_function the name of transformation function - * @param string $default_function the default transformation function - * @param string $transform_options the transformation parameters - * @param boolean $is_field_truncated the condition for blob data replacements - * @param array $analyzed_sql the analyzed query - * @param integer &$dt_result the link id associated to the query - * which results have to be displayed - * @param integer $col_index the column index - * - * @return string $cell the prepared data cell, html content - * - * @see PMA_getTableBody() - */ -function PMA_getDataCellForNonNumericAndNonBlobFields( - $column, $class, $meta, $map, $_url_params, $condition_field, - $transform_function, $default_function, $transform_options, - $is_field_truncated, $analyzed_sql, &$dt_result, $col_index -) { - - if (! isset($column) || is_null($column)) { - - $cell = PMA_buildNullDisplay($class, $condition_field, $meta); - - } elseif ($column != '') { - - // Cut all fields to $GLOBALS['cfg']['LimitChars'] - // (unless it's a link-type transformation) - if (PMA_strlen($column) > $GLOBALS['cfg']['LimitChars'] - && ($_SESSION['tmp_user_values']['display_text'] == 'P') - && !strpos($transform_function, 'link') === true - ) { - $column = PMA_substr($column, 0, $GLOBALS['cfg']['LimitChars']) - . '...'; - $is_field_truncated = true; - } - - // displays special characters from binaries - $field_flags = PMA_DBI_field_flags($dt_result, $col_index); - $formatted = false; - - if (isset($meta->_type) && $meta->_type === MYSQLI_TYPE_BIT) { - - $column = PMA_printableBitValue( - $column, $meta->length - ); - - // some results of PROCEDURE ANALYSE() are reported as - // being BINARY but they are quite readable, - // so don't treat them as BINARY - } elseif (stristr($field_flags, 'BINARY') - && ($meta->type == 'string') - && !(isset($GLOBALS['is_analyse']) && $GLOBALS['is_analyse']) - ) { - - if ($_SESSION['tmp_user_values']['display_binary']) { - - // user asked to see the real contents of BINARY - // fields - if ($_SESSION['tmp_user_values']['display_binary_as_hex'] - && PMA_containsNonPrintableAscii($column) - ) { - $column = bin2hex($column); - } else { - $column = htmlspecialchars( - PMA_replaceBinaryContents($column) - ); - } - - } else { - // we show the BINARY message and field's size - // (or maybe use a transformation) - $column = PMA_handleNonPrintableContents( - 'BINARY', $column, $transform_function, - $transform_options, $default_function, - $meta, $_url_params - ); - $formatted = true; - } - } - - if ($formatted) { - - $cell = PMA_buildValueDisplay( - $class, $condition_field, $column - ); - - } else { - - // transform functions may enable no-wrapping: - $function_nowrap = $transform_function . '_nowrap'; - - $bool_nowrap = (($default_function != $transform_function) - && function_exists($function_nowrap)) - ? $function_nowrap($transform_options) - : false; - - // do not wrap if date field type - $nowrap = (preg_match('@DATE|TIME@i', $meta->type) - || $bool_nowrap) ? ' nowrap' : ''; - - $where_comparison = ' = \'' . PMA_sqlAddSlashes($column) - . '\''; - - $cell = PMA_getRowData( - $class, $condition_field, - $analyzed_sql, $meta, $map, $column, - $transform_function, $default_function, $nowrap, - $where_comparison, $transform_options, - $is_field_truncated - ); - } - - } else { - $cell = PMA_buildEmptyDisplay($class, $condition_field, $meta); - } - - return $cell; - -} - - -/** - * Get the resulted table with the vertical direction mode. - * - * @return string html content - * - * @global array $vertical_display the information to display - * - * @access private - * - * @see PMA_getTable() - */ -function PMA_getVerticalTable() -{ - - global $vertical_display; - - $vertical_table_html = ''; - - // Prepares "multi row delete" link at top if required - if (($GLOBALS['cfg']['RowActionLinks'] != 'right') - && is_array($vertical_display['row_delete']) - && ((count($vertical_display['row_delete']) > 0) - || !empty($vertical_display['textbtn'])) - ) { - - $vertical_table_html .= '' . "\n"; - if ($GLOBALS['cfg']['RowActionLinks'] == 'none') { - // if we are not showing the RowActionLinks, then we need to show - // the Multi-Row-Action checkboxes - $vertical_table_html .= '' . "\n"; - } - - $vertical_table_html .= $vertical_display['textbtn'] - . PMA_getCheckBoxesForMultipleRowOperations( - $vertical_display, '_left' - ) - . '' . "\n"; - } // end if - - // Prepares "edit" link at top if required - if ((($GLOBALS['cfg']['RowActionLinks'] == 'left') - || ($GLOBALS['cfg']['RowActionLinks'] == 'both')) - && is_array($vertical_display['edit']) - && ((count($vertical_display['edit']) > 0) - || !empty($vertical_display['textbtn'])) - ) { - $vertical_table_html .= PMA_getOperationLinksForVerticleTable( - $vertical_display, 'edit' - ); - } // end if - - // Prepares "copy" link at top if required - if ((($GLOBALS['cfg']['RowActionLinks'] == 'left') - || ($GLOBALS['cfg']['RowActionLinks'] == 'both')) - && is_array($vertical_display['copy']) - && ((count($vertical_display['copy']) > 0) - || !empty($vertical_display['textbtn'])) - ) { - $vertical_table_html .= PMA_getOperationLinksForVerticleTable( - $vertical_display, 'copy' - ); - } // end if - - // Prepares "delete" link at top if required - if ((($GLOBALS['cfg']['RowActionLinks'] == 'left') - || ($GLOBALS['cfg']['RowActionLinks'] == 'both')) - && is_array($vertical_display['delete']) - && ((count($vertical_display['delete']) > 0) - || !empty($vertical_display['textbtn'])) - ) { - $vertical_table_html .= PMA_getOperationLinksForVerticleTable( - $vertical_display, 'delete' - ); - } // end if - - list($col_order, $col_visib) = PMA_getColumnParams(); - - // Prepares data - foreach ($vertical_display['desc'] AS $j => $val) { - - // assign appropriate key with current column order - $key = $col_order ? $col_order[$j] : $j; - - $vertical_table_html .= '' . "\n" - . $val; - - $cell_displayed = 0; - foreach ($vertical_display['rowdata'][$key] as $subval) { - - if (($cell_displayed != 0) - && ($_SESSION['tmp_user_values']['repeat_cells'] != 0) - && !($cell_displayed % $_SESSION['tmp_user_values']['repeat_cells']) - ) { - $vertical_table_html .= $val; - } - - $vertical_table_html .= $subval; - $cell_displayed++; - - } // end while - - $vertical_table_html .= '' . "\n"; - } // end while - - // Prepares "multi row delete" link at bottom if required - if ((($GLOBALS['cfg']['RowActionLinks'] == 'right') - || ($GLOBALS['cfg']['RowActionLinks'] == 'both')) - && is_array($vertical_display['row_delete']) - && ((count($vertical_display['row_delete']) > 0) - || !empty($vertical_display['textbtn'])) - ) { - - $vertical_table_html .= '' . "\n" . $vertical_display['textbtn'] - . PMA_getCheckBoxesForMultipleRowOperations( - $vertical_display, '_right' - ) - . '' . "\n"; - } // end if - - // Prepares "edit" link at bottom if required - if ((($GLOBALS['cfg']['RowActionLinks'] == 'right') - || ($GLOBALS['cfg']['RowActionLinks'] == 'both')) - && is_array($vertical_display['edit']) - && ((count($vertical_display['edit']) > 0) - || !empty($vertical_display['textbtn'])) - ) { - $vertical_table_html .= PMA_getOperationLinksForVerticleTable( - $vertical_display, 'edit' - ); - } // end if - - // Prepares "copy" link at bottom if required - if ((($GLOBALS['cfg']['RowActionLinks'] == 'right') - || ($GLOBALS['cfg']['RowActionLinks'] == 'both')) - && is_array($vertical_display['copy']) - && ((count($vertical_display['copy']) > 0) - || !empty($vertical_display['textbtn'])) - ) { - $vertical_table_html .= PMA_getOperationLinksForVerticleTable( - $vertical_display, 'copy' - ); - } // end if - - // Prepares "delete" link at bottom if required - if ((($GLOBALS['cfg']['RowActionLinks'] == 'right') - || ($GLOBALS['cfg']['RowActionLinks'] == 'both')) - && is_array($vertical_display['delete']) - && ((count($vertical_display['delete']) > 0) - || !empty($vertical_display['textbtn'])) - ) { - $vertical_table_html .= PMA_getOperationLinksForVerticleTable( - $vertical_display, 'delete' - ); - } - - return $vertical_table_html; - -} // end of the 'PMA_getVerticalTable' function - - -/** - * Prepare edit, copy and delete links for verticle table - * - * @param array $vertical_display the information to display - * @param string $operation edit/copy/delete - * - * @return string $links_html html content - * - * @see PMA_getVerticalTable() - */ -function PMA_getOperationLinksForVerticleTable($vertical_display, $operation) -{ - - $link_html = '' . "\n"; - - if (! is_array($vertical_display['row_delete'])) { - - if (($operation == 'edit') || ($operation == 'copy')) { - $link_html .= $vertical_display['textbtn']; - - } elseif ($operation == 'delete') { - - if (! is_array($vertical_display['edit'])) { - $link_html .= $vertical_display['textbtn']; - } - } - } - - foreach ($vertical_display[$operation] as $val) { - $link_html .= $val; - } // end while - - $link_html .= '' . "\n"; - - return $link_html; - -} - - -/** - * Get checkboxes for multiple row data operations - * - * @param array $vertical_display the information to display - * @param string $dir _left / _right - * - * @return $checkBoxes_html html content - * - * @see PMA_getVerticalTable() - */ -function PMA_getCheckBoxesForMultipleRowOperations($vertical_display, $dir) -{ - - $checkBoxes_html = ''; - $cell_displayed = 0; - - foreach ($vertical_display['row_delete'] as $val) { - - if (($cell_displayed != 0) - && ($_SESSION['tmp_user_values']['repeat_cells'] != 0) - && !($cell_displayed % $_SESSION['tmp_user_values']['repeat_cells']) - ) { - - $checkBoxes_html .= '' . "\n"; - - } - - $checkBoxes_html .= str_replace('[%_PMA_CHECKBOX_DIR_%]', $dir, $val); - $cell_displayed++; - } // end while - - return $checkBoxes_html; - -} - - -/** - * Checks the posted options for viewing query resutls - * and sets appropriate values in the session. - * - * @todo make maximum remembered queries configurable - * @todo move/split into SQL class!? - * @todo currently this is called twice unnecessary - * @todo ignore LIMIT and ORDER in query!? - * - * @return void - */ -function PMA_setConfigParamsForDisplayTable() -{ - - $sql_md5 = md5($GLOBALS['sql_query']); - - $_SESSION['tmp_user_values']['query'][$sql_md5]['sql'] = $GLOBALS['sql_query']; - - $valid_disp_dir = PMA_isValid( - $_REQUEST['disp_direction'], - array('horizontal', 'vertical', 'horizontalflipped') - ); - - if ($valid_disp_dir) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['disp_direction'] - = $_REQUEST['disp_direction']; - unset($_REQUEST['disp_direction']); - } elseif ( - empty($_SESSION['tmp_user_values']['query'][$sql_md5]['disp_direction']) - ) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['disp_direction'] - = $GLOBALS['cfg']['DefaultDisplay']; - } - - if (PMA_isValid($_REQUEST['repeat_cells'], 'numeric')) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['repeat_cells'] - = $_REQUEST['repeat_cells']; - unset($_REQUEST['repeat_cells']); - } elseif ( - empty($_SESSION['tmp_user_values']['query'][$sql_md5]['repeat_cells']) - ) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['repeat_cells'] - = $GLOBALS['cfg']['RepeatCells']; - } - - // as this is a form value, the type is always string so we cannot - // use PMA_isValid($_REQUEST['session_max_rows'], 'integer') - if ((PMA_isValid($_REQUEST['session_max_rows'], 'numeric') - && ((int) $_REQUEST['session_max_rows'] == $_REQUEST['session_max_rows'])) - || ($_REQUEST['session_max_rows'] == 'all') - ) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows'] - = $_REQUEST['session_max_rows']; - unset($_REQUEST['session_max_rows']); - } elseif (empty($_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows'])) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows'] - = $GLOBALS['cfg']['MaxRows']; - } - - if (PMA_isValid($_REQUEST['pos'], 'numeric')) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['pos'] = $_REQUEST['pos']; - unset($_REQUEST['pos']); - } elseif (empty($_SESSION['tmp_user_values']['query'][$sql_md5]['pos'])) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['pos'] = 0; - } - - if (PMA_isValid($_REQUEST['display_text'], array('P', 'F'))) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['display_text'] - = $_REQUEST['display_text']; - unset($_REQUEST['display_text']); - } elseif ( - empty($_SESSION['tmp_user_values']['query'][$sql_md5]['display_text']) - ) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['display_text'] = 'P'; - } - - if (PMA_isValid($_REQUEST['relational_display'], array('K', 'D'))) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['relational_display'] - = $_REQUEST['relational_display']; - unset($_REQUEST['relational_display']); - } elseif ( - empty($_SESSION['tmp_user_values']['query'][$sql_md5]['relational_display']) - ) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['relational_display'] = 'K'; - } - - if (PMA_isValid($_REQUEST['geometry_display'], array('WKT', 'WKB', 'GEOM'))) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['geometry_display'] - = $_REQUEST['geometry_display']; - unset($_REQUEST['geometry_display']); - } elseif ( - empty($_SESSION['tmp_user_values']['query'][$sql_md5]['geometry_display']) - ) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['geometry_display'] = 'GEOM'; - } - - if (isset($_REQUEST['display_binary'])) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary'] = true; - unset($_REQUEST['display_binary']); - } elseif (isset($_REQUEST['display_options_form'])) { - // we know that the checkbox was unchecked - unset($_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary']); - } elseif (isset($_REQUEST['full_text_button'])) { - // do nothing to keep the value that is there in the session - } else { - // selected by default because some operations like OPTIMIZE TABLE - // and all queries involving functions return "binary" contents, - // according to low-level field flags - $_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary'] = true; - } - - if (isset($_REQUEST['display_binary_as_hex'])) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary_as_hex'] - = true; - unset($_REQUEST['display_binary_as_hex']); - } elseif (isset($_REQUEST['display_options_form'])) { - // we know that the checkbox was unchecked - unset( - $_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary_as_hex'] - ); - } elseif (isset($_REQUEST['full_text_button'])) { - // do nothing to keep the value that is there in the session - } else { - // display_binary_as_hex config option - if (isset($GLOBALS['cfg']['DisplayBinaryAsHex']) - && ($GLOBALS['cfg']['DisplayBinaryAsHex'] === true) - ) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary_as_hex'] - = true; - } - } - - if (isset($_REQUEST['display_blob'])) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['display_blob'] = true; - unset($_REQUEST['display_blob']); - } elseif (isset($_REQUEST['display_options_form'])) { - // we know that the checkbox was unchecked - unset($_SESSION['tmp_user_values']['query'][$sql_md5]['display_blob']); - } - - if (isset($_REQUEST['hide_transformation'])) { - $_SESSION['tmp_user_values']['query'][$sql_md5]['hide_transformation'] - = true; - unset($_REQUEST['hide_transformation']); - } elseif (isset($_REQUEST['display_options_form'])) { - // we know that the checkbox was unchecked - unset( - $_SESSION['tmp_user_values']['query'][$sql_md5]['hide_transformation'] - ); - } - - // move current query to the last position, to be removed last - // so only least executed query will be removed if maximum remembered queries - // limit is reached - $tmp = $_SESSION['tmp_user_values']['query'][$sql_md5]; - unset($_SESSION['tmp_user_values']['query'][$sql_md5]); - $_SESSION['tmp_user_values']['query'][$sql_md5] = $tmp; - - // do not exceed a maximum number of queries to remember - if (count($_SESSION['tmp_user_values']['query']) > 10) { - array_shift($_SESSION['tmp_user_values']['query']); - //echo 'deleting one element ...'; - } - - // populate query configuration - $_SESSION['tmp_user_values']['display_text'] - = $_SESSION['tmp_user_values']['query'][$sql_md5]['display_text']; - $_SESSION['tmp_user_values']['relational_display'] - = $_SESSION['tmp_user_values']['query'][$sql_md5]['relational_display']; - $_SESSION['tmp_user_values']['geometry_display'] - = $_SESSION['tmp_user_values']['query'][$sql_md5]['geometry_display']; - $_SESSION['tmp_user_values']['display_binary'] - = isset($_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary']) - ? true - : false; - $_SESSION['tmp_user_values']['display_binary_as_hex'] - = isset( - $_SESSION['tmp_user_values']['query'][$sql_md5]['display_binary_as_hex'] - ) - ? true - : false; - $_SESSION['tmp_user_values']['display_blob'] - = isset($_SESSION['tmp_user_values']['query'][$sql_md5]['display_blob']) - ? true - : false; - $_SESSION['tmp_user_values']['hide_transformation'] - = isset( - $_SESSION['tmp_user_values']['query'][$sql_md5]['hide_transformation'] - ) - ? true - : false; - $_SESSION['tmp_user_values']['pos'] - = $_SESSION['tmp_user_values']['query'][$sql_md5]['pos']; - $_SESSION['tmp_user_values']['max_rows'] - = $_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows']; - $_SESSION['tmp_user_values']['repeat_cells'] - = $_SESSION['tmp_user_values']['query'][$sql_md5]['repeat_cells']; - $_SESSION['tmp_user_values']['disp_direction'] - = $_SESSION['tmp_user_values']['query'][$sql_md5]['disp_direction']; - -} - - -/** - * Prepare a table of results returned by a SQL query. - * This function is called by the "sql.php" script. - * - * @param integer &$dt_result the link id associated to the query - * which results have to be displayed - * @param array &$the_disp_mode the display mode - * @param array $analyzed_sql the analyzed query - * - * @return sting Generated HTML content for resulted table - * - * @global string $db the database name - * @global string $table the table name - * @global string $goto the URL to go back in case of errors - * @global string $sql_query the current SQL query - * @global integer $num_rows the total number of rows returned by the - * SQL query - * @global integer $unlim_num_rows the total number of rows returned by the - * SQL query without any programmatically - * appended "LIMIT" clause - * @global array $fields_meta the list of fields properties - * @global integer $fields_cnt the total number of fields returned by - * the SQL query - * @global array $vertical_display informations used with vertical display - * mode - * @global array $highlight_columns column names to highlight - * @global array $cfgRelation the relation settings - * @global array $showtable table definitions - * - * @access private - * - * @see PMA_getMessage(), PMA_setDisplayMode(), - * PMA_getTableNavigation(), PMA_getTableHeaders(), - * PMA_getTableBody(), PMA_getResultsOperations() - * - * @return void - */ -function PMA_getTable(&$dt_result, &$the_disp_mode, $analyzed_sql) -{ - - global $db, $table, $goto; - global $sql_query, $num_rows, $unlim_num_rows, $fields_meta, $fields_cnt; - global $vertical_display, $highlight_columns; - global $cfgRelation; - global $showtable; - - $table_html = ''; - - // why was this called here? (already called from sql.php) - //PMA_setConfigParamsForDisplayTable(); - - /** - * @todo move this to a central place - * @todo for other future table types - */ - $is_innodb = (isset($showtable['Type']) && $showtable['Type'] == 'InnoDB'); - - if ($is_innodb - && ! isset($analyzed_sql[0]['queryflags']['union']) - && ! isset($analyzed_sql[0]['table_ref'][1]['table_name']) - && (empty($analyzed_sql[0]['where_clause']) - || ($analyzed_sql[0]['where_clause'] == '1 ')) - ) { - // "j u s t b r o w s i n g" - $pre_count = '~'; - $after_count = PMA_showHint( - PMA_sanitize( - __('May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]') - ) - ); - } else { - $pre_count = ''; - $after_count = ''; - } - - // 1. ----- Prepares the work ----- - - // 1.1 Gets the informations about which functionalities should be - // displayed - $total = ''; - $is_display = PMA_setDisplayMode($the_disp_mode, $total); - - // 1.2 Defines offsets for the next and previous pages - if ($is_display['nav_bar'] == '1') { - list($pos_next, $pos_prev) = PMA_getOffsets(); - } // end if - - // 1.3 Find the sort expression - // we need $sort_expression and $sort_expression_nodirection - // even if there are many table references - list($sort_expression, $sort_expression_nodirection, $sort_direction) - = PMA_getSortParams($analyzed_sql[0]['order_by_clause']); - - - // 1.4 Prepares display of first and last value of the sorted column - - $sorted_column_message = PMA_getSortedColumnMessage( - $dt_result, $fields_meta, $num_rows, - $sort_expression_nodirection, $table - ); - - - // 2. ----- Prepare to display the top of the page ----- - - // 2.1 Prepares a messages with position informations - if (($is_display['nav_bar'] == '1') && isset($pos_next)) { - - $message = PMA_setMessageInformation( - $db, $table, $sorted_column_message, - $analyzed_sql[0]['limit_clause'], $unlim_num_rows, - $total, $pos_next, $pre_count, $after_count - ); - - $table_html .= PMA_getMessage($message, $sql_query, 'success'); - - } elseif (! isset($GLOBALS['printview']) || ($GLOBALS['printview'] != '1')) { - - $table_html .= PMA_getMessage( - __('Your SQL query has been executed successfully'), - $sql_query, 'success' - ); - } - - // 2.3 Prepare the navigation bars - if (! strlen($table)) { - - if (isset($analyzed_sql[0]['query_type']) - && ($analyzed_sql[0]['query_type'] == 'SELECT') - ) { - // table does not always contain a real table name, - // for example in MySQL 5.0.x, the query SHOW STATUS - // returns STATUS as a table name - $table = $fields_meta[0]->table; - } else { - $table = ''; - } - - } - - if (($is_display['nav_bar'] == '1') && empty($analyzed_sql[0]['limit_clause'])) { - - $table_html .= PMA_getTableNavigation( - $pos_next, $pos_prev, $sql_query, 'top_direction_dropdown' - ) - . "\n"; - - } elseif (! isset($GLOBALS['printview']) || ($GLOBALS['printview'] != '1')) { - $table_html .= "\n" . '

' . "\n"; - } - - // 2b ----- Get field references from Database ----- - // (see the 'relation' configuration variable) - - // initialize map - $map = array(); - - // find tables - $target=array(); - if (isset($analyzed_sql[0]['table_ref']) - && is_array($analyzed_sql[0]['table_ref']) - ) { - - foreach ($analyzed_sql[0]['table_ref'] - as $table_ref_position => $table_ref) { - $target[] = $analyzed_sql[0]['table_ref'] - [$table_ref_position]['table_true_name']; - } - - } - - $tabs = '(\'' . join('\',\'', $target) . '\')'; - - if (! strlen($table)) { - $exist_rel = false; - } else { - - // To be able to later display a link to the related table, - // we verify both types of relations: either those that are - // native foreign keys or those defined in the phpMyAdmin - // configuration storage. If no PMA storage, we won't be able - // to use the "column to display" notion (for example show - // the name related to a numeric id). - $exist_rel = PMA_getForeigners($db, $table, '', 'both'); - - if ($exist_rel) { - - foreach ($exist_rel as $master_field => $rel) { - - $display_field = PMA_getDisplayField( - $rel['foreign_db'], $rel['foreign_table'] - ); - - $map[$master_field] = array( - $rel['foreign_table'], - $rel['foreign_field'], - $display_field, - $rel['foreign_db'] - ); - } // end while - } // end if - } // end if - // end 2b - - // 3. ----- Prepare the results table ----- - $table_html .= PMA_getTableHeaders( - $is_display, $fields_meta, $fields_cnt, $analyzed_sql, - $sort_expression, $sort_expression_nodirection, $sort_direction - ) - . '
' . "\n"; - - $url_query = ''; - $table_html .= PMA_getTableBody( - $dt_result, $is_display, $map, $analyzed_sql - ); - - // vertical output case - if ($_SESSION['tmp_user_values']['disp_direction'] == 'vertical') { - $table_html .= PMA_getVerticalTable(); - } // end if - - unset($vertical_display); - $table_html .= '' . "\n" - . '
' . $value . 'NULL
only if the display dir is not vertical - && ($_SESSION['tmp_user_values']['disp_direction'] != 'vertical')) - ? 'hide' - : ''; - - // handle datetime-related class, for grid editing - $field_type_class = PMA_getClassForDateTimeRelatedFields($meta->type); - - $pointer = $i; - $is_field_truncated = false; - //If the previous column had blob data, we need to reset the class - // to $inline_edit_class - $class = PMA_getResettedClassForInlineEdit( - $grid_edit_class, $not_null_class, $relation_class, - $hide_class, $field_type_class, $row_no - ); - - // See if this column should get highlight because it's used in the - // where-query. - $condition_field = (isset($highlight_columns) - && (isset($highlight_columns[$meta->name]) - || isset($highlight_columns[PMA_backquote($meta->name)]))) - ? true - : false; - - // Wrap MIME-transformations. [MIME] - $default_function = 'PMA_mimeDefaultFunction'; // default_function - $transform_function = $default_function; - $transform_options = array(); - - if ($GLOBALS['cfgRelation']['mimework'] - && $GLOBALS['cfg']['BrowseMIME'] - ) { - - if (isset($GLOBALS['mime_map'][$meta->name]['mimetype']) - && isset($GLOBALS['mime_map'][$meta->name]['transformation']) - && !empty($GLOBALS['mime_map'][$meta->name]['transformation']) - ) { - - $include_file = './libraries/transformations/' . PMA_securePath( - $GLOBALS['mime_map'][$meta->name]['transformation'] - ); - - if (file_exists($include_file)) { - - $transformfunction_name = 'PMA_transformation_' - . str_replace( - '.inc.php', '', - $GLOBALS['mime_map'][$meta->name]['transformation'] - ); - - include_once $include_file; - - if (function_exists($transformfunction_name)) { - - $transform_function = $transformfunction_name; - - $transform_options = PMA_transformation_getOptions( - isset($GLOBALS['mime_map'][$meta->name] - ['transformation_options'] - ) - ? $GLOBALS['mime_map'][$meta->name] - ['transformation_options'] - : '' - ); - - $meta->mimetype = str_replace( - '_', '/', - $GLOBALS['mime_map'][$meta->name]['mimetype'] - ); - } - } // end if file_exists - } // end if transformation is set - } // end if mime/transformation works. - - $_url_params = array( - 'db' => $db, - 'table' => $table, - 'where_clause' => $where_clause, - 'transform_key' => $meta->name, - ); - - if (! empty($sql_query)) { - $_url_params['sql_query'] = $url_sql_query; - } - - $transform_options['wrapper_link'] - = PMA_generate_common_url($_url_params); - - if ($meta->numeric == 1) { - // n u m e r i c - - // if two fields have the same name (this is possible - // with self-join queries, for example), using $meta->name - // will show both fields NULL even if only one is NULL, - // so use the $pointer - - $vertical_display['data'][$row_no][$i] - = PMA_getDataCellForNumericFeilds( - $row[$i], $class, $condition_field, $meta, - $analyzed_sql, $transform_function, $map, - $default_function, $transform_options, $is_field_truncated - ); - - } elseif (stristr($meta->type, 'BLOB')) { - // b l o b - - // PMA_mysql_fetch_fields returns BLOB in place of - // TEXT fields type so we have to ensure it's really a BLOB - $field_flags = PMA_DBI_field_flags($dt_result, $i); - - $vertical_display['data'][$row_no][$i] - = PMA_getDataCellForBlobField( - $row[$i], $class, $meta, $_url_params, $field_flags, - $transform_function, $default_function, - $transform_options, $condition_field, $is_field_truncated - ); - - } elseif ($meta->type == 'geometry') { - // g e o m e t r y - - // Remove 'grid_edit' from $class as we do not allow to inline-edit - // geometry data. - $class = str_replace('grid_edit', '', $class); - - $vertical_display['data'][$row_no][$i] - = PMA_getDataCellForGeometryFields( - $row[$i], $class, $meta, $map, $_url_params, - $condition_field, $transform_function, $default_function, - $transform_options, $is_field_truncated, $analyzed_sql - ); - - } else { - // n o t n u m e r i c a n d n o t B L O B - - $vertical_display['data'][$row_no][$i] - = PMA_getDataCellForNonNumericAndNonBlobFields( - $row[$i], $class, $meta, $map, $_url_params, - $condition_field, $transform_function, $default_function, - $transform_options, $is_field_truncated, $analyzed_sql, - $dt_result, $i - ); - - } - - // output stored cell - if ($directionCondition) { - $table_body_html .= $vertical_display['data'][$row_no][$i]; - } - - if (isset($vertical_display['rowdata'][$i][$row_no])) { - $vertical_display['rowdata'][$i][$row_no] - .= $vertical_display['data'][$row_no][$i]; - } else { - $vertical_display['rowdata'][$i][$row_no] - = $vertical_display['data'][$row_no][$i]; - } - } // end for (2) - - // 3. Displays the modify/delete links on the right if required - if ((($GLOBALS['cfg']['RowActionLinks'] == 'right') - || ($GLOBALS['cfg']['RowActionLinks'] == 'both')) - && $directionCondition - ) { - - $table_body_html .= PMA_getPlacedLinks( - 'right', $del_url, $is_display, $row_no, $where_clause, - $where_clause_html, $condition_array, $del_query, 'r', - $edit_url, $copy_url, $edit_anchor_class, $edit_str, - $copy_str, $del_str, $js_conf - ); - - } // end if (3) - - if ($directionCondition) { - $table_body_html .= '
' - . "\n".'  ' - . "\n" . '  
'; - - // 4. ----- Prepares the link for multi-fields edit and delete - - if ($is_display['del_lnk'] == 'dr' && $is_display['del_lnk'] != 'kp') { - - $table_html .= PMA_getMultiRowOperationLinks( - $dt_result, $fields_cnt, $fields_meta, $num_rows, $analyzed_sql, - $db, $table, $sql_query, $goto, $is_display['del_lnk'] - ); - - } - - // 5. ----- Get the navigation bar at the bottom if required ----- - - if ($is_display['nav_bar'] == '1' && empty($analyzed_sql[0]['limit_clause'])) { - - $table_html .= '
' . "\n"; - $table_html .= PMA_getTableNavigation( - $pos_next, $pos_prev, $sql_query, 'bottom_direction_dropdown' - ); - - } elseif (! isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') { - $table_html .= "\n" . '

' . "\n"; - } - - // 6. ----- Prepare "Query results operations" - if (! isset($GLOBALS['printview']) || $GLOBALS['printview'] != '1') { - $table_html .= PMA_getResultsOperations($the_disp_mode, $analyzed_sql); - } - - return $table_html; - -} // end of the 'PMA_getTable()' function - - -/** - * Get offsets for next page and previous page - * - * @return array array with two elements - $pos_next, $pos_prev - * - * @see PMA_getTable() - */ -function PMA_getOffsets() -{ - - if ($_SESSION['tmp_user_values']['max_rows'] == 'all') { - $pos_next = 0; - $pos_prev = 0; - } else { - - $pos_next = $_SESSION['tmp_user_values']['pos'] - + $_SESSION['tmp_user_values']['max_rows']; - - $pos_prev = $_SESSION['tmp_user_values']['pos'] - - $_SESSION['tmp_user_values']['max_rows']; - - if ($pos_prev < 0) { - $pos_prev = 0; - } - } - - return array($pos_next, $pos_prev); - -} - - -/** - * Get sort parameters - * - * @param string $order_by_clause the order by clause of the sql query - * - * @return array 3 element array: $sort_expression, - * $sort_expression_nodirection, $sort_direction - * - * @see PMA_getTable() - */ -function PMA_getSortParams($order_by_clause) -{ - - if (! empty($order_by_clause)) { - - $sort_expression = trim( - str_replace(' ', ' ', $order_by_clause) - ); - /** - * Get rid of ASC|DESC - */ - preg_match('@(.*)([[:space:]]*(ASC|DESC))@si', $sort_expression, $matches); - - $sort_expression_nodirection = isset($matches[1]) - ? trim($matches[1]) - : $sort_expression; - - $sort_direction = isset($matches[2]) ? trim($matches[2]) : ''; - unset($matches); - - } else { - $sort_expression = $sort_expression_nodirection = $sort_direction = ''; - } - - return array($sort_expression, $sort_expression_nodirection, $sort_direction); - -} - - -/** - * Prepare sorted column message - * - * @param integer &$dt_result the link id associated to the query - * which results have to be displayed - * @param array $fields_meta the list of fields properties - * @param integer $num_rows the total number of rows returned - * by the SQL query - * @param string $sort_expression_nodirection sort expression without direction - * @param string $table the table name - * - * @return string html content - * null if not found sorted column - * - * @see PMA_getTable() - */ -function PMA_getSortedColumnMessage(&$dt_result, $fields_meta, - $num_rows, $sort_expression_nodirection, $table -) { - - if (! empty($sort_expression_nodirection)) { - - if (strpos($sort_expression_nodirection, '.') === false) { - $sort_table = $table; - $sort_column = $sort_expression_nodirection; - } else { - list($sort_table, $sort_column) - = explode('.', $sort_expression_nodirection); - } - - $sort_table = PMA_unQuote($sort_table); - $sort_column = PMA_unQuote($sort_column); - - // find the sorted column index in row result - // (this might be a multi-table query) - $sorted_column_index = false; - - foreach ($fields_meta as $key => $meta) { - if (($meta->table == $sort_table) && ($meta->name == $sort_column)) { - $sorted_column_index = $key; - break; - } - } - - if ($sorted_column_index !== false) { - - // fetch first row of the result set - $row = PMA_DBI_fetch_row($dt_result); - - // initializing default arguments - $default_function = 'PMA_mimeDefaultFunction'; - $transform_function = $default_function; - $transform_options = array(); - - // check for non printable sorted row data - $meta = $fields_meta[$sorted_column_index]; - - if (stristr($meta->type, 'BLOB') || ($meta->type == 'geometry')) { - - $column_for_first_row = PMA_handleNonPrintableContents( - $meta->type, $row[$sorted_column_index], $transform_function, - $transform_options, $default_function, $meta, null - ); - - } else { - $column_for_first_row = $row[$sorted_column_index]; - } - - $column_for_first_row = strtoupper( - substr($column_for_first_row, 0, $GLOBALS['cfg']['LimitChars']) - ); - - // fetch last row of the result set - PMA_DBI_data_seek($dt_result, $num_rows - 1); - $row = PMA_DBI_fetch_row($dt_result); - - // check for non printable sorted row data - $meta = $fields_meta[$sorted_column_index]; - if (stristr($meta->type, 'BLOB') || ($meta->type == 'geometry')) { - - $column_for_last_row = PMA_handleNonPrintableContents( - $meta->type, $row[$sorted_column_index], $transform_function, - $transform_options, $default_function, $meta, null - ); - - } else { - $column_for_last_row = $row[$sorted_column_index]; - } - - $column_for_last_row = strtoupper( - substr($column_for_last_row, 0, $GLOBALS['cfg']['LimitChars']) - ); - - // reset to first row for the loop in PMA_getTableBody() - PMA_DBI_data_seek($dt_result, 0); - - // we could also use here $sort_expression_nodirection - return ' [' . htmlspecialchars($sort_column) - . ': ' . htmlspecialchars($column_for_first_row) . ' - ' - . htmlspecialchars($column_for_last_row) . ']'; - } - } - - return null; - -} - - -/** - * Set the content need to be show in message - * - * @param string $db the database name - * @param string $table the table name - * @param string $sorted_column_message the message for sorted column - * @param string $limit_clause the limit clause of analyzed query - * @param integer $unlim_num_rows the total number of rows returned by - * the SQL query without any appended - * "LIMIT" clause programmatically - * @param integer $total the total number of rows returned by - * the SQL query without any - * programmatically appended LIMIT clause - * @param integer $pos_next the offset for next page - * @param string $pre_count the string renders before row count - * @param string $after_count the string renders after row count - * - * @return PMA_Message $message an object of PMA_Message - * - * @see PMA_getTable() - */ -function PMA_setMessageInformation( - $db, $table, $sorted_column_message, $limit_clause, $unlim_num_rows, - $total, $pos_next, $pre_count, $after_count -) { - - if (isset($unlim_num_rows) && ($unlim_num_rows != $total)) { - $selectstring = ', ' . $unlim_num_rows . ' ' . __('in query'); - } else { - $selectstring = ''; - } - - if (! empty($limit_clause)) { - - $limit_data = PMA_analyzeLimitClause($limit_clause); - $first_shown_rec = $limit_data['start']; - - if ($limit_data['length'] < $total) { - $last_shown_rec = $limit_data['start'] + $limit_data['length'] - 1; - } else { - $last_shown_rec = $limit_data['start'] + $total - 1; - } - - } elseif (($_SESSION['tmp_user_values']['max_rows'] == 'all') - || ($pos_next > $total) - ) { - - $first_shown_rec = $_SESSION['tmp_user_values']['pos']; - $last_shown_rec = $total - 1; - - } else { - - $first_shown_rec = $_SESSION['tmp_user_values']['pos']; - $last_shown_rec = $pos_next - 1; - - } - - if (PMA_Table::isView($db, $table) - && ($total == $GLOBALS['cfg']['MaxExactCountViews']) - ) { - - $message = PMA_Message::notice( - __('This view has at least this number of rows. Please refer to %sdocumentation%s.') - ); - - $message->addParam('[a@./Documentation.html#cfg_MaxExactCount@_blank]'); - $message->addParam('[/a]'); - $message_view_warning = PMA_showHint($message); - - } else { - $message_view_warning = false; - } - - $message = PMA_Message::success(__('Showing rows')); - $message->addMessage($first_shown_rec); - - if ($message_view_warning) { - - $message->addMessage('...', ' - '); - $message->addMessage($message_view_warning); - $message->addMessage('('); - - } else { - - $message->addMessage($last_shown_rec, ' - '); - $message->addMessage(' ('); - $message->addMessage($pre_count . PMA_formatNumber($total, 0)); - $message->addString(__('total')); - - if (!empty($after_count)) { - $message->addMessage($after_count); - } - - $message->addMessage($selectstring, ''); - $message->addMessage(', ', ''); - - } - - $messagge_qt = PMA_Message::notice(__('Query took %01.4f sec') . ')'); - $messagge_qt->addParam($GLOBALS['querytime']); - - $message->addMessage($messagge_qt, ''); - if (! is_null($sorted_column_message)) { - $message->addMessage($sorted_column_message, ''); - } - - return $message; - -} - - -/** - * Prepare multi field edit/delete links - * - * @param integer &$dt_result the link id associated to the query - * which results have to be displayed - * @param integer $fields_cnt the total number of fields returned by - * the SQL query - * @param array $fields_meta the list of fields properties - * @param integer $num_rows the total number of rows returned - * by the SQL query - * @param array $analyzed_sql the analyzed query - * @param string $db the database name - * @param string $table the table name - * @param string $sql_query the current SQL query - * @param string $goto the URL to go back in case of errors - * @param string $del_link the display element - 'del_link' - * - * @return string $links_html html content - * - * @see PMA_getTable() - */ -function PMA_getMultiRowOperationLinks( - &$dt_result, $fields_cnt, $fields_meta, $num_rows, $analyzed_sql, - $db, $table, $sql_query, $goto, $del_link -) { - - $links_html = ''; - $delete_text = ($del_link == 'dr') ? __('Delete') : __('Kill'); - - $_url_params = array( - 'db' => $db, - 'table' => $table, - 'sql_query' => $sql_query, - 'goto' => $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'] == 'vertical') { - - $checkall_params['onclick'] - = 'if (setCheckboxes(\'resultsForm\', true)) return false;'; - $uncheckall_params['onclick'] - = 'if (setCheckboxes(\'resultsForm\', false)) return false;'; - - } else { - - $checkall_params['onclick'] - = 'if (markAllRows(\'resultsForm\')) return false;'; - $uncheckall_params['onclick'] - = 'if (unMarkAllRows(\'resultsForm\')) return false;'; - - } - - $checkall_link = PMA_linkOrButton( - $checkall_url, __('Check All'), $checkall_params, false - ); - - $uncheckall_link = PMA_linkOrButton( - $uncheckall_url, __('Uncheck All'), $uncheckall_params, false - ); - - if ($_SESSION['tmp_user_values']['disp_direction'] != 'vertical') { - - $links_html .= '' . __('With selected:') . ''; - } - - $links_html .= $checkall_link . "\n" - . ' / ' . "\n" - . $uncheckall_link . "\n" - . '' . __('With selected:') . '' . "\n"; - - $links_html .= PMA_getButtonOrImage( - 'submit_mult', 'mult_submit', 'submit_mult_change', - __('Change'), 'b_edit.png', 'edit' - ); - - $links_html .= PMA_getButtonOrImage( - 'submit_mult', 'mult_submit', 'submit_mult_delete', - $delete_text, 'b_drop.png', 'delete' - ); - - if (isset($analyzed_sql[0]) && $analyzed_sql[0]['querytype'] == 'SELECT') { - $links_html .= PMA_getButtonOrImage( - 'submit_mult', 'mult_submit', 'submit_mult_export', - __('Export'), 'b_tblexport.png', 'export' - ); - } - - $links_html .= "\n"; - - $links_html .= '' . "\n"; - - if (! empty($GLOBALS['url_query'])) { - $links_html .= '' . "\n"; - } - - // fetch last row of the result set - PMA_DBI_data_seek($dt_result, $num_rows - 1); - $row = PMA_DBI_fetch_row($dt_result); - - // $clause_is_unique is needed by PMA_getTable() to generate the proper param - // in the multi-edit and multi-delete form - list($where_clause, $clause_is_unique, $condition_array) - = PMA_getUniqueCondition($dt_result, $fields_cnt, $fields_meta, $row); - - // reset to first row for the loop in PMA_getTableBody() - PMA_DBI_data_seek($dt_result, 0); - - $links_html .= '' . "\n"; - - $links_html .= '
' . "\n"; - - return $links_html; - -} - - -/** - * replace some html-unfriendly stuff - * - * @param string $buffer String to process - * - * @return Escaped and cleaned up text suitable for html. - */ -function PMA_mimeDefaultFunction($buffer) -{ - $buffer = htmlspecialchars($buffer); - $buffer = str_replace( - "\011", - '    ', - str_replace(' ', '  ', $buffer) - ); - $buffer = preg_replace("@((\015\012)|(\015)|(\012))@", '
', $buffer); - - return $buffer; -} - - -/** - * Get operations that are available on results. - * - * @param array $the_disp_mode the display mode - * @param array $analyzed_sql the analyzed query - * - * @return string html content - * - * @global string $db the database name - * @global string $table the table name - * @global string $sql_query the current SQL query - * @global integer $unlim_num_rows the total number of rows returned by the - * SQL query without any programmatically - * appended "LIMIT" clause - * - * @access private - * - * @see PMA_getMessage(), PMA_setDisplayMode(), - * PMA_getTableNavigation(), PMA_getTableHeaders(), - * PMA_getTableBody(), PMA_getResultsOperations() - * - * @return void - */ -function PMA_getResultsOperations($the_disp_mode, $analyzed_sql) -{ - - global $db, $table, $sql_query, $unlim_num_rows, $fields_meta; - - $results_operations_html = ''; - $header_shown = false; - $header = '
' . __('Query results operations') . ''; - - if (($the_disp_mode[6] == '1') || ($the_disp_mode[9] == '1')) { - // Displays "printable view" link if required - if ($the_disp_mode[9] == '1') { - - if (!$header_shown) { - $results_operations_html .= $header; - $header_shown = true; - } - - $_url_params = array( - 'db' => $db, - 'table' => $table, - 'printview' => '1', - 'sql_query' => $sql_query, - ); - $url_query = PMA_generate_common_url($_url_params); - - $results_operations_html .= PMA_linkOrButton( - 'sql.php' . $url_query, - PMA_getIcon('b_print.png', __('Print view'), true), - '', true, true, 'print_view' - ) - . "\n"; - - if ($_SESSION['tmp_user_values']['display_text']) { - - $_url_params['display_text'] = 'F'; - - $results_operations_html .= PMA_linkOrButton( - 'sql.php' . PMA_generate_common_url($_url_params), - PMA_getIcon( - 'b_print.png', __('Print view (with full texts)'), true - ), - '', true, true, 'print_view' - ) - . "\n"; - unset($_url_params['display_text']); - } - } // end displays "printable view" - } - - // Export link - // (the url_query has extra parameters that won't be used to export) - // (the single_table parameter is used in display_export.lib.php - // to hide the SQL and the structure export dialogs) - // If the parser found a PROCEDURE clause - // (most probably PROCEDURE ANALYSE()) it makes no sense to - // display the Export link). - if (isset($analyzed_sql[0]) - && ($analyzed_sql[0]['querytype'] == 'SELECT') - && ! isset($printview) - && ! isset($analyzed_sql[0]['queryflags']['procedure']) - ) { - - if (isset($analyzed_sql[0]['table_ref'][0]['table_true_name']) - && ! isset($analyzed_sql[0]['table_ref'][1]['table_true_name']) - ) { - $_url_params['single_table'] = 'true'; - } - - if (!$header_shown) { - $results_operations_html .= $header; - $header_shown = true; - } - - $_url_params['unlim_num_rows'] = $unlim_num_rows; - - /** - * At this point we don't know the table name; this can happen - * for example with a query like - * SELECT bike_code FROM (SELECT bike_code FROM bikes) tmp - * As a workaround we set in the table parameter the name of the - * first table of this database, so that tbl_export.php and - * the script it calls do not fail - */ - if (empty($_url_params['table']) && !empty($_url_params['db'])) { - $_url_params['table'] = PMA_DBI_fetch_value("SHOW TABLES"); - /* No result (probably no database selected) */ - if ($_url_params['table'] === false) { - unset($_url_params['table']); - } - } - - $results_operations_html .= PMA_linkOrButton( - 'tbl_export.php' . PMA_generate_common_url($_url_params), - PMA_getIcon('b_tblexport.png', __('Export'), true), - '', true, true, '' - ) - . "\n"; - - // prepare chart - $results_operations_html .= PMA_linkOrButton( - 'tbl_chart.php' . PMA_generate_common_url($_url_params), - PMA_getIcon('b_chart.png', __('Display chart'), true), - '', true, true, '' - ) - . "\n"; - - // prepare GIS chart - $geometry_found = false; - // If atleast one geometry field is found - foreach ($fields_meta as $meta) { - if ($meta->type == 'geometry') { - $geometry_found = true; - break; - } - } - - if ($geometry_found) { - $results_operations_html .= PMA_linkOrButton( - 'tbl_gis_visualization.php' . PMA_generate_common_url($_url_params), - PMA_getIcon('b_globe.gif', __('Visualize GIS data'), true), - '', true, true, '' - ) - . "\n"; - } - } - - // CREATE VIEW - /** - * - * @todo detect privileges to create a view - * (but see 2006-01-19 note in display_create_table.lib.php, - * I think we cannot detect db-specific privileges reliably) - * Note: we don't display a Create view link if we found a PROCEDURE clause - */ - if (!$header_shown) { - $results_operations_html .= $header; - $header_shown = true; - } - - if (!PMA_DRIZZLE && !isset($analyzed_sql[0]['queryflags']['procedure'])) { - - $ajax_class = $GLOBALS['cfg']['AjaxEnable'] ? ' ajax' : ''; - - $results_operations_html .= '' - . PMA_linkOrButton( - 'view_create.php' . $url_query, - PMA_getIcon('b_views.png', __('Create view'), true), - '', true, true, '' - ) - . '' . "\n"; - } - - if ($header_shown) { - $results_operations_html .= '

'; - } - - return $results_operations_html; - -} - - -/** - * Verifies what to do with non-printable contents (binary or BLOB) - * in Browse mode. - * - * @param string $category BLOB|BINARY|GEOMETRY - * @param string $content the binary content - * @param string $transform_function transformation function - * @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 download link - * - * @return mixed string or float - */ -function PMA_handleNonPrintableContents($category, $content, $transform_function, - $transform_options, $default_function, $meta, $url_params = array() -) { - - $result = '[' . $category; - - if (is_null($content)) { - - $result .= ' - NULL'; - $size = 0; - - } elseif (isset($content)) { - - $size = strlen($content); - $display_size = PMA_formatByteDown($size, 3, 1); - $result .= ' - '. $display_size[0] . ' ' . $display_size[1]; - - } - - $result .= ']'; - - if (strpos($transform_function, 'octetstream')) { - $result = $content; - } - - if ($size > 0) { - - if ($default_function != $transform_function) { - $result = $transform_function($result, $transform_options, $meta); - } else { - - $result = $default_function($result, array(), $meta); - if (stristr($meta->type, 'BLOB') - && $_SESSION['tmp_user_values']['display_blob'] - ) { - // in this case, restart from the original $content - $result = htmlspecialchars(PMA_replaceBinaryContents($content)); - } - - /* Create link to download */ - if (count($url_params) > 0) { - $result = '
' . $result . ''; - } - } - } - - return($result); - -} - - -/** - * Prepares the displayable content of a data cell in Browse mode, - * taking into account foreign key description field and transformations - * - * @param string $class css classes for the td element - * @param bool $condition_field whether the column is a part of the where clause - * @param string $analyzed_sql the analyzed query - * @param object $meta the meta-information about this field - * @param array $map the list of relations - * @param string $data data - * @param string $transform_function transformation function - * @param string $default_function default function - * @param string $nowrap 'nowrap' if the content should not be wrapped - * @param string $where_comparison data for the where cluase - * @param array $transform_options array of options for transformation - * @param bool $is_field_truncated whether the field is truncated - * - * @return string formatted data - */ -function PMA_getRowData($class, $condition_field, $analyzed_sql, $meta, $map, - $data, $transform_function, $default_function, $nowrap, $where_comparison, - $transform_options, $is_field_truncated -) { - - global $db; - - $result = ''; - - if (isset($analyzed_sql[0]['select_expr']) - && is_array($analyzed_sql[0]['select_expr']) - ) { - - foreach ($analyzed_sql[0]['select_expr'] - as $select_expr_position => $select_expr - ) { - - $alias = $analyzed_sql[0]['select_expr'][$select_expr_position]['alias']; - - if (isset($alias) && strlen($alias)) { - $true_column = $analyzed_sql[0]['select_expr'] - [$select_expr_position]['column']; - - if ($alias == $meta->name) { - // this change in the parameter does not matter - // outside of the function - $meta->name = $true_column; - } // end if - - } // end if - } // end foreach - } // end if - - if (isset($map[$meta->name])) { - - // Field to display from the foreign table? - if (isset($map[$meta->name][2]) && strlen($map[$meta->name][2])) { - - $dispsql = 'SELECT ' . PMA_backquote($map[$meta->name][2]) - . ' FROM ' . PMA_backquote($map[$meta->name][3]) - . '.' . PMA_backquote($map[$meta->name][0]) - . ' WHERE ' . PMA_backquote($map[$meta->name][1]) - . $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 (isset($GLOBALS['printview']) && $GLOBALS['printview'] == '1') { - - $result .= ($transform_function != $default_function - ? $transform_function($data, $transform_options, $meta) - : $transform_function($data, array(), $meta)) - . ' [->' . $dispval . ']'; - - } else { - - if ($_SESSION['tmp_user_values']['relational_display'] == 'K') { - - // 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($data) . '"'; - } - - $_url_params = array( - 'db' => $map[$meta->name][3], - 'table' => $map[$meta->name][0], - 'pos' => '0', - 'sql_query' => 'SELECT * FROM ' - . PMA_backquote($map[$meta->name][3]) . '.' - . PMA_backquote($map[$meta->name][0]) - . ' WHERE ' . PMA_backquote($map[$meta->name][1]) - . $where_comparison, - ); - - $result .= ''; - - if ($transform_function != $default_function) { - // always apply a transformation on the real data, - // not on the display field - $result .= $transform_function($data, $transform_options, $meta); - } else { - - if ($_SESSION['tmp_user_values']['relational_display'] == 'D') { - // user chose "relational display field" in the - // display options, so show display field in the cell - $result .= $transform_function($dispval, array(), $meta); - } else { - // otherwise display data in the cell - $result .= $transform_function($data, array(), $meta); - } - - } - $result .= ''; - } - - } else { - $result .= ($transform_function != $default_function) - ? $transform_function($data, $transform_options, $meta) - : $transform_function($data, array(), $meta); - } - - // create hidden field if results from structure table - if (isset($_GET['browse_distinct']) && ($_GET['browse_distinct'] == 1)) { - - $where_comparison = " = '" . $data . "'"; - - $_url_params_for_show_data_row = array( - 'db' => $db, - 'table' => $meta->orgtable, - 'pos' => '0', - 'sql_query' => 'SELECT * FROM ' - . PMA_backquote($db) . '.' - . PMA_backquote($meta->orgtable) - . ' WHERE ' - . PMA_backquote($meta->orgname) - . $where_comparison, - ); - - $result .= ''; - - } - - $result .= '' . "\n"; - - return $result; - -} - - -/** - * Prepares a checkbox for multi-row submits - * - * @param string $del_url delete url - * @param array $is_display array with explicit indexes for all - * the display elements - * @param string $row_no the row number - * @param string $where_clause_html url encoded where cluase - * @param array $condition_array array of conditions in the where cluase - * @param string $del_query delete query - * @param string $id_suffix suffix for the id - * @param string $class css classes for the td element - * - * @return string the generated HTML - */ -function PMA_getCheckboxForMultiRowSubmissions($del_url, $is_display, $row_no, - $where_clause_html, $condition_array, $del_query, $id_suffix, $class -) { - - $ret = ''; - - if (! empty($del_url) && $is_display['del_lnk'] != 'kp') { - - $ret .= '' - . '' - . ' '; - } - - return $ret; - -} - - -/** - * Prepares an Edit link - * - * @param string $edit_url edit url - * @param string $class css classes for td element - * @param string $edit_str text for the edit link - * @param string $where_clause where cluase - * @param string $where_clause_html url encoded where cluase - * - * @return string the generated HTML - */ -function PMA_getEditLink($edit_url, $class, $edit_str, $where_clause, - $where_clause_html -) { - - $ret = ''; - if (! empty($edit_url)) { - - $ret .= '' - . PMA_linkOrButton($edit_url, $edit_str, array(), false); - /* - * Where clause for selecting this row uniquely is provided as - * a hidden input. Used by jQuery scripts for handling grid editing - */ - if (! empty($where_clause)) { - $ret .= ''; - } - $ret .= ''; - } - - return $ret; - -} - - -/** - * Prepares an Copy link - * - * @param string $copy_url copy url - * @param string $copy_str text for the copy link - * @param string $where_clause where clause - * @param string $where_clause_html url encoded where cluase - * @param string $class css classes for the td element - * - * @return string the generated HTML - */ -function PMA_getCopyLink($copy_url, $copy_str, $where_clause, - $where_clause_html, $class -) { - - $ret = ''; - if (! empty($copy_url)) { - - $ret .= '' - . PMA_linkOrButton($copy_url, $copy_str, array(), false); - - /* - * Where clause for selecting this row uniquely is provided as - * a hidden input. Used by jQuery scripts for handling grid editing - */ - if (! empty($where_clause)) { - $ret .= ''; - } - $ret .= ''; - } - - return $ret; - -} - - -/** - * Prepares a Delete link - * - * @param string $del_url delete url - * @param string $del_str text for the delete link - * @param string $js_conf text for the JS confirmation - * @param string $class css classes for the td element - * - * @return string the generated HTML - */ -function PMA_getDeleteLink($del_url, $del_str, $js_conf, $class) -{ - - $ret = ''; - if (! empty($del_url)) { - - $ret .= '' - . PMA_linkOrButton($del_url, $del_str, $js_conf, false) - . ''; - } - - return $ret; - -} - - -/** - * Prepare checkbox and links at some position (left or right) - * (only called for horizontal mode) - * - * @param string $position the position of the checkbox and links - * @param string $del_url delete url - * @param array $is_display array with explicit indexes for all the - * display elements - * @param string $row_no row number - * @param string $where_clause where clause - * @param string $where_clause_html url encoded where cluase - * @param array $condition_array array of conditions in the where cluase - * @param string $del_query delete query - * @param string $id_suffix suffix for the id - * @param string $edit_url edit url - * @param string $copy_url copy url - * @param string $class css classes for the td elements - * @param string $edit_str text for the edit link - * @param string $copy_str text for the copy link - * @param string $del_str text for the delete link - * @param string $js_conf text for the JS confirmation - * - * @return string the generated HTML - */ -function PMA_getCheckboxAndLinks($position, $del_url, $is_display, $row_no, - $where_clause, $where_clause_html, $condition_array, $del_query, $id_suffix, - $edit_url, $copy_url, $class, $edit_str, $copy_str, $del_str, $js_conf -) { - - $ret = ''; - - if ($position == 'left') { - - $ret .= PMA_getCheckboxForMultiRowSubmissions( - $del_url, $is_display, $row_no, $where_clause_html, $condition_array, - $del_query, $id_suffix = '_left', '', '', '' - ); - - $ret .= PMA_getEditLink( - $edit_url, $class, $edit_str, $where_clause, $where_clause_html, '' - ); - - $ret .= PMA_getCopyLink( - $copy_url, $copy_str, $where_clause, $where_clause_html, '' - ); - - $ret .= PMA_getDeleteLink($del_url, $del_str, $js_conf, '', ''); - - } elseif ($position == 'right') { - - $ret .= PMA_getDeleteLink($del_url, $del_str, $js_conf, '', ''); - - $ret .= PMA_getCopyLink( - $copy_url, $copy_str, $where_clause, $where_clause_html, '' - ); - - $ret .= PMA_getEditLink( - $edit_url, $class, $edit_str, $where_clause, $where_clause_html, '' - ); - - $ret .= PMA_getCheckboxForMultiRowSubmissions( - $del_url, $is_display, $row_no, $where_clause_html, $condition_array, - $del_query, $id_suffix = '_right', '', '', '' - ); - - } else { // $position == 'none' - - $ret .= PMA_getCheckboxForMultiRowSubmissions( - $del_url, $is_display, $row_no, $where_clause_html, $condition_array, - $del_query, $id_suffix = '_left', '', '', '' - ); - } - - return $ret; - -} -?> diff --git a/libraries/gis/pma_gis_geometrycollection.php b/libraries/gis/pma_gis_geometrycollection.php index 01e0a54645..91c5a588c9 100644 --- a/libraries/gis/pma_gis_geometrycollection.php +++ b/libraries/gis/pma_gis_geometrycollection.php @@ -59,7 +59,7 @@ class PMA_GIS_Geometrycollection extends PMA_GIS_Geometry // Trim to remove leading 'GEOMETRYCOLLECTION(' and trailing ')' $goem_col = substr($spatial, 19, (strlen($spatial) - 20)); - + // Split the geometry collection object to get its constituents. $sub_parts = $this->_explodeGeomCol($goem_col); @@ -323,7 +323,6 @@ class PMA_GIS_Geometrycollection extends PMA_GIS_Geometry foreach ($sub_parts as $sub_part) { $type_pos = stripos($sub_part, '('); $type = substr($sub_part, 0, $type_pos); - $gis_obj = PMA_GIS_Factory::factory($type); if (! $gis_obj) { continue; diff --git a/libraries/gis_visualization.lib.php b/libraries/gis_visualization.lib.php index 9ec6cf19c1..63ad18814d 100644 --- a/libraries/gis_visualization.lib.php +++ b/libraries/gis_visualization.lib.php @@ -73,7 +73,7 @@ function PMA_GIS_modifyQuery($sql_query, $visualizationSettings) } } } - // If select cluase is * + // If select clause is * } else { // If label column is chosen add it to the query if (isset($visualizationSettings['labelColumn']) diff --git a/libraries/insert_edit.lib.php b/libraries/insert_edit.lib.php index 311f77fcac..802e67401c 100644 --- a/libraries/insert_edit.lib.php +++ b/libraries/insert_edit.lib.php @@ -49,8 +49,8 @@ function PMA_getFormParametersForInsertForm($db, $table, $where_clauses, * @param type $table name of the table * @param type $db name of the database * - * @return type containing insert_mode,whereClauses, result array - * where_clauses_array and found_unique_key boolean value + * @return type containing insert_mode,whereClauses, result array + * where_clauses_array and found_unique_key boolean value */ function PMA_getStuffForEditMode($where_clause, $table, $db) { @@ -58,8 +58,14 @@ function PMA_getStuffForEditMode($where_clause, $table, $db) if (isset($where_clause)) { $where_clause_array = PMA_getWhereClauseArray($where_clause); list($whereClauses, $resultArray, $rowsArray, $found_unique_key) - = PMA_analyzeWhereClauses($where_clause_array, $table, $db, $found_unique_key); - return array(false, $whereClauses, $resultArray, $rowsArray, $where_clause_array, $found_unique_key); + = PMA_analyzeWhereClauses( + $where_clause_array, $table, $db, $found_unique_key + ); + return array( + false, $whereClauses, + $resultArray, $rowsArray, + $where_clause_array, $found_unique_key + ); } else { list($results, $row) = PMA_loadFirstRowInEditMode($table, $db); return array(true, null, $results, $row, null, $found_unique_key); @@ -67,6 +73,9 @@ function PMA_getStuffForEditMode($where_clause, $table, $db) } /** + * Creates array of where clauses + * + * @param array $where_clause where clause * * @return whereClauseArray array of where clauses */ @@ -82,28 +91,33 @@ function PMA_getWhereClauseArray($where_clause) } /** - * Analysing where cluases array + * Analysing where clauses array * - * @param array $where_clause_array array of where clauses - * @param string $table name of the table - * @param string $db name of the database - * @param boolean $found_unique_key boolean variable for unique key + * @param array $where_clause_array array of where clauses + * @param string $table name of the table + * @param string $db name of the database + * @param boolean $found_unique_key boolean variable for unique key * * @return array $where_clauses, $result, $rows */ -function PMA_analyzeWhereClauses($where_clause_array, $table, $db, $found_unique_key) -{ +function PMA_analyzeWhereClauses( + $where_clause_array, $table, $db, $found_unique_key +) { $rows = array(); $result = array(); $where_clauses = array(); foreach ($where_clause_array as $key_id => $where_clause) { - $local_query = 'SELECT * FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table) - . ' WHERE ' . $where_clause . ';'; - $result[$key_id] = PMA_DBI_query($local_query, null, PMA_DBI_QUERY_STORE); - $rows[$key_id] = PMA_DBI_fetch_assoc($result[$key_id]); + $local_query = 'SELECT * FROM ' + . PMA_backquote($db) . '.' . PMA_backquote($table) + . ' WHERE ' . $where_clause . ';'; + $result[$key_id] = PMA_DBI_query($local_query, null, PMA_DBI_QUERY_STORE); + $rows[$key_id] = PMA_DBI_fetch_assoc($result[$key_id]); $where_clauses[$key_id] = str_replace('\\', '\\\\', $where_clause); - $found_unique_key = PMA_showEmptyResultMessageOrSetUniqueCondition($rows, $key_id, - $where_clause_array, $local_query, $result, $found_unique_key); + $found_unique_key = PMA_showEmptyResultMessageOrSetUniqueCondition( + $rows, $key_id, + $where_clause_array, $local_query, + $result, $found_unique_key + ); } return array($where_clauses, $result, $rows, $found_unique_key); } @@ -111,12 +125,12 @@ function PMA_analyzeWhereClauses($where_clause_array, $table, $db, $found_unique /** * Show message for empty reult or set the unique_condition * - * @param array $rows - * @param string $key_id - * @param array $where_clause_array - * @param string $local_query - * @param array $result - * @param boolean $found_unique_key + * @param array $rows MySQL returned rows + * @param string $key_id ID in current key + * @param array $where_clause_array array of where clauses + * @param string $local_query query performed + * @param array $result MySQL result handle + * @param boolean $found_unique_key boolean variable for unique key * * @return boolean $found_unique_key */ @@ -126,12 +140,16 @@ function PMA_showEmptyResultMessageOrSetUniqueCondition($rows, $key_id, // No row returned if (! $rows[$key_id]) { unset($rows[$key_id], $where_clause_array[$key_id]); - PMA_showMessage(__('MySQL returned an empty result set (i.e. zero rows).'), $local_query); + PMA_showMessage( + __('MySQL returned an empty result set (i.e. zero rows).'), + $local_query + ); exit; } else {// end if (no row returned) $meta = PMA_DBI_get_fields_meta($result[$key_id]); - list($unique_condition, $tmp_clause_is_unique) - = PMA_getUniqueCondition($result[$key_id], count($meta), $meta, $rows[$key_id], true); + list($unique_condition, $tmp_clause_is_unique) = PMA_getUniqueCondition( + $result[$key_id], count($meta), $meta, $rows[$key_id], true + ); if (! empty($unique_condition)) { $found_unique_key = true; } @@ -143,15 +161,16 @@ function PMA_showEmptyResultMessageOrSetUniqueCondition($rows, $key_id, /** * No primary key given, just load first row * - * @param string $table name of the table - * @param string $db name of the database + * @param string $table name of the table + * @param string $db name of the database * * @return array containing $result and $rows arrays */ function PMA_loadFirstRowInEditMode($table, $db) { $result = PMA_DBI_query( - 'SELECT * FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table) . ' LIMIT 1;', + 'SELECT * FROM ' + . PMA_backquote($db) . '.' . PMA_backquote($table) . ' LIMIT 1;', null, PMA_DBI_QUERY_STORE ); @@ -162,10 +181,9 @@ function PMA_loadFirstRowInEditMode($table, $db) /** * Add some url parameters * - * @param array $url_params containing $db and $table as url parameters + * @param array $url_params containing $db and $table as url parameters * - * @return array Add some url parameters to $url_params array - * and return it + * @return array Add some url parameters to $url_params array and return it */ function PMA_urlParamsInEditMode($url_params, $where_clause_array, $where_clause) { @@ -183,9 +201,10 @@ function PMA_urlParamsInEditMode($url_params, $where_clause_array, $where_clause /** * Show function fields in data edit view in pma * - * @param array $url_params containing url parameters + * @param array $url_params containing url parameters + * @param boolean $showFuncFields whether to show function field * - * @return string an html snippet + * @return string an html snippet */ function PMA_showFunctionFieldsInEditMode($url_params, $showFuncFields) { @@ -195,27 +214,32 @@ function PMA_showFunctionFieldsInEditMode($url_params, $showFuncFields) } else { $params['ShowFunctionFields'] = 0; } - $params['ShowFieldTypesInDataEditView'] = $GLOBALS['cfg']['ShowFieldTypesInDataEditView']; + $params['ShowFieldTypesInDataEditView'] + = $GLOBALS['cfg']['ShowFieldTypesInDataEditView']; $params['goto'] = 'sql.php'; $this_url_params = array_merge($url_params, $params); if (! $showFuncFields) { return ' : ' . __('Function') . '' . "\n"; + . PMA_generate_common_url($this_url_params) . '">' + . __('Function') + . '' . "\n"; } - return ' ' . __('Function') . '' . "\n"; + . '" title="' . __('Hide') . '">' + . __('Function') + . '' . "\n"; } /** * Show field types in data edit view in pma * - * @param array $url_params containing url parameters + * @param array $url_params containing url parameters + * @param boolean $showColumnType whether to show column type * - * @return stirng an html snippet + * @return string an html snippet */ -function PMA_showColumnTypesInDataEditView($url_params, $showColumnType ) +function PMA_showColumnTypesInDataEditView($url_params, $showColumnType) { $params = array(); if (! $showColumnType) { @@ -228,10 +252,10 @@ function PMA_showColumnTypesInDataEditView($url_params, $showColumnType ) $this_other_url_params = array_merge($url_params, $params); if (! $showColumnType) { return ' : ' . __('Type') . '' . "\n"; + . PMA_generate_common_url($this_other_url_params) . '">' + . __('Type') . '' . "\n"; } - return ' ' . __('Type') . '' . "\n"; @@ -240,7 +264,9 @@ function PMA_showColumnTypesInDataEditView($url_params, $showColumnType ) /** * Retrieve the default for datetime data type * - * @param array $column containing column type, Default and null + * @param array $column containing column type, Default and null + * + * @return nothing */ function PMA_getDefaultForDatetime($column) { @@ -253,9 +279,11 @@ function PMA_getDefaultForDatetime($column) // Note: (tested in MySQL 4.0.16): when lang is some UTF-8, // $column['Default'] is not set if it contains NULL: - // Array ([Field] => d [Type] => datetime [Null] => YES [Key] => [Extra] => [True_Type] => datetime) + // Array ([Field] => d [Type] => datetime [Null] => YES [Key] => + // [Extra] => [True_Type] => datetime) // but, look what we get if we switch to iso: (Default is NULL) - // Array ([Field] => d [Type] => datetime [Null] => YES [Key] => [Default] => [Extra] => [True_Type] => datetime) + // Array ([Field] => d [Type] => datetime [Null] => YES [Key] => + // [Default] => [Extra] => [True_Type] => datetime) // so I force a NULL into it (I don't think it's possible // to have an empty default value for DATETIME) // then, the "if" after this one will work @@ -265,15 +293,15 @@ function PMA_getDefaultForDatetime($column) && $column['Null'] == 'YES' ) { $column['Default'] = null; - } + } } /** * Analyze the table column array * - * @param array $column description of column in given table - * @param array $comments_map comments for every column that has a comment - * @param integer $timestamp_seen 0 interger + * @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 * * @return array description of column in given table */ @@ -284,13 +312,13 @@ function PMA_analyzeTableColumnsArray($column, $comments_map, $timestamp_seen) // True_Type contains only the type (stops at first bracket) $column['True_Type'] = preg_replace('@\(.*@s', '', $column['Type']); PMA_getDefaultForDatetime($column); - $column['len'] = preg_match('@float|double@', $column['Type']) ? 100 : -1; + $column['len'] = preg_match('@float|double@', $column['Type']) ? 100 : -1; $column['Field_title'] = PMA_getColumnTitle($column, $comments_map); $column['is_binary'] = PMA_isColumnBinary($column); $column['is_blob'] = PMA_isColumnBlob($column); $column['is_char'] = PMA_isColumnChar($column); - list($column['pma_type'], $column['wrap'], $column['first_timestamp']) = - PMA_getEnumSetAndTimestampColumns($column, $timestamp_seen); + list($column['pma_type'], $column['wrap'], $column['first_timestamp']) + = PMA_getEnumSetAndTimestampColumns($column, $timestamp_seen); return $column; } @@ -298,8 +326,8 @@ function PMA_analyzeTableColumnsArray($column, $comments_map, $timestamp_seen) /** * Retrieve the column title * - * @param array $column description of column in given table - * @param array $comments_map comments for every column that has a comment + * @param array $column description of column in given table + * @param array $comments_map comments for every column that has a comment * * @return string column title */ @@ -317,10 +345,11 @@ function PMA_getColumnTitle($column, $comments_map) /** * check whether the column is a bainary * - * @param array $column description of column in given table + * @param array $column description of column in given table * - * @return boolean If check to ensure types such as "enum('one','two','binary',..)" or - * "enum('one','two','varbinary',..)" are not categorized as binary. + * @return boolean If check to ensure types such as "enum('one','two','binary',..)" + * or "enum('one','two','varbinary',..)" are not categorized as + * binary. */ function PMA_isColumnBinary($column) { @@ -339,10 +368,11 @@ function PMA_isColumnBinary($column) /** * check whether the column is a blob * - * @param array $column description of column in given table + * @param array $column description of column in given table * - * @return boolean If check to ensure types such as "enum('one','two','blob',..)" or - * "enum('one','two','tinyblob',..)" etc. are not categorized as blob. + * @return boolean If check to ensure types such as "enum('one','two','blob',..)" + * or "enum('one','two','tinyblob',..)" etc. are not categorized + * as blob. */ function PMA_isColumnBlob($column) { @@ -360,10 +390,10 @@ function PMA_isColumnBlob($column) /** * check is table column char * - * @param array $column description of column in given table + * @param array $column description of column in given table * - * @return boolean If check to ensure types such as "enum('one','two','char',..)" or - * "enum('one','two','varchar',..)" are not categorized as char. + * @return boolean If check to ensure types such as "enum('one','two','char',..)" or + * "enum('one','two','varchar',..)" are not categorized as char. */ function PMA_isColumnChar($column) { @@ -376,12 +406,12 @@ function PMA_isColumnChar($column) } } /** - * Retieve set, enum, timestamp table columns + * Retrieve set, enum, timestamp table columns * - * @param array $column description of column in given table - * @param int $timestamp_seen 0 interger + * @param array $column description of column in given table + * @param boolean $timestamp_seen whether a timestamp has been seen * - * return array $column['pma_type'], $column['wrap'], $column['first_timestamp'] + * @return array $column['pma_type'], $column['wrap'], $column['first_timestamp'] */ function PMA_getEnumSetAndTimestampColumns($column, $timestamp_seen) { @@ -396,8 +426,8 @@ function PMA_getEnumSetAndTimestampColumns($column, $timestamp_seen) $column['wrap'] = ''; break; case 'timestamp': - if (!$timestamp_seen) { // can only occur once per table - $timestamp_seen = 1; + if (! $timestamp_seen) { // can only occur once per table + $timestamp_seen = true; $column['first_timestamp'] = true; } $column['pma_type'] = $column['Type']; @@ -418,15 +448,16 @@ function PMA_getEnumSetAndTimestampColumns($column, $timestamp_seen) * Note: from the MySQL manual: "BINARY doesn't affect how the column is * stored or retrieved" so it does not mean that the contents is binary * - * @param array $column description of column in given table - * @param boolean $is_upload upload or no - * @param string $column_name_appendix the name atttibute - * @param string $unnullify_trigger validation string - * @param array $no_support_types list of datatypes that are not (yet) handled by PMA - * @param integer $tabindex_for_function +3000 - * @param integer $tabindex tab index - * @param integer $idindex id index - * @param boolean $insert_mode insert mode or edit mode + * @param array $column description of column in given table + * @param boolean $is_upload upload or no + * @param string $column_name_appendix the name atttibute + * @param string $unnullify_trigger validation string + * @param array $no_support_types list of datatypes that are not (yet) + * handled by PMA + * @param integer $tabindex_for_function +3000 + * @param integer $tabindex tab index + * @param integer $idindex id index + * @param boolean $insert_mode insert mode or edit mode * * @return string an html sippet */ @@ -435,11 +466,11 @@ function PMA_getFunctionColumn($column, $is_upload, $column_name_appendix, $tabindex, $idindex, $insert_mode ) { $html_output = ''; - if (($GLOBALS['cfg']['ProtectBinary'] && $column['is_blob'] && !$is_upload) - || ($GLOBALS['cfg']['ProtectBinary'] == 'all' && $column['is_binary']) - || ($GLOBALS['cfg']['ProtectBinary'] == 'noblob' && !$column['is_blob']) + if (($GLOBALS['cfg']['ProtectBinary'] && $column['is_blob'] && ! $is_upload) + || ($GLOBALS['cfg']['ProtectBinary'] === 'all' && $column['is_binary']) + || ($GLOBALS['cfg']['ProtectBinary'] === 'noblob' && ! $column['is_blob']) ) { - $html_output .= ' ' . __('Binary') . '' . "\n"; + $html_output .= '' . __('Binary') . '' . "\n"; } elseif (strstr($column['True_Type'], 'enum') || strstr($column['True_Type'], 'set') || in_array($column['pma_type'], $no_support_types) @@ -449,8 +480,8 @@ function PMA_getFunctionColumn($column, $is_upload, $column_name_appendix, $html_output .= '' . "\n"; $html_output .= '' . "\n"; $html_output .= '' . "\n"; @@ -461,50 +492,53 @@ function PMA_getFunctionColumn($column, $is_upload, $column_name_appendix, /** * The null column * - * @param array $column description of column in given table - * @param string $column_name_appendix the name atttibute - * @param array $real_null_value is column value null or not null + * @param array $column description of column in given table + * @param string $column_name_appendix the name atttibute + * @param array $real_null_value is column value null or not null * @param integer $tabindex tab index * @param integer $tabindex_for_null +6000 * @param integer $idindex id index - * @param array $vkey [multi_edit]['row_id'] - * @param array $foreigners keys into foreign fields - * @param array $foreignData data about the foreign keys + * @param array $vkey [multi_edit]['row_id'] + * @param array $foreigners keys into foreign fields + * @param array $foreignData data about the foreign keys * * @return string an html snippet */ function PMA_getNullColumn($column, $column_name_appendix, $real_null_value, $tabindex, $tabindex_for_null, $idindex, $vkey, $foreigners, $foreignData ) { - $html_output = ''; - $html_output .= ' ' . "\n"; - if ($column['Null'] == 'YES') { - $html_output .= ' '; - - // nullify_code is needed by the js nullify() function - $nullify_code = PMA_getNullifyCodeForNullColumn($column, $foreigners, $foreignData); - // to be able to generate calls to nullify() in jQuery - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; + if ($column['Null'] != 'YES') { + return "\n"; } - $html_output .= ' ' . "\n"; + $html_output = ''; + $html_output .= '' . "\n"; + $html_output .= ''; + + // nullify_code is needed by the js nullify() function + $nullify_code = PMA_getNullifyCodeForNullColumn( + $column, $foreigners, $foreignData + ); + // to be able to generate calls to nullify() in jQuery + $html_output .= ''; + $html_output .= ''; + $html_output .= ''; + $html_output .= '' . "\n"; return $html_output; } @@ -512,9 +546,9 @@ function PMA_getNullColumn($column, $column_name_appendix, $real_null_value, /** * Retrieve the nullify code for the null column * - * @param array $column description of column in given table - * @param array $foreigners keys into foreign fields - * @param array $foreignData data about the foreign keys + * @param array $column description of column in given table + * @param array $foreigners keys into foreign fields + * @param array $foreignData data about the foreign keys * * @return integer $nullify_code */ @@ -547,48 +581,60 @@ function PMA_getNullifyCodeForNullColumn($column, $foreigners, $foreignData) /** * Get the HTML elements for value column in inert form * - * @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 string $unnullify_trigger validation string - * @param integer $tabindex tab index - * @param integer $tabindex_for_value offset for the values tabindex - * @param integer $idindex id index - * @param array $data description of the column field - * @param array $special_chars special characters - * @param array $foreignData data about the foreign keys - * @param array $paramTableDbArray array containing $db and $table - * @param array $rownumber_param &rownumber=row_id - * @param array $titles An HTML IMG tag for a particular icon from a theme, - * which may be an actual file or an icon from a sprite - * @param array $text_dir - * @param string $special_chars_encoded replaced char if the string starts - * with a \r\n pair (0x0d0a) add an extra \n - * @param integer $biggest_max_file_size 0 intger - * @param string $default_char_editing default char editing mode which is stroe - * in the config.inc.php script - * @param array $no_support_types list of datatypes that are not (yet) handled by PMA - * @param array $gis_data_types list of GIS data types + * @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 string $unnullify_trigger validation string + * @param integer $tabindex tab index + * @param integer $tabindex_for_value offset for the values tabindex + * @param integer $idindex id index + * @param array $data description of the column field + * @param array $special_chars special characters + * @param array $foreignData data about the foreign keys + * @param boolean $odd_row whether row is odd + * @param array $paramTableDbArray array containing $db and $table + * @param array $rownumber_param &rownumber=row_id + * @param array $titles An HTML IMG tag for a particular icon from + * a theme, which may be an actual file or + * an icon from a sprite + * @param array $text_dir text direction + * @param string $special_chars_encoded replaced char if the string starts + * with a \r\n pair (0x0d0a) add an extra \n + * @param string $vkey [multi_edit]['row_id'] + * @param boolean $is_upload is upload or not + * @param integer $biggest_max_file_size 0 intger + * @param string $default_char_editing default char editing mode which is stroe + * in the config.inc.php script + * @param array $no_support_types list of datatypes that are not (yet) + * handled by PMA + * @param array $gis_data_types list of GIS data types + * @param array $extracted_columnspec associative array containing type, + * spec_in_brackets and possibly + * enum_set_values (another array) * - * @return string an html snippet + * @return string an html snippet */ function PMA_getValueColumn($column, $backup_field, $column_name_appendix, - $unnullify_trigger,$tabindex, $tabindex_for_value, $idindex, $data, - $special_chars, $foreignData, $odd_row, $paramTableDbArray,$rownumber_param, - $titles, $text_dir, $special_chars_encoded, $vkey,$is_upload,$biggest_max_file_size, + $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex, $data, + $special_chars, $foreignData, $odd_row, $paramTableDbArray, $rownumber_param, + $titles, $text_dir, $special_chars_encoded, $vkey, + $is_upload, $biggest_max_file_size, $default_char_editing, $no_support_types, $gis_data_types, $extracted_columnspec ) { $html_output = ''; if ($foreignData['foreign_link'] == true) { - $html_output .= PMA_getForeignLink($column, $backup_field, - $column_name_appendix, $unnullify_trigger, $tabindex, $tabindex_for_value, - $idindex, $data, $paramTableDbArray, $rownumber_param, $titles + $html_output .= PMA_getForeignLink( + $column, $backup_field, $column_name_appendix, + $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex, $data, + $paramTableDbArray, $rownumber_param, $titles ); } elseif (is_array($foreignData['disp_row'])) { - $html_output .= PMA_dispRowForeignData($backup_field, $column_name_appendix, - $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex, $data, $foreignData + $html_output .= PMA_dispRowForeignData( + $backup_field, $column_name_appendix, + $unnullify_trigger, $tabindex, $tabindex_for_value, + $idindex, $data, $foreignData ); } elseif ($GLOBALS['cfg']['LongtextDoubleTextarea'] @@ -598,46 +644,51 @@ function PMA_getValueColumn($column, $backup_field, $column_name_appendix, $html_output .= ''; $html_output .= '' . ''; - $html_output .= PMA_getTextarea($column,$backup_field, $column_name_appendix, - $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex, $text_dir, + $html_output .= PMA_getTextarea( + $column, $backup_field, $column_name_appendix, $unnullify_trigger, + $tabindex, $tabindex_for_value, $idindex, $text_dir, $special_chars_encoded ); } 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, + + $html_output .= PMA_getTextarea( + $column, $backup_field, $column_name_appendix, $unnullify_trigger, + $tabindex, $tabindex_for_value, $idindex, $text_dir, $special_chars_encoded ); $html_output .= "\n"; if (strlen($special_chars) > 32000) { - $html_output .= " \n"; - $html_output .= ' ' - . __('Because of its length,
this column might not be editable'); + $html_output .= "\n"; + $html_output .= '' . __('Because of its length,
this column might not be editable'); } } elseif ($column['pma_type'] == 'enum') { - $html_output .= PMA_getPmaTypeEnum($column, $backup_field, $column_name_appendix, - $extracted_columnspec, $unnullify_trigger, $tabindex, $tabindex_for_value, - $idindex, $data); + $html_output .= PMA_getPmaTypeEnum( + $paramsArrayForColumns, $column, $extracted_columnspec + ); } elseif ($column['pma_type'] == 'set') { - $html_output .= PMA_getPmaTypeSet($column,$extracted_columnspec, - $backup_field, $column_name_appendix, $unnullify_trigger, $tabindex, + $html_output .= PMA_getPmaTypeSet( + $column, $extracted_columnspec, $backup_field, + $column_name_appendix, $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex ); } elseif ($column['is_binary'] || $column['is_blob']) { - $html_output .= PMA_getBinaryAndBlobColumn($column, $data, $special_chars, - $biggest_max_file_size, $backup_field,$column_name_appendix, - $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex, - $text_dir, $special_chars_encoded, $vkey, $is_upload + $html_output .= PMA_getBinaryAndBlobColumn( + $column, $data, $special_chars, $biggest_max_file_size, + $backup_field, $column_name_appendix, $unnullify_trigger, $tabindex, + $tabindex_for_value, $idindex, $text_dir, $special_chars_encoded, + $vkey, $is_upload ); } elseif (! in_array($column['pma_type'], $no_support_types)) { - $html_output .= PMA_getNoSupportTypes($column, $default_char_editing, - $backup_field, $column_name_appendix, $unnullify_trigger,$tabindex, - $special_chars, $tabindex_for_value, $idindex, $text_dir, - $special_chars_encoded, $data, $extracted_columnspec + $html_output .= PMA_getNoSupportTypes( + $column, $default_char_editing, $backup_field, + $column_name_appendix, $unnullify_trigger, $tabindex, $special_chars, + $tabindex_for_value, $idindex, $text_dir, $special_chars_encoded, + $data, $extracted_columnspec ); } @@ -651,18 +702,19 @@ function PMA_getValueColumn($column, $backup_field, $column_name_appendix, /** * Get HTML for foreign link in insert form * - * @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 string $unnullify_trigger validation string + * @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 string $unnullify_trigger validation string * @param integer $tabindex tab index * @param integer $tabindex_for_value offset for the values tabindex * @param integer $idindex id index - * @param array $data - * @param array $paramTableDbArray array containing $db and $table - * @param array $rownumber_param &rownumber=row_id - * @param array $titles An HTML IMG tag for a particular icon from a theme, - * which may be an actual file or an icon from a sprite + * @param array $data data to edit + * @param array $paramTableDbArray array containing $db and $table + * @param array $rownumber_param &rownumber=row_id + * @param array $titles An HTML IMG tag for a particular icon from + * a theme, which may be an actual file or + * an icon from a sprite * * @return string an html snippet */ @@ -692,30 +744,34 @@ function PMA_getForeignLink($column, $backup_field, $column_name_appendix, /** * Get HTML to display foreign data * - * @param string $backup_field hidden input field - * @param string $column_name_appendix the name atttibute - * @param string $unnullify_trigger validation string + * @param string $backup_field hidden input field + * @param string $column_name_appendix the name atttibute + * @param string $unnullify_trigger validation string * @param integer $tabindex tab index * @param integer $tabindex_for_value offset for the values tabindex * @param integer $idindex id index - * @param array $data - * @param array $foreignData data about the foreign keys + * @param array $data data to edit + * @param array $foreignData data about the foreign keys * * @return string an html snippet */ function PMA_dispRowForeignData($backup_field, $column_name_appendix, - $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex, $data, $foreignData + $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex, $data, + $foreignData ) { $html_output = ''; $html_output .= $backup_field . "\n"; - $html_output .= '' + $html_output .= '' . '' - . '' - . "\n" . ' ' . $backup_field . "\n"; - if (strlen($column['Type']) > 20) { - $html_output .= PMA_getDropDownDependingOnLength($column, $column_name_appendix, - $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex, $data, - $column_enum_values + $column['values'] = PMA_getColumnEnumValues( + $column, $extracted_columnspec ); - } else { - $html_output .= PMA_getRadioButtonDependingOnLength($column_name_appendix, - $unnullify_trigger, $tabindex, $column, $tabindex_for_value, $idindex, - $data, $column_enum_values + } + $column_enum_values = $column['values']; + $html_output .= ''; + $html_output .= ''; + $html_output .= "\n" . ' ' . $backup_field . "\n"; + if (strlen($column['Type']) > 20) { + $html_output .= PMA_getDropDownDependingOnLength( + $column, $column_name_appendix, $unnullify_trigger, + $tabindex, $tabindex_for_value, $idindex, $data, $column_enum_values ); - } - return $html_output; + } else { + $html_output .= PMA_getRadioButtonDependingOnLength( + $column_name_appendix, $unnullify_trigger, + $tabindex, $column, $tabindex_for_value, + $idindex, $data, $column_enum_values + ); + } + return $html_output; } /** * Get column values * - * @param array $column description of column in given table - * @param array $extracted_columnspec associative array containing type, spec_in_brackets - * and possibly enum_set_values (another array) + * @param array $column description of column in given table + * @param array $extracted_columnspec associative array containing type, + * spec_in_brackets and possibly enum_set_values + * (another array) * - * @return array column values as an associative array + * @return array column values as an associative array */ function PMA_getColumnEnumValues($column, $extracted_columnspec) { @@ -832,20 +895,20 @@ function PMA_getColumnEnumValues($column, $extracted_columnspec) /** * Get HTML drop down for more than 20 string length * - * @param array $column description of column in given table - * @param string $column_name_appendix the name atttibute - * @param string $unnullify_trigger validation string + * @param array $column description of column in given table + * @param string $column_name_appendix the name atttibute + * @param string $unnullify_trigger validation string * @param integer $tabindex tab index * @param integer $tabindex_for_value offset for the values tabindex * @param integer $idindex id index - * @param array $data - * @param array $column_enum_values $column['values'] + * @param array $data data to edit + * @param array $column_enum_values $column['values'] * * @return string an html snippet */ -function PMA_getDropDownDependingOnLength($column, $column_name_appendix, - $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex, $data, - $column_enum_values +function PMA_getDropDownDependingOnLength( + $column, $column_name_appendix, $unnullify_trigger, + $tabindex, $tabindex_for_value, $idindex, $data, $column_enum_values ) { $html_output = ''; $html_output .= ''; + $html_output .= '' + . ''; } elseif ($column['is_blob']) { - $html_output .= "\n" - . PMA_getTextarea($column,$backup_field, $column_name_appendix, $unnullify_trigger, - $tabindex, $tabindex_for_value, $idindex, $text_dir, $special_chars_encoded); + $html_output .= "\n" . PMA_getTextarea( + $column, $backup_field, $column_name_appendix, $unnullify_trigger, + $tabindex, $tabindex_for_value, $idindex, $text_dir, + $special_chars_encoded + ); } else { // field size should be at least 4 and max $GLOBALS['cfg']['LimitChars'] $fieldsize = min(max($column['len'], 4), $GLOBALS['cfg']['LimitChars']); - $html_output .= "\n" - . $backup_field . "\n" - . PMA_getHTMLinput($column, $column_name_appendix, $special_chars, $fieldsize, - $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex); + $html_output .= "\n" . $backup_field . "\n" . PMA_getHTMLinput( + $column, $column_name_appendix, $special_chars, $fieldsize, + $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex + ); } if ($is_upload && $column['is_blob']) { $html_output .= '
' - . ' '; - list($html_out, $biggest_max_file_size) = PMA_getMaxUploadSize($column,$biggest_max_file_size); + list($html_out, $biggest_max_file_size) = PMA_getMaxUploadSize( + $column, $biggest_max_file_size + ); $html_output .= $html_out; } @@ -1051,11 +1127,11 @@ function PMA_getBinaryAndBlobColumn($column, $data, $special_chars,$biggest_max_ /** * Get HTML input type * - * @param array $column description of column in given table - * @param string $column_name_appendix the name atttibute - * @param array $special_chars special characters + * @param array $column description of column in given table + * @param string $column_name_appendix the name atttibute + * @param array $special_chars special characters * @param integer $fieldsize html field size - * @param string $unnullify_trigger validation string + * @param string $unnullify_trigger validation string * @param integer $tabindex tab index * @param integer $tabindex_for_value offset for the values tabindex * @param integer $idindex id index @@ -1083,8 +1159,8 @@ function PMA_getHTMLinput($column, $column_name_appendix, $special_chars, /** * Get HTML select option for upload * - * @param string $vkey [multi_edit]['row_id'] - * @param array $column description of column in given table + * @param string $vkey [multi_edit]['row_id'] + * @param array $column description of column in given table * * @return string an html snippet */ @@ -1092,13 +1168,14 @@ function PMA_getSelectOptionForUpload($vkey, $column) { $files = PMA_getFileSelectOptions(PMA_userDir($GLOBALS['cfg']['UploadDir'])); if ($files === false) { - return ' ' . __('Error') . '
' . "\n" - . ' ' . __('The directory you set for upload work cannot be reached') . "\n"; + return '' . __('Error') . '
' . "\n" + . __('The directory you set for upload work cannot be reached') . "\n"; } elseif (!empty($files)) { return "
\n" - . '' . __('Or') . '' . ' ' . __('web server upload directory') . ':
' . "\n" - . '' . "\n" . '' . "\n" . $files . '' . "\n"; @@ -1108,10 +1185,10 @@ function PMA_getSelectOptionForUpload($vkey, $column) /** * Retrieve the maximum upload file size * - * @param array $column description of column in given table - * @param integer $biggest_max_file_size biggest max file size for uploading + * @param array $column description of column in given table + * @param integer $biggest_max_file_size biggest max file size for uploading * - * @return array an html snippet and $biggest_max_file_size + * @return array an html snippet and $biggest_max_file_size */ function PMA_getMaxUploadSize($column, $biggest_max_file_size) { @@ -1143,25 +1220,29 @@ function PMA_getMaxUploadSize($column, $biggest_max_file_size) /** * Get HTML for pma no support types * - * @param array $column description of column in given table - * @param string $default_char_editing default char editing mode which is stroe - * in the config.inc.php script - * @param string $backup_field hidden input field - * @param string $column_name_appendix the name atttibute - * @param string $unnullify_trigger validation string - * @param integer $tabindex tab index - * @param array $special_chars apecial characters - * @param integer $tabindex_for_value offset for the values tabindex - * @param integer $idindex id index - * @param string $text_dir - * @param array $special_chars_encoded replaced char if the string starts - * with a \r\n pair (0x0d0a) add an extra \n + * @param array $column description of column in given table + * @param string $default_char_editing default char editing mode which is stroe + * in the config.inc.php script + * @param string $backup_field hidden input field + * @param string $column_name_appendix the name atttibute + * @param string $unnullify_trigger validation string + * @param integer $tabindex tab index + * @param array $special_chars apecial characters + * @param integer $tabindex_for_value offset for the values tabindex + * @param integer $idindex id index + * @param string $text_dir text direction + * @param array $special_chars_encoded replaced char if the string starts + * with a \r\n pair (0x0d0a) add an extra \n + * @param strign $data data to edit + * @param array $extracted_columnspec associative array containing type, + * spec_in_brackets and possibly + * enum_set_values (another array) * - * @return string an html snippet + * @return string an html snippet */ -function PMA_getNoSupportTypes($column, $default_char_editing,$backup_field, - $column_name_appendix, $unnullify_trigger,$tabindex,$special_chars, - $tabindex_for_value, $idindex, $text_dir, $special_chars_encoded,$data, +function PMA_getNoSupportTypes($column, $default_char_editing, $backup_field, + $column_name_appendix, $unnullify_trigger, $tabindex, $special_chars, + $tabindex_for_value, $idindex, $text_dir, $special_chars_encoded, $data, $extracted_columnspec ) { $fieldsize = PMA_getColumnSize($column, $extracted_columnspec); @@ -1172,32 +1253,32 @@ function PMA_getNoSupportTypes($column, $default_char_editing,$backup_field, ) { $html_output .= "\n"; $GLOBALS['cfg']['CharEditing'] = $default_char_editing; - $html_output .= PMA_getTextarea($column, $backup_field, $column_name_appendix, - $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex, $text_dir, - $special_chars_encoded); + $html_output .= PMA_getTextarea( + $column, $backup_field, $column_name_appendix, $unnullify_trigger, + $tabindex, $tabindex_for_value, $idindex, $text_dir, + $special_chars_encoded + ); } else { - $html_output .= PMA_getHTMLinput($column, $column_name_appendix, $special_chars, - $fieldsize, $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex); + $html_output .= PMA_getHTMLinput( + $column, $column_name_appendix, $special_chars, + $fieldsize, $unnullify_trigger, $tabindex, $tabindex_for_value, $idindex + ); if ($column['Extra'] == 'auto_increment') { $html_output .= ''; - } if (substr($column['pma_type'], 0, 9) == 'timestamp') { $html_output .= ''; - } if (substr($column['pma_type'], 0, 8) == 'datetime') { $html_output .= ''; - } if ($column['True_Type'] == 'bit') { $html_output .= ''; - } if ($column['pma_type'] == 'date' || $column['pma_type'] == 'datetime' @@ -1214,7 +1295,10 @@ function PMA_getNoSupportTypes($column, $default_char_editing,$backup_field, /** * Get the field size * - * @param array $column description of column in given table + * @param array $column description of column in given table + * @param array $extracted_columnspec associative array containing type, + * spec_in_brackets and possibly enum_set_values + * (another array) * * @return integer field size */ @@ -1246,20 +1330,22 @@ function PMA_getColumnSize($column, $extracted_columnspec) /** * Get HTML for gis data types * - * @param string $current_row row description - * @param array $column description of column in given table + * @param string $current_row row description + * @param array $column description of column in given table * * @return string an html snippet */ function PMA_getHTMLforGisDataTypes($current_row, $column) { - $data_val = isset($current_row[$column['Field']]) ? $current_row[$column['Field']] : ''; + $data_val = isset($current_row[$column['Field']]) + ? $current_row[$column['Field']] : ''; $_url_params = array( 'field' => $column['Field_title'], 'value' => $data_val, ); if ($column['pma_type'] != 'geometry') { - $_url_params = $_url_params + array('gis_data[gis_type]' => strtoupper($column['pma_type'])); + $_url_params = $_url_params + + array('gis_data[gis_type]' => strtoupper($column['pma_type'])); } $edit_str = PMA_getIcon('b_edit.png', __('Edit/Insert')); return '' @@ -1270,10 +1356,10 @@ function PMA_getHTMLforGisDataTypes($current_row, $column) /** * get html for continue insertion form * - * @param string $table name of the table - * @param string $db name of the database - * @param array $where_clause_array array of where clauses - * @param string $err_url error url + * @param string $table name of the table + * @param string $db name of the database + * @param array $where_clause_array array of where clauses + * @param string $err_url error url * * @return string an html snippet */ @@ -1287,7 +1373,9 @@ function PMA_getContinueInsertionForm($table, $db, $where_clause_array, $err_url if (isset($_REQUEST['where_clause'])) { foreach ($where_clause_array as $key_id => $where_clause) { - $html_output .= ''. "\n"; } } @@ -1312,11 +1400,13 @@ function PMA_getContinueInsertionForm($table, $db, $where_clause_array, $err_url /** * Get action panel * - * @param integer $tabindex tab index - * @param integer $tabindex_for_value offset for the values tabindex - * @param boolean $found_unique_key boolean variable for unique key + * @param array $where_clause where clause + * @param string $after_insert insert mode, e.g. new_insert, same_insert + * @param integer $tabindex tab index + * @param integer $tabindex_for_value offset for the values tabindex + * @param boolean $found_unique_key boolean variable for unique key * - * @return string an html snippet + * @return string an html snippet */ function PMA_getActionsPanel($where_clause, $after_insert, $tabindex, $tabindex_for_value, $found_unique_key @@ -1330,10 +1420,13 @@ function PMA_getActionsPanel($where_clause, $after_insert, $tabindex, $html_output .= '' . '' - . '   ' . __('and then') . '   ' + . '   ' + . __('and then') . '   ' . '' . '' - . PMA_getAfterInsertDropDown($where_clause, $after_insert, $found_unique_key) + . PMA_getAfterInsertDropDown( + $where_clause, $after_insert, $found_unique_key + ) . '' . ''; $html_output .='' @@ -1347,9 +1440,9 @@ function PMA_getActionsPanel($where_clause, $after_insert, $tabindex, /** * Get a HTML drop down for submit types * - * @param array $where_clause where clause - * @param integer $tabindex tab index - * @param integer $tabindex_for_value offset for the values tabindex + * @param array $where_clause where clause + * @param integer $tabindex tab index + * @param integer $tabindex_for_value offset for the values tabindex * * @return string an html snippet */ @@ -1360,9 +1453,15 @@ function PMA_getSubmitTypeDropDown($where_clause, $tabindex, $tabindex_for_value if (isset($where_clause)) { $html_output .= ''; } - $html_output .= '' - . '' - . '' + $html_output .= '' + . '' + . '' . ''; return $html_output; } @@ -1370,9 +1469,8 @@ function PMA_getSubmitTypeDropDown($where_clause, $tabindex, $tabindex_for_value /** * Get HTML drop down for after insert * - * @param array $where_clause where clause - * @param string $after_insert insert mode, e.g. new_insert, same_insert - * @param string $after_insert a request parameter it can be 'edit_text', 'back' + * @param array $where_clause where clause + * @param string $after_insert insert mode, e.g. new_insert, same_insert * @param boolean $found_unique_key boolean variable for unique key * * @return string an html snippet @@ -1395,15 +1493,13 @@ function PMA_getAfterInsertDropDown($where_clause, $after_insert, $found_unique_ //if (preg_match('@^[\s]*`[^`]*` = [0-9]+@', $where_clause)) { // in 2.9.0, we are looking for `table_name`.`field_name` = numeric_value $is_numeric = false; - if(! is_array($where_clause)) { - $is_numeric = $found_unique_key - && preg_match('@^[\s]*`[^`]*`[\.]`[^`]*` = [0-9]+@', $where_clause); - } else { - for ($i = 0; $i < count($where_clause); $i++) { - $is_numeric = preg_match('@^[\s]*`[^`]*`[\.]`[^`]*` = [0-9]+@', $where_clause[$i]); - if ($is_numeric == true) { - break; - } + for ($i = 0; $i < count($where_clause); $i++) { + $is_numeric = preg_match( + '@^[\s]*`[^`]*`[\.]`[^`]*` = [0-9]+@', + $where_clause[$i] + ); + if ($is_numeric == true) { + break; } } if ($found_unique_key && $is_numeric) { @@ -1421,10 +1517,10 @@ function PMA_getAfterInsertDropDown($where_clause, $after_insert, $found_unique_ /** * get Submit button and Reset button for action panel * - * @param integer $tabindex tab index - * @param integer $tabindex_for_value offset for the values tabindex + * @param integer $tabindex tab index + * @param integer $tabindex_for_value offset for the values tabindex * - * @return string an html snippet + * @return string an html snippet */ function PMA_getSumbitAndResetButtonForActionsPanel($tabindex, $tabindex_for_value) { @@ -1477,17 +1573,21 @@ function PMA_getHeadAndFootOfInsertRowTable($url_params) /** * Prepares the field value and retrieve special chars, backup field and data array * - * @param array $current_row a row of the table - * @param array $column description of column in given table - * @param array $extracted_columnspec associative array containing type, spec_in_brackets - * and possibly enum_set_values (another array) + * @param array $current_row a row of the table + * @param array $column description of column in given table + * @param array $extracted_columnspec associative array containing type, + * spec_in_brackets and possibly + * enum_set_values (another array) * @param boolean $real_null_value whether column value null or not null + * @param array $gis_data_types list of GIS data types + * @param string $column_name_appendix string to append to column name in input * - * @return array $real_null_value, $data, $special_chars, - * $backup_field, $special_chars_encoded + * @return array $real_null_value, $data, $special_chars, $backup_field, + * $special_chars_encoded */ -function PMA_getSpecialCharsAndBackupFieldForExistingRow($current_row, $column, - $extracted_columnspec, $real_null_value, $gis_data_types, $column_name_appendix +function PMA_getSpecialCharsAndBackupFieldForExistingRow( + $current_row, $column, $extracted_columnspec, + $real_null_value, $gis_data_types, $column_name_appendix ) { $special_chars_encoded = ''; // (we are editing) @@ -1547,14 +1647,19 @@ function PMA_getSpecialCharsAndBackupFieldForExistingRow($current_row, $column, /** * display default values * - * @param type $column description of column in given table - * @param boolean $real_null_value whether column value null or not null + * @param type $column description of column in given table + * @param boolean $real_null_value whether column value null or not null * +<<<<<<< HEAD * @return array $real_null_value, $data, $special_chars, * $backup_field, $special_chars_encoded +======= + * @return array $real_null_value, $data, $special_chars, $backup_field, $special_chars_encoded +>>>>>>> upstream/master */ -function PMA_getSpecialCharsAndBackupFieldForInsertingMode($column, $real_null_value) -{ +function PMA_getSpecialCharsAndBackupFieldForInsertingMode( + $column, $real_null_value +) { if (! isset($column['Default'])) { $column['Default'] = ''; $real_null_value = true; @@ -1578,7 +1683,10 @@ function PMA_getSpecialCharsAndBackupFieldForInsertingMode($column, $real_null_v ) { $column['display_binary_as_hex'] = true; } - return array($real_null_value, $data, $special_chars, $backup_field, $special_chars_encoded); + return array( + $real_null_value, $data, $special_chars, + $backup_field, $special_chars_encoded + ); } /** @@ -1613,7 +1721,8 @@ function PMA_getParamsForUpdateOrInsert() } /** - * check wether insert row mode and if so include tbl_changen script and set global variables. + * Check wether insert row mode and if so include tbl_changen script and set + * global variables. * * @return void */ @@ -1636,14 +1745,14 @@ function PMA_isInsertRow() /** * set $_SESSION for edit_next * - * @param string $one_where_clause one where clause from where clauses array + * @param string $one_where_clause one where clause from where clauses array * * @return void */ function PMA_setSessionForEditNext($one_where_clause) { - $local_query = 'SELECT * FROM ' . PMA_backquote($GLOBALS['db']) . '.' - . PMA_backquote($GLOBALS['table']) + $local_query = 'SELECT * FROM ' + . PMA_backquote($GLOBALS['db']) . '.' . PMA_backquote($GLOBALS['table']) . ' WHERE ' . str_replace('` =', '` >', $one_where_clause) . ' LIMIT 1;'; $res = PMA_DBI_query($local_query); @@ -1664,13 +1773,15 @@ function PMA_setSessionForEditNext($one_where_clause) * if $GLOBALS['goto'] empty, if $goto_include previously not defined * and new_insert, same_insert, same_insert * - * @param string $goto_include store some script for include, otherwise it is boolean false + * @param string $goto_include store some script for include, otherwise it is + * boolean false + * * @return string $goto_include */ function PMA_getGotoInclude($goto_include) { if (isset($_REQUEST['after_insert']) - && in_array($_REQUEST['after_insert'], array('new_insert', 'same_insert', 'same_insert')) + && in_array($_REQUEST['after_insert'], array('new_insert', 'same_insert', 'same_insert')) ) { $goto_include = 'tbl_change.php'; } elseif (! empty($GLOBALS['goto'])) { @@ -1699,6 +1810,7 @@ function PMA_getGotoInclude($goto_include) * Defines the url to return in case of failure of the query * * @param array $url_params url parameters + * * @return string error url for query failure */ function PMA_getErrorUrl($url_params) @@ -1713,10 +1825,11 @@ function PMA_getErrorUrl($url_params) /** * Builds the sql query * - * @param boolean $is_insertignore $_REQUEST['submit_type'] == 'insertignore' - * @param array $query_fields column names array - * @param array $value_sets array of query values - * @return string a query + * @param boolean $is_insertignore $_REQUEST['submit_type'] == 'insertignore' + * @param array $query_fields column names array + * @param array $value_sets array of query values + * + * @return string a query */ function PMA_buildSqlQuery($is_insertignore, $query_fields, $value_sets) { @@ -1735,14 +1848,15 @@ function PMA_buildSqlQuery($is_insertignore, $query_fields, $value_sets) /** * Executes the sql query and get the result, then move back to the calling page * - * @param array $url_params url paramters array - * @param string $query built query from PMA_buildSqlQuery() - * @return array $url_params, $total_affected_rows, $last_messages - * $warning_messages, $error_messages, $return_to_sql_query + * @param array $url_params url paramters array + * @param string $query built query from PMA_buildSqlQuery() + * + * @return array $url_params, $total_affected_rows, $last_messages + * $warning_messages, $error_messages, $return_to_sql_query */ function PMA_executeSqlQuery($url_params, $query) { - $return_to_sql_query = null; + $return_to_sql_query = ''; if (! empty($GLOBALS['sql_query'])) { $url_params['sql_query'] = $GLOBALS['sql_query']; $return_to_sql_query = $GLOBALS['sql_query']; @@ -1792,10 +1906,13 @@ function PMA_executeSqlQuery($url_params, $query) } $warning_messages = PMA_getWarningMessages(); } - unset($result, $single_query, $last_message, $query); - - return array($url_params, $total_affected_rows, $last_messages, - $warning_messages, $error_messages, $return_to_sql_query + return array( + $url_params, + $total_affected_rows, + $last_messages, + $warning_messages, + $error_messages, + $return_to_sql_query ); } @@ -1808,10 +1925,9 @@ function PMA_getWarningMessages() { $warning_essages = array(); foreach (PMA_DBI_get_warnings() as $warning) { - $warning_essages[] - = PMA_Message::sanitize( - $warning['Level'] . ': #' . $warning['Code'] . ' ' . $warning['Message'] - ); + $warning_essages[] = PMA_Message::sanitize( + $warning['Level'] . ': #' . $warning['Code'] . ' ' . $warning['Message'] + ); } return $warning_essages; } diff --git a/libraries/rte/rte_routines.lib.php b/libraries/rte/rte_routines.lib.php index c5654635d6..e66ed304ca 100644 --- a/libraries/rte/rte_routines.lib.php +++ b/libraries/rte/rte_routines.lib.php @@ -11,6 +11,8 @@ if (! defined('PHPMYADMIN')) { /** * Sets required globals + * + * @return nothing */ function PMA_RTN_setGlobals() { @@ -30,6 +32,8 @@ function PMA_RTN_setGlobals() /** * Main function for the routines functionality + * + * @return nothing */ function PMA_RTN_main() { @@ -78,7 +82,7 @@ function PMA_RTN_main() * as returned by PMA_RTN_parseAllParameters() and returns an array containing * the information about this parameter. * - * @param string $value A string containing one parameter of a routine + * @param string $value A string containing one parameter of a routine * * @return array Parsed information about the input parameter */ @@ -111,17 +115,27 @@ function PMA_RTN_parseOneParameter($value) || $parsed_param[$i]['type'] == 'alpha_functionName') && $depth == 0 // "CHAR" seems to be mistaken for a function by the parser ) { $retval[2] = strtoupper($parsed_param[$i]['data']); - } else if ($parsed_param[$i]['type'] == 'punct_bracket_open_round' && $depth == 0) { + } else if ($parsed_param[$i]['type'] == 'punct_bracket_open_round' + && $depth == 0 + ) { $depth = 1; - } else if ($parsed_param[$i]['type'] == 'punct_bracket_close_round' && $depth == 1) { + } else if ($parsed_param[$i]['type'] == 'punct_bracket_close_round' + && $depth == 1 + ) { $depth = 0; } else if ($depth == 1) { $param_length .= $parsed_param[$i]['data']; - } else if ($parsed_param[$i]['type'] == 'alpha_reservedWord' && strtoupper($parsed_param[$i]['data']) == 'CHARSET' && $depth == 0) { - if ($parsed_param[$i+1]['type'] == 'alpha_charset' || $parsed_param[$i+1]['type'] == 'alpha_identifier') { + } else if ($parsed_param[$i]['type'] == 'alpha_reservedWord' + && strtoupper($parsed_param[$i]['data']) == 'CHARSET' && $depth == 0 + ) { + if ($parsed_param[$i+1]['type'] == 'alpha_charset' + || $parsed_param[$i+1]['type'] == 'alpha_identifier' + ) { $param_opts[] = strtolower($parsed_param[$i+1]['data']); } - } else if ($parsed_param[$i]['type'] == 'alpha_columnAttrib' && $depth == 0) { + } else if ($parsed_param[$i]['type'] == 'alpha_columnAttrib' + && $depth == 0 + ) { $param_opts[] = strtoupper($parsed_param[$i]['data']); } } @@ -137,8 +151,8 @@ function PMA_RTN_parseOneParameter($value) * SHOW CREATE [PROCEDURE | FUNCTION] query and extracts * information about the routine's parameters. * - * @param array $parsed_query Parsed query, returned by by PMA_SQP_parse() - * @param string $routine_type Routine type: 'PROCEDURE' or 'FUNCTION' + * @param array $parsed_query Parsed query, returned by by PMA_SQP_parse() + * @param string $routine_type Routine type: 'PROCEDURE' or 'FUNCTION' * * @return array Information about the parameteres of a routine. */ @@ -153,14 +167,20 @@ function PMA_RTN_parseAllParameters($parsed_query, $routine_type) $fetching = false; $depth = 0; for ($i=0; $i<$parsed_query['len']; $i++) { - if ($parsed_query[$i]['type'] == 'alpha_reservedWord' && $parsed_query[$i]['data'] == $routine_type) { + if ($parsed_query[$i]['type'] == 'alpha_reservedWord' + && $parsed_query[$i]['data'] == $routine_type + ) { $fetching = true; - } else if ($fetching == true && $parsed_query[$i]['type'] == 'punct_bracket_open_round') { + } else if ($fetching == true + && $parsed_query[$i]['type'] == 'punct_bracket_open_round' + ) { $depth++; if ($depth > 1) { $buffer .= $parsed_query[$i]['data'] . ' '; } - } else if ($fetching == true && $parsed_query[$i]['type'] == 'punct_bracket_close_round') { + } else if ($fetching == true + && $parsed_query[$i]['type'] == 'punct_bracket_close_round' + ) { $depth--; if ($depth > 0) { $buffer .= $parsed_query[$i]['data'] . ' '; @@ -203,7 +223,7 @@ function PMA_RTN_parseAllParameters($parsed_query, $routine_type) * SHOW CREATE [PROCEDURE | FUNCTION] query and extracts * information about the routine's definer. * - * @param array $parsed_query Parsed query, returned by PMA_SQP_parse() + * @param array $parsed_query Parsed query, returned by PMA_SQP_parse() * * @return string The definer of a routine. */ @@ -212,11 +232,18 @@ function PMA_RTN_parseRoutineDefiner($parsed_query) $retval = ''; $fetching = false; for ($i=0; $i<$parsed_query['len']; $i++) { - if ($parsed_query[$i]['type'] == 'alpha_reservedWord' && $parsed_query[$i]['data'] == 'DEFINER') { + if ($parsed_query[$i]['type'] == 'alpha_reservedWord' + && $parsed_query[$i]['data'] == 'DEFINER' + ) { $fetching = true; - } else if ($fetching == true && ($parsed_query[$i]['type'] != 'quote_backtick' && substr($parsed_query[$i]['type'], 0, 5) != 'punct')) { + } else if ($fetching == true + && $parsed_query[$i]['type'] != 'quote_backtick' + && substr($parsed_query[$i]['type'], 0, 5) != 'punct' + ) { break; - } else if ($fetching == true && $parsed_query[$i]['type'] == 'quote_backtick') { + } else if ($fetching == true + && $parsed_query[$i]['type'] == 'quote_backtick' + ) { $retval .= PMA_unQuote($parsed_query[$i]['data']); } else if ($fetching == true && $parsed_query[$i]['type'] == 'punct_user') { $retval .= $parsed_query[$i]['data']; @@ -227,6 +254,8 @@ function PMA_RTN_parseRoutineDefiner($parsed_query) /** * Handles editor requests for adding or editing an item + * + * @return Does not return */ function PMA_RTN_handleEditor() { @@ -280,10 +309,15 @@ function PMA_RTN_handleEditor() // 'Add a new routine' mode $result = PMA_DBI_try_query($routine_query); if (! $result) { - $errors[] = sprintf(__('The following query has failed: "%s"'), $routine_query) . '

' - . __('MySQL said: ') . PMA_DBI_getError(null); + $errors[] = sprintf( + __('The following query has failed: "%s"'), + $routine_query + ) . '

' + . __('MySQL said: ') . PMA_DBI_getError(null); } else { - $message = PMA_Message::success(__('Routine %1$s has been created.')); + $message = PMA_Message::success( + __('Routine %1$s has been created.') + ); $message->addParam(PMA_backquote($_REQUEST['item_name'])); $sql_query = $routine_query; } @@ -291,7 +325,9 @@ function PMA_RTN_handleEditor() } if (count($errors)) { - $message = PMA_Message::error(__('One or more errors have occured while processing your request:')); + $message = PMA_Message::error( + __('One or more errors have occured while processing your request:') + ); $message->addString('
    '); foreach ($errors as $string) { $message->addString('
  • ' . $string . '
  • '); @@ -505,10 +541,10 @@ function PMA_RTN_getDataFromRequest() * This function will generate the values that are required to complete * the "Edit routine" form given the name of a routine. * - * @param string $name The name of the routine. - * @param string $type Type of routine (ROUTINE|PROCEDURE) - * @param bool $all Whether to return all data or just - * the info about parameters. + * @param string $name The name of the routine. + * @param string $type Type of routine (ROUTINE|PROCEDURE) + * @param bool $all Whether to return all data or just + * the info about parameters. * * @return array Data necessary to create the routine editor. */ @@ -577,7 +613,9 @@ function PMA_RTN_getDataFromName($name, $type, $all = true) && strtoupper($parsed_query[$i]['data']) == 'RETURNS' ) { $fetching = true; - } else if ($fetching == true && $parsed_query[$i]['type'] == 'alpha_reservedWord') { + } else if ($fetching == true + && $parsed_query[$i]['type'] == 'alpha_reservedWord' + ) { // We will not be looking for options such as UNSIGNED // or ZEROFILL because there is no way that a numeric // field's DTD_IDENTIFIER can be longer than 64 @@ -604,8 +642,8 @@ function PMA_RTN_getDataFromName($name, $type, $all = true) $retval['item_returnopts_num'] = $returnparam[4]; $retval['item_returnopts_text'] = $returnparam[4]; } - $retval['item_definer'] = PMA_RTN_parseRoutineDefiner($parsed_query); - $retval['item_definition'] = $routine['ROUTINE_DEFINITION']; + $retval['item_definer'] = PMA_RTN_parseRoutineDefiner($parsed_query); + $retval['item_definition'] = $routine['ROUTINE_DEFINITION']; $retval['item_isdeterministic'] = ''; if ($routine['IS_DETERMINISTIC'] == 'YES') { $retval['item_isdeterministic'] = " checked='checked'"; @@ -627,13 +665,13 @@ function PMA_RTN_getDataFromName($name, $type, $all = true) /** * Creates one row for the parameter table used in the routine editor. * - * @param array $routine Data for the routine returned by - * PMA_RTN_getDataFromRequest() or - * PMA_RTN_getDataFromName() - * @param mixed $index Either a numeric index of the row being processed - * or NULL to create a template row for AJAX request - * @param string $class Class used to hide the direction column, if the - * row is for a stored function. + * @param array $routine Data for the routine returned by + * PMA_RTN_getDataFromRequest() or + * PMA_RTN_getDataFromName() + * @param mixed $index Either a numeric index of the row being processed + * or NULL to create a template row for AJAX request + * @param string $class Class used to hide the direction column, if the + * row is for a stored function. * * @return string HTML code of one row of parameter table for the editor. */ @@ -732,14 +770,14 @@ function PMA_RTN_getParameterRow($routine = array(), $index = null, $class = '') /** * Displays a form used to add/edit a routine * - * @param string $mode If the editor will be used edit a routine - * or add a new one: 'edit' or 'add'. - * @param string $operation If the editor was previously invoked with - * JS turned off, this will hold the name of - * the current operation - * @param array $routine Data for the routine returned by - * PMA_RTN_getDataFromRequest() or - * PMA_RTN_getDataFromName() + * @param string $mode If the editor will be used edit a routine + * or add a new one: 'edit' or 'add'. + * @param string $operation If the editor was previously invoked with + * JS turned off, this will hold the name of + * the current operation + * @param array $routine Data for the routine returned by + * PMA_RTN_getDataFromRequest() or + * PMA_RTN_getDataFromName() * * @return string HTML code for the editor. */ @@ -779,7 +817,9 @@ function PMA_RTN_getEditorForm($mode, $operation, $routine) $routine['item_type'] = 'PROCEDURE'; $routine['item_type_toggle'] = 'FUNCTION'; } - } else if ($operation == 'add' || ($routine['item_num_params'] == 0 && $mode == 'add' && ! $errors)) { + } else if ($operation == 'add' + || ($routine['item_num_params'] == 0 && $mode == 'add' && ! $errors) + ) { $routine['item_param_dir'][] = ''; $routine['item_param_name'][] = ''; $routine['item_param_type'][] = ''; @@ -989,7 +1029,8 @@ function PMA_RTN_getQueryFromRequest() { global $_REQUEST, $errors, $param_sqldataaccess, $param_directions; - $_REQUEST['item_type'] = isset($_REQUEST['item_type']) ? $_REQUEST['item_type'] : ''; + $_REQUEST['item_type'] = isset($_REQUEST['item_type']) + ? $_REQUEST['item_type'] : ''; $query = 'CREATE '; if (! empty($_REQUEST['item_definer'])) { @@ -1006,7 +1047,10 @@ function PMA_RTN_getQueryFromRequest() ) { $query .= $_REQUEST['item_type'] . ' '; } else { - $errors[] = sprintf(__('Invalid routine type: "%s"'), htmlspecialchars($_REQUEST['item_type'])); + $errors[] = sprintf( + __('Invalid routine type: "%s"'), + htmlspecialchars($_REQUEST['item_type']) + ); } if (! empty($_REQUEST['item_name'])) { $query .= PMA_backquote($_REQUEST['item_name']); @@ -1133,6 +1177,8 @@ function PMA_RTN_getQueryFromRequest() /** * Handles requests for executing a routine + * + * @return Does not return */ function PMA_RTN_handleExecute() { @@ -1344,8 +1390,8 @@ function PMA_RTN_handleExecute() /** * Creates the HTML code that shows the routine execution dialog. * - * @param array $routine Data for the routine returned by - * PMA_RTN_getDataFromName() + * @param array $routine Data for the routine returned by + * PMA_RTN_getDataFromName() * * @return string HTML code for the routine execution dialog. */ diff --git a/libraries/transformations/text_plain__append.inc.php b/libraries/transformations/text_plain__append.inc.php index 22eb3534cf..9afbec16fd 100644 --- a/libraries/transformations/text_plain__append.inc.php +++ b/libraries/transformations/text_plain__append.inc.php @@ -2,6 +2,7 @@ /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * @package PhpMyAdmin-Transformation + * * Has one option: the text to be appended (default '') */ if (! defined('PHPMYADMIN')) { diff --git a/navigation.php b/navigation.php index 17d649b6da..cb5901947c 100644 --- a/navigation.php +++ b/navigation.php @@ -176,7 +176,7 @@ if (! $GLOBALS['server']) { } $_url_params = array('pos' => $pos); - PMA_listNavigator(count($GLOBALS['pma']->databases), $pos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxDbList']); + echo PMA_getListNavigator(count($GLOBALS['pma']->databases), $pos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxDbList']); } ?> @@ -256,7 +256,7 @@ if ($GLOBALS['cfg']['LeftFrameLight'] && strlen($GLOBALS['db'])) { 'pos' => $tpos, 'db' => $GLOBALS['db'] ); - PMA_listNavigator( + echo PMA_getListNavigator( $table_count, $tpos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxTableList'] ); @@ -266,7 +266,7 @@ if ($GLOBALS['cfg']['LeftFrameLight'] && strlen($GLOBALS['db'])) { if (count($table_list) <= $GLOBALS['cfg']['MaxTableList'] && $table_count > $GLOBALS['cfg']['MaxTableList'] ) { - PMA_listNavigator( + echo PMA_getListNavigator( $table_count, $tpos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxTableList'] ); @@ -297,7 +297,7 @@ if ($GLOBALS['cfg']['LeftFrameLight'] && strlen($GLOBALS['db'])) { } else { echo '
    ' . "\n"; $_url_params = array('pos' => $pos); - PMA_listNavigator( + echo PMA_getListNavigator( count($GLOBALS['pma']->databases), $pos, $_url_params, 'navigation.php', 'frame_navigation', $GLOBALS['cfg']['MaxDbList'] ); diff --git a/pmd_general.php b/pmd_general.php index 8f2c48d0dc..d620da82ec 100644 --- a/pmd_general.php +++ b/pmd_general.php @@ -228,23 +228,24 @@ for ($i = 0; $i < count($GLOBALS['PMD']["TABLE_NAME"]); $i++) { '; - echo ''; -}?> + if (isset($_REQUEST['query'])) { + echo ''; + echo ''; + } + ?> '; -}?> + if (isset($_REQUEST['query'])) { + echo ''; + } + ?> > - '; + $display_field = PMA_getDisplayField($db, $GLOBALS['PMD']["TABLE_NAME_SMALL"][$i]); + for ($j = 0, $id_cnt = count($tab_column[$t_n]["COLUMN_ID"]); $j < $id_cnt; $j++) { ?> ">
    - * - - + * + + .png" alt="*" /> + .png" alt="*" /> - \n\n"; + if (isset($_REQUEST['query'])) { + //$temp = $GLOBALS['PMD_OUT']["OWNER"][$i].'.'.$GLOBALS['PMD_OUT']["TABLE_NAME_SMALL"][$i]; + echo ''; + echo ' '; + } + echo "\n"; } - echo htmlspecialchars( - $tab_column[$t_n]["COLUMN_NAME"][$j] . " : " . $tab_column[$t_n]["TYPE"][$j], - ENT_QUOTES - ); - ?> -
    - - '; - echo ' '; - } - ?> - - - - - \n\n"; } ?> diff --git a/po/af.po b/po/af.po index f0036e0b8f..84209eda4d 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: afrikaans \n" @@ -14,80 +14,80 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Wys alles" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Bladsy nommer:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Gaan" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Sleutelnaam" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 #, fuzzy msgid "Description" msgstr "geen Beskrywing" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "" @@ -103,91 +103,92 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databasis %s is verwyder." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 #, fuzzy msgid "Database comment: " msgstr "Tabel kommentaar" -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Tabel kommentaar" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Kolom name" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Verstekwaarde (default)" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Skakels na" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Kommentaar" @@ -196,14 +197,14 @@ msgstr "Kommentaar" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nee" @@ -216,125 +217,125 @@ msgstr "Nee" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ja" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Sien die storting (skema) van die databasis" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Geen tabelle in databasis gevind nie." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Kies Alles" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Selekteer Niks" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 #, fuzzy msgid "The database name is empty!" msgstr "Die tabel naam is leeg!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Tabel %s is vernoem na %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Tabel %s is gekopieer na %s." -#: db_operations.php:443 +#: db_operations.php:449 #, fuzzy msgid "Rename database to" msgstr "Hernoem tabel na" -#: db_operations.php:470 +#: db_operations.php:476 #, fuzzy msgid "Remove database" msgstr "Hernoem tabel na" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Databasis %s is verwyder." -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy msgid "Drop the database (DROP)" msgstr "Geen databasisse" -#: db_operations.php:516 +#: db_operations.php:522 #, fuzzy msgid "Copy database to" msgstr "Geen databasisse" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Slegs struktuur" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktuur en data" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Slegs Data" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -346,62 +347,62 @@ msgstr "" "Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. " "Om uit te vind hoekom kliek %shier%s." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Display PDF schema" msgid "Edit or export relational schema" msgstr "Vertoon PDF skema" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabel" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Rye" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Grootte" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "in gebruik" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 #, fuzzy msgid "Creation" msgstr "Skep" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -413,121 +414,121 @@ msgstr[1] "%s tabel(le)" msgid "You have to choose at least one column to display" msgstr "Jy moet ten minste een Kolom kies om te vertoon" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sorteer" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Dalend" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Dalend" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Wys" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriteria" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "En" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Of" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Verander" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Voeg By/Verwyder Kriteria Ry" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Verander Navraag" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Gebruik Tabelle" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-navraag op databasis %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Doen Navraag" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Toegang Geweier" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "ten minste een van die woorde" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "alle woorde" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "die presiese frase" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "as 'n regular expression" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Soek resultate vir \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -535,31 +536,31 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -567,264 +568,265 @@ msgid_plural "Total: %s matches" msgstr[0] "Totaal: %s ooreenkomste" msgstr[1] "Totaal: %s ooreenkomste" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Soek in databasis" -#: db_search.php:292 +#: db_search.php:295 #, 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:297 +#: db_search.php:300 msgid "Find:" msgstr "Vind:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Woorde is geskei dmv 'n spasie karakter (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Binne tabel(le):" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" msgstr "Binne tabel(le):" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Geen tabelle in databasis gevind nie." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaak" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Veld %s is verwyder" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is verwyder" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Som" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Met gekose:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Kies Alles" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Drukker mooi (print view)" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Maak Leeg" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Verwyder" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Kontroleer tabel" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Herstel tabel" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analiseer tabel" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 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:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 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:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Databasis" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 #, fuzzy msgid "Created" msgstr "Skep" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Aksie" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 #, fuzzy msgid "Versions" msgstr "Operasies" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 #, fuzzy msgid "Structure snapshot" msgstr "Slegs struktuur" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "Kontroleer tabel" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "Databasis" @@ -838,28 +840,28 @@ msgstr "Export" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 #, fuzzy msgid "Bad parameters!" msgstr "Hernoem tabel na" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -870,183 +872,183 @@ msgstr "" msgid "Invalid export type" msgstr "Export" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy msgid "Add a point" msgstr "Voeg 'n nuwe veld by" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lyne beeindig deur" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Voeg 'n nuwe gebruiker by" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Voeg 'n nuwe gebruiker by" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy msgid "Add a polygon" msgstr "Voeg 'n nuwe veld by" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy msgid "Add geometry" msgstr "Voeg 'n nuwe gebruiker by" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Die boekmerk is verwyder." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Terug" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin verkies 'n frames-kapabele blaaier." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie." @@ -1056,7 +1058,7 @@ msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie." msgid "Do you really want to execute \"%s\"?" msgstr "Wil jy regtig " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1100,7 +1102,7 @@ msgstr "Indeks" msgid "Edit Index" msgstr "Indeks" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format msgid "Add %d column(s) to index" msgstr "Voeg 'n nuwe veld by" @@ -1119,16 +1121,16 @@ msgstr "Die gasheer naam is leeg!" msgid "The user name is empty!" msgstr "Die gebruiker naam ontbreek!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Die wagwoord is leeg!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Die wagwoorde is verskillend!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1148,25 +1150,26 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Verander" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Bediener Keuse" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "SQL-stelling" @@ -1177,25 +1180,25 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 #, fuzzy msgid "Total" msgstr "totaal" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1217,7 +1220,7 @@ msgstr "Bediener Keuse" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "" @@ -1235,7 +1238,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "Ry Statistiek" @@ -1283,14 +1286,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1344,32 +1347,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1385,11 +1388,11 @@ msgstr "%s tabel(le)" msgid "Questions" msgstr "Operasies" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1412,11 +1415,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Geen" @@ -1516,7 +1519,7 @@ msgstr "Algemene verwantskap funksies" msgid "Current settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy msgid "Chart Title" msgstr "Geen tabelle" @@ -1601,7 +1604,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "" @@ -1703,10 +1706,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Export" @@ -1761,9 +1764,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1776,11 +1779,11 @@ msgstr "Local" msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1792,9 +1795,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1845,17 +1848,17 @@ msgstr "Indekse" msgid "Show indexes" msgstr "Wys ruitgebied" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Beskikbaar" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1893,7 +1896,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1935,8 +1938,8 @@ msgstr "SQL-stelling" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Verander" @@ -1944,18 +1947,18 @@ msgstr "Verander" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Stoor" @@ -1969,7 +1972,7 @@ msgstr "SQL-stelling" msgid "Show search criteria" msgstr "SQL-stelling" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2020,12 +2023,12 @@ msgstr "SQL resultaat" msgid "Data point content" msgstr "Tabel kommentaar" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignoreer" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2046,7 +2049,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2140,7 +2143,7 @@ msgstr "Voortgebring deur" msgid "Change Password" msgstr "Verander wagwoord" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2253,27 +2256,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2281,37 +2284,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Des" @@ -2360,32 +2363,32 @@ msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sa" @@ -2518,16 +2521,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "" @@ -2548,70 +2551,295 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Voeg By/Verwyder Veld Kolomme" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Begin" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Vorige" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Volgende" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Einde" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Sa" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows per page" +msgid "Number of rows" +msgstr "Hoeveelheid rye per bladsy" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Ma" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horisontale" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertikale" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "Operasies" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Gedeeltelike Tekste" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Volle Tekste" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "Relasie uitsig" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +msgid "Relational display column" +msgstr "Relasie uitsig" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +msgid "Hide browser transformation" +msgstr "Wys PHP informasie" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Vermoor" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "in navraag" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Vertoon rye" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "totaal" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Displaying Column Comments" +msgid "Display chart" +msgstr "Kolom Kommentaar word vertoon" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Bediener weergawe" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Skakel nie gevind nie" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "HTTP Koekies moet van nou af geaktifeer wees." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indekse" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Uniek" @@ -2624,8 +2852,8 @@ msgstr "" msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2647,131 +2875,131 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "databasisse" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktuur" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Voeg by" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operasies" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Navraag dmv Voorbeeld" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Regte" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Gebruiker" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Biner" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Fout" @@ -2796,7 +3024,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2885,16 +3113,108 @@ 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 +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 +#, 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 +msgid "Value" +msgstr "Waarde" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Soek" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Voeg by" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Kies Velde (ten minste een):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Voeg soek kriteria by (laaste deel van die \"where\" in SQL SELECT):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Hoeveelheid rye per bladsy" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Vertoon volgorde:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "SQL-stelling" + +#: 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 "Doen 'n \"Navraag dmv Voorbeeld\" (wildcard: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Doen 'n \"Navraag dmv Voorbeeld\" (wildcard: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Herstel" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2913,7 +3233,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3208,20 +3528,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Welkom by %s" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3233,60 +3553,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "HTTP Koekies moet van nou af geaktifeer wees." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Teken aan" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Gebruiker Naam:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Wagwoord:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Bediener Keuse" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "HTTP Koekies moet van nou af geaktifeer wees." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Verkeerde gebruikernaam/wagwoord. Toegang geweier." @@ -3318,7 +3632,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 #, fuzzy msgid "Tables" msgstr "Tabel" @@ -3331,13 +3645,13 @@ msgstr "Tabel" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Overhead" @@ -3364,30 +3678,22 @@ msgstr "" msgid "Check Privileges" msgstr "Geen Regte" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3399,212 +3705,190 @@ msgstr "" "Die $cfg['PmaAbsoluteUri'] veranderlike MOET gestel wees in jou " "konfigurasie leer!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentasie" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-stelling" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL het gepraat: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Verduidelik SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Ignoreer SQL Verduideliking" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Sonder PHP Kode" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Skep PHP Kode" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Ignoreer SQL Validasie" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valideer SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "So" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Begin" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Vorige" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Volgende" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Einde" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "" @@ -3636,8 +3920,8 @@ msgid "Closed" msgstr "Ongebalanseerde kwotasie-teken" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Onbeskikbaar" @@ -3787,9 +4071,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Herstel" @@ -3995,10 +4279,6 @@ msgstr "Stel tabel struktuur voor" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4055,7 +4335,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Stoor as leer (file)" @@ -4065,7 +4345,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formaat" @@ -4177,7 +4457,7 @@ msgid "MIME type" msgstr "" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 #, fuzzy msgid "Relations" msgstr "Operasies" @@ -5691,9 +5971,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Wagwoord" @@ -5966,30 +6246,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Verander wagwoord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Geen Wagwoord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Tik weer" @@ -6012,13 +6286,13 @@ msgstr "Skep 'n nuwe databasis" msgid "Create" msgstr "Skep" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Geen Regte" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "Skep 'n nuwe bladsy" @@ -6026,9 +6300,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Naam" @@ -6206,25 +6480,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Bediener weergawe" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Bediener weergawe" @@ -6333,405 +6607,241 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Voeg By/Verwyder Veld Kolomme" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Sa" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of rows" -msgstr "Hoeveelheid rye per bladsy" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Ma" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horisontale" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertikale" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "Operasies" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Gedeeltelike Tekste" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Volle Tekste" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "Relasie uitsig" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -msgid "Relational display column" -msgstr "Relasie uitsig" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -msgid "Hide browser transformation" -msgstr "Wys PHP informasie" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Die ry is verwyder" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Vermoor" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "in navraag" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Vertoon rye" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "totaal" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Displaying Column Comments" -msgid "Display chart" -msgstr "Kolom Kommentaar word vertoon" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Bediener weergawe" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Skakel nie gevind nie" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 #, fuzzy msgid "Version information" msgstr "Wys PHP informasie" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 #, fuzzy msgid "Data files" msgstr "Slegs Data" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 #, fuzzy msgid "Pages to be flushed" msgstr "Tabel %s is geflush" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6739,48 +6849,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6788,19 +6898,19 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy msgid "Related Links" msgstr "Operasies" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6856,14 +6966,14 @@ msgstr "Stort data vir tabel" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy msgid "Definition" msgstr "geen Beskrywing" @@ -6930,14 +7040,14 @@ msgstr "Vertoon Funksies" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Gasheer (host)" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Generasie Tyd" @@ -7131,21 +7241,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7240,12 +7341,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Kolom name" @@ -7310,97 +7411,79 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funksie" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Biner" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Biner - moenie verander nie" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Voeg by" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Voeg by as 'n nuwe ry" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Voeg 'n nuwe ry by" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 #, fuzzy msgid "Go back to this page" msgstr "Terug na vorige bladsy" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Waarde" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7417,36 +7500,36 @@ msgstr "Geen" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Fr" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Stuur" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Wil jy regtig " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Geen verandering" @@ -7656,92 +7739,92 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "nie OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Beskikbaar" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Algemene verwantskap funksies" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Vertoon Funksies" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Skepping van PDF's" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Kolom Kommentaar word vertoon" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Geboekmerkde SQL-stelling" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "geen Beskrywing" @@ -7749,7 +7832,7 @@ msgstr "geen Beskrywing" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7761,13 +7844,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Gebruiker naam" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Sorteer" @@ -7781,7 +7864,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "" @@ -7795,38 +7878,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Enige gebruiker" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Enige gasheer (host)" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7840,7 +7923,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7872,98 +7955,99 @@ msgstr "Tabel %s is verwyder" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Voeg 'n nuwe gebruiker by" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "User name" msgid "Event name" msgstr "Gebruiker naam" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Verander" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Start" msgctxt "Start of recurring event" msgid "Start" msgstr "Sa" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Einde" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Voltooi invoegings" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7993,7 +8077,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -8013,112 +8097,112 @@ msgstr "Tabel %s is verwyder" msgid "Routine %1$s has been created." msgstr "Tabel %s is verwyder" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Kolom name" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy msgid "Direction" msgstr "Skep" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Lengte/Waardes*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy msgid "Remove last parameter" msgstr "Hernoem tabel na" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Lengte/Waardes*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy msgid "Return options" msgstr "Databasis statistieke" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8137,39 +8221,39 @@ msgstr "Tabel %s is verwyder" msgid "Trigger %1$s has been created." msgstr "Tabel %s is verwyder" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Voeg 'n nuwe gebruiker by" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "Gebruiker naam" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8267,7 +8351,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8277,7 +8361,7 @@ msgstr "Die \"%s\" databasis bestaan nie!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8285,7 +8369,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Stel asb. die koordinate op van tabel %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8297,28 +8381,28 @@ msgstr "Skema van die \"%s\" databasis - Bladsy %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 #, fuzzy msgid "Table of contents" msgstr "Tabel kommentaar" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Kenmerke" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Ekstra" @@ -8432,7 +8516,7 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Soek in databasis" @@ -8451,7 +8535,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Soek in databasis" @@ -8471,7 +8555,7 @@ msgstr "Hardloop SQL stellings op databasis %s" msgid "Run SQL query/queries on database %s" msgstr "Hardloop SQL stellings op databasis %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8482,11 +8566,11 @@ msgstr "" msgid "Columns" msgstr "Kolom name" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8582,7 +8666,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8612,8 +8696,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indeks" @@ -8666,13 +8750,13 @@ msgstr "Geen" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primere" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Volteks" @@ -8686,19 +8770,19 @@ msgstr "" msgid "after %s" msgstr "Na %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Voeg 'n nuwe veld by" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Jy moet ten minste een Kolom kies om te vertoon" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8706,46 +8790,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Soek" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Kies Velde (ten minste een):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Voeg soek kriteria by (laaste deel van die \"where\" in SQL SELECT):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Hoeveelheid rye per bladsy" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Vertoon volgorde:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Doen 'n \"Navraag dmv Voorbeeld\" (wildcard: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8855,13 +8899,13 @@ msgstr "" msgid "Manage your settings" msgstr "Algemene verwantskap funksies" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Veranderinge is gestoor" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8872,7 +8916,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8901,7 +8945,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -8927,9 +8971,9 @@ msgstr "Bediener weergawe" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Gebruiker" @@ -9049,144 +9093,144 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Geen databasisse" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Verander tabel sorteer volgens" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Verander tabel sorteer volgens" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Skep 'n nuwe bladsy" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Kies asb. 'n databasis" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Doen Navraag" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "Wys alles" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "Relasie uitsig" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Export" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "in navraag" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Hernoem tabel na" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Gebruiker naam" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Skep" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy msgid "Active options" msgstr "Aksie" @@ -9200,58 +9244,58 @@ msgstr "Tabel %s is verwyder" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Gebruik" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Skep 'n nuwe indeks" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Gebruiker naam" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 #, fuzzy msgid "Internal relation added" msgstr "Algemene verwantskap funksies" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 #, fuzzy msgid "Relation deleted" msgstr "Relasie uitsig" @@ -9264,87 +9308,87 @@ msgstr "" msgid "Modifications have been saved" msgstr "Veranderinge is gestoor" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Alle" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabel nie gevind nie of nie gesetel in %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9354,18 +9398,18 @@ msgstr "Die \"%s\" databasis bestaan nie!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "Velde" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -9381,7 +9425,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "" @@ -9389,7 +9433,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -9397,25 +9441,25 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Databasis %s is verwyder." msgstr[1] "Databasis %s is verwyder." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Databasis statistieke" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 #, fuzzy msgid "Enable Statistics" msgstr "Databasis statistieke" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9425,386 +9469,386 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 #, fuzzy msgid "View dump (schema) of databases" msgstr "Sien die storting (skema) van die databasis" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Begin" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "PHP Version" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Onbeskikbaar" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 #, fuzzy msgid "No privileges." msgstr "Geen Regte" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Geen" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: MySQL regte name word in Engels vertoon" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 #, fuzzy msgid "Global privileges" msgstr "Geen Regte" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 #, fuzzy msgid "Login Information" msgstr "Wys PHP informasie" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Moenie die wagwoord verander nie" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Geen gebruiker(s) gevind nie." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Jy het 'n nuwe gebruiker bygevoeg." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Jy het die regte opgedateer vir %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jy het die regte herroep vir %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Verander Regte" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Herroep" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Export" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Enige" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Regte" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Regte" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9813,139 +9857,139 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy msgid "User has been added." msgstr "Veld %s is verwyder" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9954,268 +9998,268 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Kies asb. 'n databasis" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Volteks" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Slegs struktuur" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Slegs struktuur" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 #, fuzzy msgid "Delayed inserts" msgstr "Uitgebreide toevoegings" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 #, fuzzy msgid "Show open tables" msgstr "Wys tabelle" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy msgid "Refresh rate: " msgstr "Voortgebring deur" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Moenie die wagwoord verander nie" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy msgid "Show only alert values" msgstr "Wys tabelle" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy msgid "Show unformatted values" msgstr "Wys tabelle" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy msgid "Related links:" msgstr "Operasies" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query" msgid "Run analyzer" msgstr "Navraag dmv Voorbeeld" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "Funksie" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10223,117 +10267,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Stellings" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" -#: server_status.php:1258 +#: server_status.php:1257 #, fuzzy msgid "Command" msgstr "Kommentaar" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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,78 +10385,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10420,7 +10464,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10428,42 +10472,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10471,33 +10515,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10506,243 +10550,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Karakterstel van die leer:" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10750,99 +10794,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10850,18 +10894,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10869,67 +10913,67 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sa" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy msgid "Add chart" msgstr "Voeg 'n nuwe veld by" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Voortgebring deur" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10938,7 +10982,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10946,18 +10990,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10965,11 +11009,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10977,89 +11021,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy msgid "Preset chart" msgstr "Hernoem tabel na" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Kies Tabelle" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Voeg 'n nuwe gebruiker by" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "SQL-stelling" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Ry Statistiek" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Kies Alles" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "Navraag dmv Voorbeeld" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Records" msgid "%d second" @@ -11067,7 +11111,7 @@ msgid_plural "%d seconds" msgstr[0] "Rekords" msgstr[1] "Rekords" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11075,129 +11119,129 @@ msgid_plural "%d minutes" msgstr[0] "in gebruik" msgstr[1] "in gebruik" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL-stelling" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -11489,176 +11533,176 @@ msgstr "" msgid "Wrong data" msgstr "Geen databasisse" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Wil jy regtig " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Valideer SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL resultaat" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Voortgebring deur" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Etiket" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "Databasis %s is verwyder." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Kolom name" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy msgid "Chart title" msgstr "Geen tabelle" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "SQL-stelling" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Waarde" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Waarde" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabel %s is verwyder" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Sien die storting (skema) van die tabel" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Voeg By/Verwyder Veld Kolomme" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy msgid "Spatial column" msgstr "totaal" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Stoor as leer (file)" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -11676,32 +11720,32 @@ msgstr "Kannie die indeks hernoem na PRIMARY!" msgid "No index parts defined!" msgstr "Geen indeks dele gedefinieer!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Print view" msgid "Edit index" msgstr "Drukker mooi (print view)" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Indeks naam :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" moet die naam wees van die primere sleutel, en slegs van die primere sleutel!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Indeks tipe :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Voeg by indeks  %s kolom(me)" @@ -11724,272 +11768,272 @@ msgstr "Tabel %s is geskuif na %s." msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieer na %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Die tabel naam is leeg!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Verander tabel sorteer volgens" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(afsonderlik)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Skuif tabel na (databasis.tabel):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Hernoem tabel na" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopieer tabel na (databasis.tabel):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Tabel instandhouding" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s is geflush" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Spoel die tabel (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Stort data vir tabel" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Geen databasisse" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Tabel instandhouding" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "Herstel tabel" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Toets referential integrity:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Wys tabelle" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Spasie verbruik" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Effektief" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Ry Statistiek" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamies" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Ry lengte" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Ry grootte" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy msgid "Internal relation" msgstr "Algemene verwantskap funksies" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Geen" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabel %s is verwyder" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "'n primere sleutel is bygevoeg op %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "'n Indeks is bygevoeg op %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Wys PHP informasie" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy msgid "Move columns" msgstr "Voeg 'n nuwe veld by" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Drukker mooi (print view)" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Relasie uitsig" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Stel tabel struktuur voor" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy msgid "Add column" msgstr "Voeg 'n nuwe veld by" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "By Einde van Tabel" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "By Begin van Tabel" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Na %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12143,71 +12187,38 @@ msgstr "" msgid "Create version" msgstr "Bediener weergawe" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Doen 'n \"Navraag dmv Voorbeeld\" (wildcard: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "SQL-stelling" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Herstel" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy msgctxt "for MIME transformation" msgid "Description" msgstr "geen Beskrywing" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Jy het nie genoeg regte om nou hier te wees nie!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Die profiel is opgedateer." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/ar.po b/po/ar.po index 5ebc8119ab..c9ac385385 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2011-09-24 21:48+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" @@ -15,21 +15,21 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "عرض الكل" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "صفحة رقم:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "لا يمكن تحديث نافذة المتصفح المستهدفة,, يبدو أنك أغلقت الرئيسية أو أن " "مستعرضك يمنع التحديث عبر النوافذ بسبب إعدادات الأمان." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "تنفيذ" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "اسم المفتاح" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "الوصف" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "استخدم هذه القيمة" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "تم إنشاء قاعدة البيانات %1$s." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "ملاحظة قاعدة البيانات: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "تعليقات الجدول" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "عمود" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "خالي" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "إفتراضي" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "مرتبط بـ" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "تعليقات" @@ -197,14 +198,14 @@ msgstr "تعليقات" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "لا" @@ -217,122 +218,122 @@ msgstr "لا" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "نعم" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "عرض بنية قاعدة البيانات" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "لا توجد جداول في قاعدة البيانات هذه!." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "تحديد الكل" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "إلغاء تحديد الكل" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "إسم قاعدة البيانات خالي!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "تم إعادة تسمية قاعدة البيانات %s إلى %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "تم نسخ قاعدة البيانات %s إلى %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "حذف قاعدة البيانات" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "تم حذف قاعدة البيانات %s ." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "حذف قاعدة البيانات" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "نسخ قاعدة البيانات إلى" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "البنية فقط" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "البنية والبيانات" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "بيانات فقط" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "إنشاء قاعدة البيانات قبل عملية النسخ" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "أضف %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "أضف قيمة AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "أضف قيود" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "التبديل إلى قاعدة البيانات المنسوخة" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Collation" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -341,59 +342,59 @@ msgstr "" "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" "%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "بناء الارتباطات" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "جدول" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "صفوف" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "حجم" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "قيد الإستعمال" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "الإنشاء" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "التحديث الأخير" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "التحقق الأخير" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -408,117 +409,117 @@ msgstr[5] "%s جدول (جداول)" msgid "You have to choose at least one column to display" msgstr "عليك اختيار عمود واحد على الأقل للعرض" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "التحويل إلى %sالباني المرئي%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "ترتيب" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "تصاعديا" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "تنازليا" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "عرض" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "المعايير" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "إدخال" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "و" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "حذف" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "أو" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "تعديل" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "إضافه/حذف معايير الصفوف" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "إضافه/حذف عمود" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "تجديد الإستعلام" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "إستخدم الجداول" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "إستعلام SQL في قاعدة البيانات %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "إرسال الإستعلام" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "ممنوع الوصول" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "على الأقل أحد الكلمات" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "كل الكلمات" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "الجملة بالضبط" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "كتعبير قياسي" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "نتائج البحث عن \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -531,30 +532,30 @@ msgstr[3] "%s مطابقة في الجدول %s" msgstr[4] "%s مطابقة في الجدول %s" msgstr[5] "%s مطابقة في الجدول %s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "حذف التشابهات لجدول %s ؟" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -565,248 +566,249 @@ msgstr[3] "المجموع: %sتطابق" msgstr[4] "المجموع: %sتطابق" msgstr[5] "المجموع: %sتطابق" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "بحث في قاعدة البيانات" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "الكلمات أو القيم المطلوب البحث عنها (wildcard: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "ابحث:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "الكلمات مفصولة بمسافة (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "داخل الجداول:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "داخل العمود:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "لا توجد جداول في قاعدة البيانات هذه!." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "غير معروفة" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "تم إفراغ محتويات الجدول %s" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "تم إزالة %s من العرض" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "تم إزالة الجدول %s" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "التتبع نشط." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "التتبع غير نشط." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "هذا العرض له ما لا يقل عدد هذه الصفوف يرجى الرجوع إلى %s الوثيقة %s" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "إستنساخ" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "المجموع" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s هو محرك التخزين الإفتراضي لخادم MySQL" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "مع المحدد:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "تحديد الكل" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "تحقق من الجداول التي تحمل عبء زائد" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "تصدير" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "إفراغ" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "حذف" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "التحقق من الجدول" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "تحسين الجدول" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "إصلاح الجدول" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "تحليل الجدول" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "إضافة بادئة للجدول" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "استبدال بادئة الجدول" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "نسخ الجدول مع البادئة" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "قاموس البيانات" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "الجداول المتعقبة" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "قاعدة البيانات" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "آخر إصدار" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "أنشئ" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "محدث" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "الحالة" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "العملية" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "حذف بيانات التتبع لهذا الجدول" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "نشط" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "غير نشط" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "نسخ" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "تقرير التتبع" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "لقطة للبناء الهيكلي" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "الجداول الغير متتبعة" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "تتبع الجدول" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "سجل قاعدة البيانات" @@ -818,27 +820,27 @@ msgstr "نوع غير صالح!" msgid "Selected export type has to be saved in file!" msgstr "نوع التصدير المحدد سيحفظ في الملف!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "مدخلات غير صالحة!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "لا توجد مساحة كافية لحفظ الملف %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "الملف %s موجود على الخادم بالفعل , غير الاسم أو حدد خيار الكتابة عليه." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "خادم الويب ليس لديه صلاحية لحفظ الملف %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "تم حفظ الـDump إلى الملف %s." @@ -847,96 +849,96 @@ msgstr "تم حفظ الـDump إلى الملف %s." msgid "Invalid export type" msgstr "نوع التصدير غير صحيح" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "قيمة العمود \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "هندسة" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "نقطة" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "س" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "ص" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "نقطة %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "إضافة نقطة" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "منحنى" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "إضافة منحنى" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add unique index" msgid "Add an inner ring" msgstr "إضافة فهرس مميز" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "مضلع" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "إضافة مضلع" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add a new User" msgid "Add geometry" msgstr "أضف مستخدم جديد" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "المخرجات" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -945,28 +947,28 @@ msgstr "" "يبدو أنك تحاول رفع ملف كبير الحجم , فضلاً راجع المستند %sdocumentation%s لحل " "المشكلة." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "عرض العلامة المرجعية" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "لقد حذفت العلامة المرجعية." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "لا يمكن قراءة الملف" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "انت تحاول رفع ملف بصيغة ضغط غير معروفة (%s)." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -975,26 +977,26 @@ msgstr "" "لايوجد أي بيانات لإستيرادها , إما انه لم يتم إرسال إسم الملف , أو أن حجم " "الملف أكبر من الحجم المحدد في إعدادات PHP" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "لاتستطيع تغيير ترميز الملفات بدون مكتبة الدوال الخاصة بذلك" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "لايمكن تحميل الإضافات المستوردة ,, فضلاً تحقق من عملية التنصيب ." -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "تم إنشاء العلامة المرجعية %s" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "الإستيراد إنتهى بنجاح , %d إستعلام تم تنفيذه." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1002,7 +1004,7 @@ msgstr "" "إنتهى وقت التنفيذ , إذا كنت تريد إنهاء الإستيراد, أعد إرسال نفس الملف وسوف " "يتم إستكمال الإستيراد" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1010,23 +1012,23 @@ msgstr "" "لم يتم تحليل البيانات في العملية الأخيرة ,, هذا يعني ان phpMyAdmin لاتستطيع " "إنهاء الإستيراد ,, يجب زيادة المدة المحددة لتنفيذ php" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "رجوع" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin أكثر تفهما مع مستعرض الإطارات." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "أمر \"حذف قاعدة البيانات\" معطل." @@ -1036,7 +1038,7 @@ msgstr "أمر \"حذف قاعدة البيانات\" معطل." msgid "Do you really want to execute \"%s\"?" msgstr "هل تريد حقا" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "أنت على وشك إزالة كامل قاعدة البيانات !" @@ -1080,7 +1082,7 @@ msgstr "إضافة فهرس" msgid "Edit Index" msgstr "وضع التعديل" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %d column(s) to index" @@ -1099,16 +1101,16 @@ msgstr "إسم المستضيف فارغ!" msgid "The user name is empty!" msgstr "إسم المستخدم فارغ!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "كلمة المرور فارغة !" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "كلمتا المرور غير متشابهتان !" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "إضافة مستخدم" @@ -1125,23 +1127,24 @@ msgstr "حذف المستخدمين المحددين" msgid "Close" msgstr "أغلاق" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "تعديل" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "خريطة التتبع المباشر" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "خريطة conn./process المباشر" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "خريطة الإستعلام المباشر" @@ -1151,24 +1154,24 @@ msgstr "بيانات ثابتة" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "مجموع كلي" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "آخر" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1188,7 +1191,7 @@ msgstr "ترافيك الخادم (بالكيلو بايت)" msgid "Connections since last refresh" msgstr "الإتصالات منذ آخر تحديث" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "عمليات" @@ -1206,7 +1209,7 @@ msgstr "العمليات منذ آخر تحديث" msgid "Questions (executed statements by the server)" msgstr "العمليات (الجمل المنفذة بواسطة الخادم)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "إحصائيات الإستعلام" @@ -1253,14 +1256,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "ميجابايت" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "كيلوبايت" @@ -1316,32 +1319,32 @@ msgstr "بايتات أُرسلت" msgid "Bytes received" msgstr "بايتات أُستلمت" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "اتصالات" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "بايت" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "جيجابايت" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "تيرابايت" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "بيتابايت" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "إكسابايت" @@ -1357,11 +1360,11 @@ msgstr "%s جدول (جداول)" msgid "Questions" msgstr "العمليات" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "بيانات سير" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "الإعدادات" @@ -1381,11 +1384,11 @@ msgstr "إضافة رسم بياني " msgid "Please add at least one variable to the series" msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "لا شيء" @@ -1480,7 +1483,7 @@ msgstr "تغيير الإعدادات" msgid "Current settings" msgstr "الإعدادات الحالية" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "عنوان الرسم البياني" @@ -1569,7 +1572,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "وقت" @@ -1671,10 +1674,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "استيراد" @@ -1726,9 +1729,9 @@ msgstr "المتغيرات المستعملة" msgid "Test" msgstr "إختبار" -#: 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 +#: 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 msgid "Cancel" msgstr "ألغاء" @@ -1740,11 +1743,11 @@ msgstr "تحميل" msgid "Processing Request" msgstr "معالجة الطلب" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "خطأ في معالجة الطلب" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "لا قواعد بيانات محددة" @@ -1756,9 +1759,9 @@ msgstr "إزالة العمود" msgid "Adding Primary Key" msgstr "إضافة مفتاح رئيسي" -#: 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 +#: 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 msgid "OK" msgstr "موافق" @@ -1798,19 +1801,19 @@ msgstr "إخفاء الفهارس" msgid "Show indexes" msgstr "أظهار الفهارس" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "تعطيل التحقق من المفتاح الغريب" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "مفعل" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1840,7 +1843,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1885,8 +1888,8 @@ msgstr "إظهار صندوق الإستعلام" msgid "No rows selected" msgstr "لايوجد صفوف مختارة" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "تغيير" @@ -1894,18 +1897,18 @@ msgstr "تغيير" msgid "Query execution time" msgstr "وقت التنفيذ الأقصى" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "حفظ" @@ -1917,7 +1920,7 @@ msgstr "إخفاء معايير البحث" msgid "Show search criteria" msgstr "إظهار معايير البحث" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "بحث" @@ -1967,12 +1970,12 @@ msgstr "ناتج استعلام SQL" msgid "Data point content" msgstr "جدول المحتويات" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "تجاهل" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "نسخ" @@ -1992,7 +1995,7 @@ msgstr "إختيار المفتاح الغريب" msgid "Please select the primary key or a unique key" msgstr "فضلاً أختر المفتاح الرئيسي أو المفتاح الفريد" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "اختر الحقل لإظهاره" @@ -2081,7 +2084,7 @@ msgstr "توليد" msgid "Change Password" msgstr "تغيير كلمة المرور" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "أكثر" @@ -2172,63 +2175,63 @@ msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "ديسمبر" @@ -2266,32 +2269,32 @@ msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "السبت" @@ -2407,16 +2410,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "لكل ثانية" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "لكل دقيقة" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "لكل ساعة" @@ -2437,45 +2440,249 @@ msgstr "صلاحيات خاطئة على ملف الإعدادات , لاينب msgid "Font size" msgstr "حجم الخط" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "إضافه/حذف عمود حقل" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "بداية" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "سابق" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "التالي" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "نهاية" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "ابدأ" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of tables" +msgid "Number of rows" +msgstr "عدد الجداول" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "More" +msgid "Mode" +msgstr "أكثر" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "أفقي" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr ")عناوين ملتفة( أفقيا" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "عمودي" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute" +msgid "Headers every %s rows" +msgstr "تنفيذ" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "رتب حسب المفتاح" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "خيارات" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "نصوص جزئية" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "نصوص كاملة" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "بناء الارتباطات" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "عرض البيانات الثنائية بالنظام الست عشري" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "تحويل المتصفح" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "لقد تم حذف الصف" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "إبطال" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "في الاستعلام" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "مشاهدة السجلات " + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "المجموع" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "استغرق الاستعلام %01.4f ثانية" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "عرض الطباعة (مع النصوص الكاملة)." + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "إظهار بناء ملف PDF" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +#| msgid "Create" +msgid "Create view" +msgstr "تكوين" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "لم يمكن إيجاد الوصلة" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "الملف لم يكن مرفوعاً." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "حجم الملف المرفوع يتجاوز حجم الملف المسموح به في إعدادات php" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "حجم الملف المرفوع يتجاوز حجم الملف المحدد به في نموذج HTML" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "تم رفع جزء من الملف فقط." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "المجلد المؤقت مفقود." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "فشلت عملية كتابة الملف على القرص." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "رفع الملف إستوقف من قبل الامتداد." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "خطأ غير معروف عند رفع الملف." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2483,26 +2690,41 @@ msgstr "" "خطأ عند نقل الملف المرفوع , إنظر :[a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "خطأ عند نقل الملف المرفوع." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "لايمكن قراءة الملف المرفوع." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "فهارس" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "فريد" @@ -2515,8 +2737,8 @@ msgstr "محزم" msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "تعليق" @@ -2537,130 +2759,130 @@ msgid "" "removed." msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "قاعدة بيانات" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "خادم" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "بناء" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "إدخال" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "عمليات" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "تتبع" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "قاعدة البيانات فارغة!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "استعلام بواسطة مثال" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "الإمتيازات" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "أحداث" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "المستخدم" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "تزامن" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "سجل ثنائي" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "متغيرات" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "مجموعات المحارف" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "محركات" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "خطأ" @@ -2697,7 +2919,7 @@ msgstr[3] "%1$d صفوف أضيفت" msgstr[4] "%1$d صفوف أضيفت" msgstr[5] "%1$d صفوف أضيفت" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "خطأ عند إنشاء ملف PDF :" @@ -2786,16 +3008,106 @@ 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 +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 +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 +msgid "Value" +msgstr "القيمة" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "بحث" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "إدخال" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "اختيار الأعمدة (واحد على الأقل):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "أضف شروط البحث (الفقرة \"where\" ):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "رقم السجلات لكل صفحة" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "ترتيب العرض:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "استعرض القيم الغريبة" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Additional search criteria" +msgstr "إخفاء معايير البحث" + +#: 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 "عمل \"استعلام بواسطة المثال\" (بدل: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "عمل \"استعلام بواسطة المثال\" (بدل: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "إعادة تعيين" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "مسار الصورة للمظهر %s غير صحيح!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "لاتتوفر معاينة." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "إعتبر" @@ -2814,7 +3126,7 @@ msgstr "المظهر %s غير موجود!" msgid "Theme path not found for theme %s!" msgstr "مسار المظهر غير موجود للمظهر %s !" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "مظهر" @@ -3113,20 +3425,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "لايمكن الإتصال: إعدادات غير صحيحة." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "أهلا بك في %s" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "يبدو انك لم تنشئ ملف الإعدادات.إستخدم %1$ssetup script%2$s لإنشائه." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3141,61 +3453,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "دخول" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "يمكن أن تدخل عنوان المضيف والمنفذ مفصولان بالمسافة." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "الخادم:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "اسم المستخدم:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "كلمة المرور:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "اختيار الخادم" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "تم منع الدخول بدون كلمة مرور ممنوع في الإعدادات , إنظر قيمة (AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "لانشاط منذ %s ثواني , الرجاء تسجيل الدخول من جديد" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "لا يمكن الدخول إلى خادم MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "خطأ في اسم المستخدم أو كلمة السر. الوصول ممنوع." @@ -3227,7 +3533,7 @@ msgstr "مشترك" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "جداول" @@ -3239,13 +3545,13 @@ msgstr "جداول" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "بيانات" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "الحمل الزائد" @@ -3270,30 +3576,22 @@ msgstr "تحقق من الصلاحيات لقاعدة بيانات "%s" msgid "Check Privileges" msgstr "تحقق من الصلاحيات" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "إستغلال محتمل" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "الكشف عن مفتاح رقمي" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "فشل قراءة ملف الإعدادات" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "يبدو أن هناك خطأ في بناء الجملة." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "لا يمكن تحميل الإعدادات الإفتراضية من : %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3305,204 +3603,190 @@ msgstr "" "المتغير $cfg['PmaAbsoluteUri'] يجب " "تعديله في ملف التعريف !" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "فهرس خادم غير صحيح: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "إسم المضيف غير صحيح للخادم %1$s." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "اسلوب مصادقة غير صحيح في الإعدادات:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "عليك الترقية إلى %s%s أو لاحقا." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "إستغلال محتمل" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "الكشف عن مفتاح رقمي" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "كبير: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "مستندات وثائقية" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "إنجليزي" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "إنجليزي" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "إنجليزي" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "استعلام SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL قال: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "فشل الإتصال بمدقق SQL!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "شرح SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "تخطي شرح SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "بدون كود PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "أنشئ كود PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "تحديث" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "تخطي تدقيق SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "التدقيق في استعلام SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "تعديل سريع لهذا الإستعلام" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "مضمن" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "جانبي" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "الأحد" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y الساعة %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "مدخلات مفقودة:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "بداية" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "سابق" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "التالي" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "نهاية" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "الذهاب إلى قاعدة البيانات "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "إضغط للإختيار" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "تصفح كمبيوترك." -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "إختر مجلد الرفع من الخادم %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه." -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "لايوجد أي ملفات لرفعها" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "تنفيذ" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "طباعة" @@ -3532,8 +3816,8 @@ msgid "Closed" msgstr "إغلاق" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "معطل" @@ -3674,9 +3958,9 @@ msgstr "إستعادة القيمة الإفتراضية" msgid "Allow users to customize this value" msgstr "السماح للمستخدمين بتخصيص هذه القيمة" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "إعادة تعيين" @@ -3891,10 +4175,6 @@ msgstr "اقترح بناء الجدول" msgid "Show binary contents as HEX by default" msgstr "عرض البيانات الثنائية بالنظام الست عشري إفتراضياً" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "عرض البيانات الثنائية بالنظام الست عشري" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "إظهار قواعد البيانات كقائمة بدلاً من القائمة المنسدلة" @@ -3947,7 +4227,7 @@ msgstr "ضع الوقت المحدد لعمل البرنامج ([kbd]0[/kbd]: ل msgid "Maximum execution time" msgstr "وقت التنفيذ الأقصى" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "حفظ كملف" @@ -3956,7 +4236,7 @@ msgid "Character set of the file" msgstr "مجموعة الأحرف للملف" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "صيغة" @@ -4060,7 +4340,7 @@ msgid "MIME type" msgstr "نوع MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "العلاقات" @@ -5543,9 +5823,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "كلمة السر" @@ -5820,30 +6100,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "تغيير كلمة السر" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "لا كلمة سر" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "أعد كتابة" @@ -5866,22 +6140,22 @@ msgstr "تكوين قاعدة بيانات جديدة" msgid "Create" msgstr "تكوين" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "امتياز غير موجود" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "الاسم" @@ -6067,26 +6341,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "انشئ إصدار %s لـ %s.s%s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -6202,404 +6476,238 @@ msgstr "" msgid "Language" msgstr "اللغة" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "إضافه/حذف عمود حقل" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "ابدأ" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of tables" -msgid "Number of rows" -msgstr "عدد الجداول" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "More" -msgid "Mode" -msgstr "أكثر" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "أفقي" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr ")عناوين ملتفة( أفقيا" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "عمودي" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute" -msgid "Headers every %s rows" -msgstr "تنفيذ" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "رتب حسب المفتاح" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "خيارات" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "نصوص جزئية" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "نصوص كاملة" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "بناء الارتباطات" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "تحويل المتصفح" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "لقد تم حذف الصف" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "إبطال" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "في الاستعلام" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "مشاهدة السجلات " - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "المجموع" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "استغرق الاستعلام %01.4f ثانية" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "عرض الطباعة (مع النصوص الكاملة)." - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "إظهار بناء ملف PDF" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -#| msgid "Create" -msgid "Create view" -msgstr "تكوين" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "لم يمكن إيجاد الوصلة" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "ملفات البيانات" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "وضع InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "صفحات" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "صفحات حرة" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "صفحات مشغولة" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6607,48 +6715,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6656,20 +6764,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "الروابط" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6730,14 +6838,14 @@ msgstr "إرجاع أو استيراد بيانات الجدول" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "حدث" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6809,14 +6917,14 @@ msgstr "أنواع MIME المتوفرة" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "المزود" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "أنشئ في" @@ -7012,21 +7120,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "قام MySQL بإرجاع نتيجة فارغة." @@ -7124,12 +7223,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "اسم الجدول" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "اسم العمود" @@ -7196,95 +7295,77 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "دالة" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "أخفاء" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "ثنائي" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "ثنائي - لاتحرره" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "دليل تحميل الملفات على خادم الشبكة" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "إدخال" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "وبعدها" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "إدخال كتسجيل جديد" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "الرجوع إلى الصفحة السابقة" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "إدخال تسجيل جديد" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "ارجع إلى هذه الصفحة" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "عدل الصف التالي" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "القيمة" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7301,38 +7382,38 @@ msgstr "لا شيء" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "الجمعة" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "إرسال" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "إضافة حقل جديد" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "هل تريد حقا" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "لا تغييرات" @@ -7544,92 +7625,92 @@ msgstr "" msgid "This format has no options" msgstr "هذا التنسيق ليس له أي خيارات" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "ليس صالحا" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "موافق" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "مفعل" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "المزايا العامّة للرابط" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "إظهار المزايا" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "إنشاء ملفات PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "إظهار تعليقات العمود" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "تحويل المتصفح" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "رجاء راجع التوثيق لكيفية تحديث جدول Column_comments." -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "علامة مرجعية SQL-استعلام" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "نصوص SQL سابقة" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "بدون وصف" @@ -7637,7 +7718,7 @@ msgstr "بدون وصف" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7649,13 +7730,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "اسم المستخدم" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7668,7 +7749,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "متغير" @@ -7682,38 +7763,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "أي مستخدم" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "استخدم حقل نص" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "أي مزود" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "محلي" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "هذا المضيف" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "استخدم الجدول المضيف" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7727,7 +7808,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7762,103 +7843,104 @@ msgstr "تم إنشاء الإجراء %1$s." msgid "One or more errors have occured while processing your request:" msgstr "حصل خطأ أثناء معالجة طلبك: " -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Event" msgid "Edit event" msgstr "حدث" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "خطأ في معالجة الطلب" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "نوع الحدث" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "نوع الحدث" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "تغيير" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 #, fuzzy #| msgid "Execute" msgid "Execute at" msgstr "تنفيذ" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute" msgid "Execute every" msgstr "تنفيذ" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "بدء التشغيل" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "نهاية" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "إدخال كامل" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7897,7 +7979,7 @@ msgstr "" "ملحق 'mysqli' لتجنب أي مشاكل." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "نوع الإجراء غير صحيح: %s" @@ -7916,101 +7998,101 @@ msgstr "تم تعديل الإجراء %1$s" msgid "Routine %1$s has been created." msgstr "تم إنشاء الإجراء %1$s." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "تعديل الإجراء" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "اسم العمود" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "الإنشاء" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "الطول/القيمة" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "إضافة حقل جديد" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "حذف قاعدة البيانات" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "الطول/القيمة" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "خيارات الجدول" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "نوع الاستعلام" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8021,18 +8103,18 @@ msgstr[3] "%d تأثر بالإجراء الأخير" msgstr[4] "%d تأثر بالإجراء الأخير" msgstr[5] "%d تأثر بالإجراء الأخير" -#: libraries/rte/rte_routines.lib.php:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "نتائج تنفيذ الإجراء %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "تنفيذ" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8054,44 +8136,44 @@ msgstr "تم تعديل الإجراء %1$s" msgid "Trigger %1$s has been created." msgstr "تم إنشاء الإجراء %1$s." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new User" msgid "Edit trigger" msgstr "أضف مستخدم جديد" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "اسم الخادم" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "وقت" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "اسم الجدول غير صالح" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8195,7 +8277,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8205,7 +8287,7 @@ msgstr "الجدول \"%s\" غير موجود!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8213,7 +8295,7 @@ msgid "Please configure the coordinates for table %s" msgstr "رجاء إعداد الموقع للجدول %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8225,27 +8307,27 @@ msgstr "بناء قاعدة البيانات \"%s\" - الصفحة %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "بناء الارتباطات" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "جدول المحتويات" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "الخواص" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "إضافي" @@ -8364,7 +8446,7 @@ msgstr "" msgid "Current Server" msgstr "الخادم الحالي" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8382,7 +8464,7 @@ msgstr "" msgid "Difference" msgstr "فرق" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -8401,7 +8483,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بيانات %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8412,11 +8494,11 @@ msgstr "" msgid "Columns" msgstr "اسم العمود" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" @@ -8509,7 +8591,7 @@ msgstr "" "لم يمكن تشغيل محقق SQL. الرجاء التأكد مما إذا كنت ثبتت إضافات PHP كما هو " "مشروح في %sالتوثيق%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8542,8 +8624,8 @@ msgstr "" "التنسيق: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "فهرست" @@ -8596,13 +8678,13 @@ msgstr "لا شيء" msgid "As defined:" msgstr "كما هو معرف:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "أساسي" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "النص كاملا" @@ -8616,20 +8698,20 @@ msgstr "" msgid "after %s" msgstr "بعد %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "أضف إلى الملاحظات" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "عليك اختيار عمود واحد على الأقل للعرض" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8637,43 +8719,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "بحث" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "اختيار الأعمدة (واحد على الأقل):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "أضف شروط البحث (الفقرة \"where\" ):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "رقم السجلات لكل صفحة" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "ترتيب العرض:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "استعرض القيم الغريبة" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "عمل \"استعلام بواسطة المثال\" (بدل: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8828,13 +8873,13 @@ msgstr "" msgid "Manage your settings" msgstr "المزايا العامّة للرابط" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "تمت التعديلات" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8845,7 +8890,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8876,7 +8921,7 @@ msgstr "إعداد الخادم" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -8902,9 +8947,9 @@ msgstr "عرض الإصدارات" msgid "Protocol version" msgstr "نسخة البروتوكول" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "المستخدم" @@ -9025,148 +9070,148 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "لايوجد قواعد بيانات" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "اسم الجدول" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "اسم الجدول" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "أنشئ الجدول" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "اختر قاعدة بيانات من القائمة" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "مساعدة" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Traditional Chinese" msgid "Toggle relation lines" msgstr "الصينية التقليدية" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "إرسال الاستعلام" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "عدد الجداول" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation view" msgid "Relation operator" msgstr "عرض الروابط" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "تصدير" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "في الاستعلام" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy #| msgid "Rename table to" msgid "Rename to" msgstr "تغيير اسم جدول إلى" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "اسم المستخدم" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "تكوين" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9180,59 +9225,59 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "صفحات" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "استورد الملفات" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "تصميم فهرسه جديده" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "اسم المستخدم" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "" @@ -9244,89 +9289,89 @@ msgstr "" msgid "Modifications have been saved" msgstr "تمت التعديلات" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "استورد الملفات" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "استورد الملفات" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "الكل" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "الجدول %s غير موجود أو محدد في %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9336,17 +9381,17 @@ msgstr "الجدول \"%s\" غير موجود!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "الملفات" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "احذف الاستعلامات المعروضة" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "اعرض الاستعلامات كاملة" @@ -9362,7 +9407,7 @@ msgstr "موضع" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "معلومات" @@ -9370,7 +9415,7 @@ msgstr "معلومات" msgid "Character Sets and Collations" msgstr "مجموعات المحارف وCollations" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9382,24 +9427,24 @@ msgstr[3] "تم حذف قواعد البيانات %s بنجاح." msgstr[4] "تم حذف قواعد البيانات %s بنجاح." msgstr[5] "تم حذف قواعد البيانات %s بنجاح." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "إحصائيات قواعد البيانات" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "مكن الإحصائيات" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9411,153 +9456,153 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "اعرض أو احفظ بناء قواعد البيانات." -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "بداية" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "نسخة" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "معطل" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "يتضمن كل الصلاحيات عدا GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "يسمح بتعديل بناء الجداول الموجودة مسبقا." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "يسمح بإنشاء قواعد بيانات وجداول جديدة." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "يسمح بإنشاء جداول جديدة." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "يسمح بإنشاء جداول مؤقتة." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "يسمح بحذف البيانات." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "يسمح بحذف قواعد البيانات." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "يسمح بحذف الجداول." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "يسمح باستيراد وتصدير البيانات من وإلى الملفّات." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "يسمح بإضافة المستخدمين والصلاحيات دون إعادة قراءة جداول الصلاحيات." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "يسمح بإنشاء وحذف الفهارس." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "يسمح بإضافة واستبدال البيانات." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "يسمح بقفل الجداول للعملية الحالية." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "يحد من عدد الاتصالات الجديدة التي يمكن للمستخدم فتحها بكل ساعة." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "يحد عدد الاستعلامات التي يستطيع المستخدم إرسالها إلى الخادم بكل ساعة." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9565,58 +9610,58 @@ msgstr "" "يحد عدد الأوامر التي ينفذها المستخدم بكل ساعة، والتي تغير أي جدول أو قاعدة " "بيانات." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "ليس له أي تأثير في نسخة MySQL الحالية." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "يسمح بإعادة تحميل إعدادات الخادم وتفريغ كاش الخادم." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "يعطي الحق للمستخدم بالسؤال عن مكان وجود slaves/masters." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "مطلوب لتوابع لاستنساخ." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "يسمح بقراءة البيانات." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "يسمح بالوصول لقائمة أسماء جميع قواعد البيانات." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "يسمح بإيقاف عمل الخادم." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9625,172 +9670,172 @@ msgstr "" "يسمح بالاتصال، حتى لو وصل حد عدد الاتصالات للأقصى.، مطلوب للمهام الإدارية " "كضبط الإعدادات العامة other users." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "يسمح بتعديل البيانات." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "لا صلاحيات." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "لا شيء" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "صلاحيات خاصة بالجدول" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "ملاحظه: اسم الامتياز لـMySQL يظهر ويقرأ باللغة الإنجليزية فقط " -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "إدارة" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "صلاحيات عامة" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "صلاحيات خاصة بقاعدة البيانات" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "حدود المصادر" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "ملاحظة: تغيير هذه الخيارات للرقم 0 )صفر( يلغي الحد." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "بيانات الدخول" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "لاتغير كلمة السر" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "المستخدم(ون) لم يتم إيجادهم." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "اسم المستخدم %s موجود مسبقاً!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "لقد أضفت مستخدم جديد." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "لقد جددت وحدثت الإمتيازات لـ %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "لقد أبطلت الامتيازات لـ %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "تم تغيير كلمة المرور لـ %s بنجاح." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "قيد حذف %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "قيد إعادة قراءة الصلاحيات." -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "تحرير الامتيازات" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "إبطال" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "تصدير" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "أي" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "الإمتيازات" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "الإمتيازات" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "معلومات المستخدم" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "منح" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "احذف المستخدمين المحددين" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9803,141 +9848,141 @@ msgstr "" "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "صلاحيات خاصة بالحقل" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "إضافة الصلاحيات على قاعدة البيانات التالية" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "إضافة الصلاحيات على الجدول التالي" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "غير معلومات الدخول / انسخ اسم مستخدم" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... أبق القديم." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... احذف القديم من جداول المستخدمين." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك." -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "المستخدمين ذوي صلاحية الوصول إلى "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "عام" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "خاص بقاعدة بيانات" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "حرف شامل" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "The row has been deleted" msgid "User has been added." msgstr "لقد تم حذف الصف" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9946,271 +9991,271 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "البنية فقط" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "البنية فقط" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "أخطاء." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "تم إيقاف العمليّة %s بنجاح." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "لم يستطع phpMyAdmin إيقاف العملية %s. يبدو أنها أوقفت مسبقا." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "بيانات التشغيل" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "حدث" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy #| msgid "Filter" msgid "Filters" msgstr "مرشح" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "لاتغير كلمة السر" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show tables" msgid "Show only alert values" msgstr "شاهد الجدول" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show tables" msgid "Show unformatted values" msgstr "شاهد الجدول" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "الروابط" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "نوع الاستعلام" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Actions" msgid "Instructions" msgstr "أفعال" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10218,117 +10263,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "تخصيص صفحة بدء التشغيل" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "أوامر" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "استلم" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "أرسل" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "محاولات أخفقت" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "ألغي" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "رقم" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "أمر" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10336,78 +10381,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10415,7 +10460,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10423,42 +10468,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10466,33 +10511,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10501,244 +10546,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "هيئة الملفات المستوردة" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10746,99 +10791,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10846,18 +10891,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10865,72 +10910,72 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "التتبع غير نشط." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "ابدأ" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "إضافة حقل جديد" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "حدث" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "إضافه/حذف عمود حقل" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "إستعادة القيمة الإفتراضية" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10939,7 +10984,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10947,18 +10992,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10966,11 +11011,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10978,93 +11023,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "حذف الرسم البياني" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "اختر الجداول" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "اسم الجدول غير صالح" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "أضف مستخدم جديد" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "إحصائيات" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "اختر الجداول" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "نوع الاستعلام" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11076,7 +11121,7 @@ msgstr[3] "الثانية" msgstr[4] "الثانية" msgstr[5] "الثانية" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11088,132 +11133,132 @@ msgstr[3] "الدقيقة" msgstr[4] "الدقيقة" msgstr[5] "الدقيقة" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "إستعلامات صادرة" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "اتصالات" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "متغيرات وإعدادات الخادم" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "قيمة الجلسة" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "قيمة عامة" @@ -11501,75 +11546,75 @@ msgstr "" msgid "Wrong data" msgstr "لايوجد بيانات" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "هل تريد حقا" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "التحقق من استعلام SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "ناتج استعلام SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "أنشئ بواسطة" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "علامة" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "مارس" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "عمود" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgctxt "Inline edit query" #| msgid "Inline" @@ -11577,106 +11622,106 @@ msgctxt "Chart type" msgid "Spline" msgstr "مضمن" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "بيتابايت" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "استورد الملفات" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "القيمة" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "القيمة" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "عرض بنية الجدول " -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "إضافه/حذف عمود حقل" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- لا شيء -" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "مجموع كلي" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "حفظ كملف" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11694,31 +11739,31 @@ msgstr "لايمكن تغيير اسم الفهرس إلى الأساسي!" msgid "No index parts defined!" msgstr "أجزاء الفهرسة غير معرفة!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "إضافة فهرس" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "وضع التعديل" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "اسم الفهرس :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"الأساسي\" يجب يجب أن يكون الاسم وأيضاً فقط المفتاح الأساسي!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "نوع الفهرس :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "إضافه كفهرس  %s صف(ـوف)" @@ -11741,262 +11786,262 @@ msgstr "%s جدول تم نقله إلى %s." msgid "Table %s has been copied to %s." msgstr "الجدول %s لقد تم نسخه إلى %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "اسم الجدول فارغ!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "تعديل ترتيب الجدول بـ" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(فردي)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "نقل جدول إلى (قاعدة بيانات.جدول):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "خيارات الجدول" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "تغيير اسم جدول إلى" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "نسخ الجدول إلى" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "بدل إلى الجدول المنسوخ" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "صيانة الجدول" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "إلغاء تجزئة الجدول" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "لقد تم إعادة تحميل الجدول %s بنجاح" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "إعادة تحميل الجدول (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "حذف البيانات او الجدول" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "إفراغ الجدول (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "حذف الجدول (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "تقسيم %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "حلل" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "تحقق" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "تحسين" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "إعادة بناء" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "إصلاح" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "إزالة التقسيم" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "تحديد التكامل المرجعي:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "عرض الجداول" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "المساحة المستخدمة" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "فعال" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "إحصائيات" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "ديناميكي" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "طول الصف" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "مقاس الصف " -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "العلاقات الداخلية" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "قيود المفتاح الغريب" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "إستعرض القيم المميزة" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "إضافة مفتاح رئيسي" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "إضافة فهرس مميز" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add new field" msgid "Add SPATIAL index" msgstr "إضافة حقل جديد" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "لا شيء" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "تم حذف العمود %s" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "تم إضافة المفتاح الأساسي في %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "تم إضافة الفهرس في %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "عرض المزيد من العمليات" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add columns" msgid "Move columns" msgstr "إضافة أعمدة" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "عرض نسخة للطباعة" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "عرض العلاقات" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "اقترح بناء الجدول" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "إضافة عمود" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "في نهاية الجدول" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "في بداية الجدول" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "بعد %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "إنشاء فهرس للعمود %s" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "مقسم" @@ -12152,71 +12197,37 @@ msgstr "تتبع تقارير التلاعب بالبيانات:" msgid "Create version" msgstr "إنشاء إصدار" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "عمل \"استعلام بواسطة المثال\" (بدل: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Additional search criteria" -msgstr "إخفاء معايير البحث" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "إعادة تعيين" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "الحصول على سمات جديدة!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "أنواع MIME المتوفرة" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "أنواع MIME التي تظهر بحروف مائلة ليس لها وظيفة تحويل منفصلة" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "التحويلات المتوفرة" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "الوصف" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "ليس لديك الحقوق الكافية بأن تكون هنا الآن!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "لقد تم تجديد الملف الشخصي." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "اسم VIEW" diff --git a/po/az.po b/po/az.po index a5426b786d..c9fcadcf5d 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: azerbaijani \n" @@ -14,79 +14,79 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Hamısını göster" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Sehife Nömresi:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Davam" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Açar söz" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Haqqında" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "" @@ -104,90 +104,91 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s bazası yaradildi." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Baza qısa izahatı: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Cedvel haqqında qısa izahat" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Sütun adları" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Başlanğıc deyeri" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Links to" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Qısa İzahatlar" @@ -196,14 +197,14 @@ msgstr "Qısa İzahatlar" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Xeyir" @@ -216,127 +217,127 @@ msgstr "Xeyir" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Beli" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Me'lumat bazasının sxemini göster" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Me'lumat bazasında cedvel yoxdur." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Hamısını Seç" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Heç birini seçme" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 #, fuzzy msgid "The database name is empty!" msgstr "Cedveli adı boşdur!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%s cedveli %s - e kopyalandı." -#: db_operations.php:443 +#: db_operations.php:449 #, fuzzy msgid "Rename database to" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:470 +#: db_operations.php:476 #, fuzzy msgid "Remove database" msgstr "Cedveli yeniden adlandır" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "%s bazası leğv edildi." -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy msgid "Drop the database (DROP)" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: db_operations.php:516 +#: db_operations.php:522 #, fuzzy msgid "Copy database to" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Sadece quruluş" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Quruluş ve me'lumat" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Sadece me'lumat" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT deyeri elave et" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "" -#: db_operations.php:559 +#: db_operations.php:565 #, fuzzy msgid "Switch to copied database" msgstr "Kopyalanmış cedvele keç" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 #, fuzzy msgid "Collation" msgstr "Quruluş" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -348,61 +349,61 @@ msgstr "" "Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler " "passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relational schema" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Cedvel" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Sıra sayı" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Boy" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "istifadede" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Quruluş" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "En son yenilenme" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "En son yoxlama" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -414,122 +415,122 @@ msgstr[1] "%s cedvel" msgid "You have to choose at least one column to display" msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Kopyalanmış cedvele keç" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sırala" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Artan sırada" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Azalan sırada" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Göster" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriteriyalar" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Ve" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "ya da" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Modify" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Kriteria Setirlerini Elave Et/Sil" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Sorğunu Yenile" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Use Tables" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query on database %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Emri İcra Et" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Giriş Tesdiq Edilmedi" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "sözlerin en azından birini" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "bütün sözleri" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "tamamile eyni sözü" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "requlyar ifade (regular expression) olaraq" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" üçün axtarış neticeleri %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -537,31 +538,31 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -569,265 +570,266 @@ msgid_plural "Total: %s matches" msgstr[0] "Cemi: %s uyğunluq" msgstr[1] "Cemi: %s uyğunluq" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "" -#: db_search.php:292 +#: db_search.php:295 #, 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:297 +#: db_search.php:300 msgid "Find:" msgstr "Tap:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Sözler boşluq ifadesi (\" \") ile ayrılmışdır." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Inside table(s):" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" msgstr "Inside table(s):" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Me'lumat bazasında cedvel yoxdur." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "%s cedveli boşaldıldı" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s sahesi leğv edildi" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "%s cedveli leğv edildi" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 #, fuzzy msgid "Replication" msgstr "Relations" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Cemi" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Seçilenleri:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Hamısını Seç" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Çap görüntüsü" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Boşalt" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Leğv et" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Cedveli yoxla" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Cedveli optimallaşdır" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Cedveli te'mir et" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Cedveli analiz et" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 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:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 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:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Me'lumat lüğeti" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Me'lumat Bazası" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 #, fuzzy msgid "Created" msgstr "Qur" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Status" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Fealiyyetler" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 #, fuzzy msgid "Versions" msgstr "Emeliyyatlar" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 #, fuzzy msgid "Structure snapshot" msgstr "Sadece quruluş" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "Cedveli yoxla" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "Me'lumat Bazası" @@ -842,18 +844,18 @@ msgstr "Sorğu tipi" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Yeni sahe elave et" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s faylını saxlamaq üçün lazım olan yer çatışmır." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -861,12 +863,12 @@ msgstr "" "%s faylı serverda onsuz da mövcuddur, ya faylın adını deyişdir ya da üzerine " "yazma variantlarını." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserver-in %s faylını saxlama izni yoxdur." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Sxem %s faylına qeyd edildi." @@ -876,186 +878,186 @@ msgstr "Sxem %s faylına qeyd edildi." msgid "Invalid export type" msgstr "Eksport şekli" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Yeni sahe elave et" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Setir leğvedicisi (Lines terminated by)" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Yeni İstifadeçi elave Et" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Yeni İstifadeçi elave Et" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy msgid "Add a polygon" msgstr "Yeni sahe elave et" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy msgid "Add geometry" msgstr "Yeni İstifadeçi elave Et" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Bookmark silindi." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Fayl oxuna bilmir" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Geri" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin frame-destekli görüntüleyicilerle (browser) daha yaxşı " "işleyir." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." @@ -1065,7 +1067,7 @@ msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." msgid "Do you really want to execute \"%s\"?" msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bazanı YOX ETMEK üzeresiniz!" @@ -1115,7 +1117,7 @@ msgstr "Yeni sahe elave et" msgid "Edit Index" msgstr "Bir sonrakı setre keç" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format msgid "Add %d column(s) to index" msgstr "Yeni sahe elave et" @@ -1135,16 +1137,16 @@ msgstr "Host adı boşdur!" msgid "The user name is empty!" msgstr "İstifadeçi adı boş qaldı!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Parol boşdur!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Girdiyiniz parollar eyni deyil!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1166,25 +1168,26 @@ msgstr "Remove selected users" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Deyişdir" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Quraşdırılmış Serverler" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "SQL sorğusu" @@ -1195,24 +1198,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Cemi" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1234,7 +1237,7 @@ msgstr "Quraşdırılmış Serverler" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Prosesler" @@ -1254,7 +1257,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "Sıra Statistikası" @@ -1299,14 +1302,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1364,32 +1367,32 @@ msgstr "" msgid "Bytes received" msgstr "Alındı" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Elaqeler" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "QB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1405,11 +1408,11 @@ msgstr "%s cedvel" msgid "Questions" msgstr "Emeliyyatlar" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Neqliyyat" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1432,11 +1435,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Heç biri" @@ -1536,7 +1539,7 @@ msgstr "Ümumi elaqe variantları" msgid "Current settings" msgstr "Ümumi elaqe variantları" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1622,7 +1625,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Müddet" @@ -1728,10 +1731,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" @@ -1786,9 +1789,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1803,11 +1806,11 @@ msgstr "Yerli" msgid "Processing Request" msgstr "Prosesler" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Heç bir baza seçilmemişdir." @@ -1819,9 +1822,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "Müveffeqiyyetle" @@ -1874,17 +1877,17 @@ msgstr "Yeni sahe elave et" msgid "Show indexes" msgstr "Show grid" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Enabled" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1922,7 +1925,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1964,8 +1967,8 @@ msgstr "SQL sorğusu" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Deyişdir" @@ -1973,18 +1976,18 @@ msgstr "Deyişdir" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Qeyd Et" @@ -1998,7 +2001,7 @@ msgstr "SQL sorğusu" msgid "Show search criteria" msgstr "SQL sorğusu" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2050,12 +2053,12 @@ msgstr "SQL result" msgid "Data point content" msgstr "İçindekiler Cedveli" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Diqqete Alma" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2076,7 +2079,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2170,7 +2173,7 @@ msgstr "Qurucu" msgid "Change Password" msgstr "Parolu Deyişdir" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2284,27 +2287,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2312,37 +2315,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dek" @@ -2391,32 +2394,32 @@ msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Şen" @@ -2549,16 +2552,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "saniyede" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "deqiqede" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "saatda" @@ -2579,70 +2582,297 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Sahe Sütunlarını Elave Et/Sil" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Başla" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Evvelki" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Sonrakı" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Son" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Şen" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows per page" +msgid "Number of rows" +msgstr "Sehife başına düşen setir sayı" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Baz Ert" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "üfüqi" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "üfüqi (tekrarlanan başlıqlar)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "şaquli" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "Emeliyyatlar" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Qismi Metnler" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Tam Metnler (Full Text)" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "Relational schema" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Relational schema" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Browser transformation" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Setir silindi" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Söndür" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "in query" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Gösterilen setirler" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "cemi" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "sorğu %01.4f saniyede icra edildi" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "PDF sxemini göster" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Server versiyası" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Link tapılmadı" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalıdır." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksler" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikal" @@ -2655,8 +2885,8 @@ msgstr "" msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2678,132 +2908,132 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Me'lumat Bazaları" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Quruluş" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Elave et" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Emeliyyatlar" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Sorğu" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Selahiyyetler" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "İstifadeçi" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Binary" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Deyişenler" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 #, fuzzy msgid "Charsets" msgstr "Charset" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Motorlar" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Xeta" @@ -2828,7 +3058,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2919,16 +3149,108 @@ 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 +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 +#, 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 +msgid "Value" +msgstr "Deyer" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Axtarış" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Elave et" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Sahe seçin (en az birini):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Axtarış şertlerini gir (\"where\" ifadesinin esas metni):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Sehife başına düşen setir sayı" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Sıralama şekli:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "SQL sorğusu" + +#: 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 "\"nümuneye göre sorğu\" gönderin (xüsusi işare: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "\"nümuneye göre sorğu\" gönderin (xüsusi işare: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Yenile" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2947,7 +3269,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3243,20 +3565,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Elaqe qura bilmirem: yalnış quruluş." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%s - e Xoş Gelmişsiniz!" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3268,61 +3590,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalıdır." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Sisteme Giriş" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 #, fuzzy msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "İstifadeçi Adı:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Parol:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Quraşdırılmış Serverler" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalıdır." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL server-e gire bilmirem" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Yanlış istifadeçi adı ve ya parol. Giriş tesdiq edilmedi." @@ -3354,7 +3670,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Cedveller" @@ -3366,13 +3682,13 @@ msgstr "Cedveller" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Me'lumat" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Aşma deyeri" @@ -3399,30 +3715,22 @@ msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." msgid "Check Privileges" msgstr "Selahiyyetleri Gözden Keçir" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3434,217 +3742,195 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktivi PMA konfiqurasiya faylınızda " "QURULMAMIŞDIR!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "En çox: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentasiya" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL sorğusu" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL deyir: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL-i İzah Et" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "SQL İzah Et-i Keç" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP Kodunu Gösterme" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL İfadesini Yoxlama" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL Tesdiqle" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Motorlar" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Baz" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y saat %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s deqiqe ve %s saniye" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Yeni sahe elave et" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Başla" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Evvelki" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Sonrakı" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Son" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr ""%s" me'lumat bazasına keç." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-server upload direktoriyası" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Çap et" @@ -3676,8 +3962,8 @@ msgid "Closed" msgstr "Unclosed quote" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Söndürülüb" @@ -3829,9 +4115,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Yenile" @@ -4041,10 +4327,6 @@ msgstr "Alternativ cedvel strukturu" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4103,7 +4385,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Fayl olaraq qeyd et" @@ -4113,7 +4395,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4232,7 +4514,7 @@ msgid "MIME type" msgstr "MIME-tipi" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relations" @@ -5765,9 +6047,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Parol" @@ -6039,30 +6321,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Parolu Deyişdir" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Parol Yoxdur" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Re-type" @@ -6085,13 +6361,13 @@ msgstr "Yeni me'lumat bazası qur" msgid "Create" msgstr "Qur" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Selahiyyet çatışmazlığı" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "Yeni Sehife qur" @@ -6099,9 +6375,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Adı" @@ -6287,25 +6563,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Server versiyası" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Server versiyası" @@ -6416,407 +6692,241 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Sahe Sütunlarını Elave Et/Sil" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Şen" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of rows" -msgstr "Sehife başına düşen setir sayı" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Baz Ert" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "üfüqi" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "üfüqi (tekrarlanan başlıqlar)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "şaquli" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "Emeliyyatlar" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Qismi Metnler" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Tam Metnler (Full Text)" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "Relational schema" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Relational schema" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Browser transformation" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Setir silindi" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Söndür" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "in query" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Gösterilen setirler" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "cemi" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "sorğu %01.4f saniyede icra edildi" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "PDF sxemini göster" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Server versiyası" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Link tapılmadı" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 #, fuzzy msgid "Version information" msgstr "Sisteme Giriş Me'lumatı" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 #, fuzzy msgid "Data files" msgstr "Sadece me'lumat" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB Status" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 #, fuzzy msgid "Pages to be flushed" msgstr "%s cedveli flush-landı" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Avtomatik qurtarma rejimi" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Keçici sıralama fayllarının maksimum boyu" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "İndeks yaradılarken istifade olunan keçici faylların maksimum boyu" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6824,49 +6934,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 #, fuzzy msgid "Log buffer size" msgstr "Sıralama buferinin (keçici yaddaşının) boyu" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6874,20 +6984,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Relations" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6947,15 +7057,15 @@ msgstr "Sxemi çıxarılan cedvel" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Gönderildi" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7026,14 +7136,14 @@ msgstr "Mövcud olan MIME-tipleri" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Host" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Hazırlanma Vaxtı" @@ -7233,21 +7343,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7342,12 +7443,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Sütun adları" @@ -7412,96 +7513,78 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funksiya" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binary" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binary - deyişiklik etme" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "web-server upload direktoriyası" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Elave et" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Yeni setir olaraq elave et" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Evvelki sehifeye qayıt" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Teze bir setir daha gir" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Bu sehifeye geri dön" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Bir sonrakı setre keç" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Deyer" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7518,38 +7601,38 @@ msgstr "Heç biri" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Cüme" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Submit" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Yeni sahe elave et" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Deyişiklik Yoxdur" @@ -7766,92 +7849,92 @@ msgstr "" msgid "This format has no options" msgstr "Bu formatın variantları yoxdur" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Müveffeqiyyetsiz" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "Müveffeqiyyetle" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Enabled" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Ümumi elaqe variantları" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Xüsusiyyetleri Göster" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF-lerin qurulması" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Sütun Qısa İzahatını Deyişdir" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 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:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Bookmark-lanmış SQL sorğusu" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-tarixçesi" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "Haqqında me'lumat (description) mövcud deyildir" @@ -7859,7 +7942,7 @@ msgstr "Haqqında me'lumat (description) mövcud deyildir" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7871,13 +7954,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "İstifadeçi adı" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Sırala" @@ -7891,7 +7974,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Deyişen" @@ -7906,38 +7989,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Her hansı host" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Yerli" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Bu Host" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7951,7 +8034,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7983,99 +8066,100 @@ msgstr "%s cedveli leğv edildi" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Gönderildi" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prosesler" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy msgid "Event name" msgstr "Eksport şekli" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 #, fuzzy msgid "Event type" msgstr "Eksport şekli" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Deyişdir" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Status" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Son" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Tam girişli" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8105,7 +8189,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -8125,117 +8209,117 @@ msgstr "%s cedveli leğv edildi" msgid "Routine %1$s has been created." msgstr "%s cedveli leğv edildi" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Sütun adları" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Quruluş" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Uzunluq/Deyerler*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Yeni sahe elave et" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy msgid "Remove last parameter" msgstr "Cedveli yeniden adlandır" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Uzunluq/Deyerler*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy msgid "Return options" msgstr "Cedvel başlığı" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Sorğu tipi" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8254,41 +8338,41 @@ msgstr "%s cedveli leğv edildi" msgid "Trigger %1$s has been created." msgstr "%s cedveli leğv edildi" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Yeni İstifadeçi elave Et" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "İstifadeçi adı" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Müddet" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8389,7 +8473,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8399,7 +8483,7 @@ msgstr "\"%s\" cedveli mövcud deyil!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8407,7 +8491,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Xahiş edirem, %s cedveli üçün koordinatları yeniden müeyyen et." #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8419,27 +8503,27 @@ msgstr "\"%s\" bazanın sxemi - Sehife %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "İçindekiler Cedveli" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Xüsusiyyetler" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Elave Xüs." @@ -8559,7 +8643,7 @@ msgstr "" msgid "Current Server" msgstr "Server" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Search in database" @@ -8578,7 +8662,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Search in database" @@ -8598,7 +8682,7 @@ msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8609,11 +8693,11 @@ msgstr "" msgid "Columns" msgstr "Sütun adları" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8697,7 +8781,7 @@ msgstr "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary php extensions as described in the %sdocumentation%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8729,8 +8813,8 @@ msgstr "" "dırnaqdan istifade etmeyin, bu formatı te'qib edin: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "İndeks" @@ -8784,13 +8868,13 @@ msgstr "Heç biri" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Birinci Dereceli" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Tam metn (Fulltext)" @@ -8804,19 +8888,19 @@ msgstr "" msgid "after %s" msgstr "Sonra: %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Yeni sahe elave et" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Depolama Motorları" @@ -8824,46 +8908,6 @@ msgstr "Depolama Motorları" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Axtarış" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Sahe seçin (en az birini):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Axtarış şertlerini gir (\"where\" ifadesinin esas metni):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Sehife başına düşen setir sayı" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Sıralama şekli:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "\"nümuneye göre sorğu\" gönderin (xüsusi işare: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9023,13 +9067,13 @@ msgstr "" msgid "Manage your settings" msgstr "Ümumi elaqe variantları" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Modifications have been saved" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9040,7 +9084,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9069,7 +9113,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9095,9 +9139,9 @@ msgstr "Server versiyası" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "İstifadeçi" @@ -9221,146 +9265,146 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Cedvel sırasına buna göre yeniden qur" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Cedvel sırasına buna göre yeniden qur" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Yeni Sehife qur" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Me'lumat bazası seç" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Traditional Chinese" msgid "Toggle relation lines" msgstr "Enenevi Çin Dili" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Emri İcra Et" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "Hamısını göster" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "Relation view" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Eksport" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "in query" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Cedveli yeniden adlandır" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "İstifadeçi adı" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Qur" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy msgid "Active options" msgstr "Cedvel başlığı" @@ -9374,60 +9418,60 @@ msgstr "%s cedveli leğv edildi" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Miqdar" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Faylları import et" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yeni indeks qur" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "İstifadeçi adı" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 #, fuzzy msgid "Internal relation added" msgstr "Ümumi elaqe variantları" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 #, fuzzy msgid "Relation deleted" msgstr "Relation view" @@ -9440,90 +9484,90 @@ msgstr "" msgid "Modifications have been saved" msgstr "" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Faylları import et" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Faylları import et" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "All" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" "%s cedveli %s içerisinde ya tapılmadı ya da qurulmamışdır" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9533,18 +9577,18 @@ msgstr "\"%s\" cedveli mövcud deyil!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "Sahe sayı" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Emrleri Tam Olaraq Göster" @@ -9560,7 +9604,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 #, fuzzy msgid "Information" msgstr "Sisteme Giriş Me'lumatı" @@ -9569,7 +9613,7 @@ msgstr "Sisteme Giriş Me'lumatı" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9577,24 +9621,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s bazası müveffeqiyyetle leğv edildi." msgstr[1] "%s bazası müveffeqiyyetle leğv edildi." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Me'lumat Bazası Statistikaları" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Statistikaları Aktivleşdir" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9606,215 +9650,215 @@ msgstr "" msgid "Storage Engines" msgstr "MySQL Depolama Motorları" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Me'lumat bazalarının sxemini göster" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Başla" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "PHP Versiyası" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Söndürülüb" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "GRANT-dan başqa bütün selahiyyetler daxildir." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Mövcud olan cedvellerin strukturunu deyişdirmeye icaze verir." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Yeni bazalar ve cedveller qurmağa icaze verir." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 #, fuzzy msgid "Allows creating stored routines." msgstr "Yeni cedveller qurmağa icaze verir." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Yeni cedveller qurmağa icaze verir." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Keçici cedveller qurmağa icaze verir." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 #, fuzzy msgid "Allows creating new views." msgstr "Yeni cedveller qurmağa icaze verir." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Me'lumat silmeye icaze verir." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Baza ve cedvel leğv etmeye icaze verir." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Cedvelleri leğv etmeye icaze verir." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9824,173 +9868,173 @@ msgstr "" "Required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Selahiyyet te'yin edilmedi." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Heç biri" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Cedvelexas selahiyyetler" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Qeyd: MySQL selahiyyet adları ingilis dilinde ifade edilmişdir" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administrasiya" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Qlobal selahiyyetler" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Me'lumat Bazasına Mexsus Selahiyyetler" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Qeyd: Bu variantları 0 (sıfır)-a çevirmek hüdudu (limiti) qaldıracaq." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Sisteme Giriş Me'lumatı" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Parolu deyişdirme" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "İstifadeçi(ler) tapılmadı." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Yeni istifadeçi elave etdiniz." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "%s üçün parol müveffeqiyyetle deyişdirilmişdir." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "%s silinir" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Selahiyyetleri Deyişdir" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Eksport" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Her hansı" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Selahiyyetler" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Selahiyyetler" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "User overview" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "İcaze ver" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, fuzzy, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10003,48 +10047,48 @@ msgstr "" "içerisindekiler webserver-in istifade etdiklerinden ferqli ola biler. Bu " "halda, davam etmeden evvel, selahiyyetleri %syeniden yüklemelisiniz%s." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Sütunaxas Selahiyyetler" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Aşağıdakı me'lumat bazası üçün selahiyyet müeyyen et" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Aşağıdakı cedvel üçün selahiyyetler müeyyen et" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Sistem Giriş Me'lumatını Deyişdir / İstifadeçini Kopyala" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Eyni selahiyyetlere sahib yeni istifadeçi qur ve ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... köhnesini saxla." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... istifadeçi cedvellerinden köhnesini sil." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10052,93 +10096,93 @@ msgstr "" " ... istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri " "yeniden yükle." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "qlobal" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "bazayaxas" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "xüsusi işare" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy msgid "User has been added." msgstr "%s sahesi leğv edildi" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "The privileges were reloaded successfully." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10147,123 +10191,123 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Me'lumat bazası seç" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Tam metn (Fulltext)" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Sadece quruluş" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Sadece quruluş" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s uğurla söndürüldü (killed)." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10271,148 +10315,148 @@ msgstr "" "phpMyAdmin %s emeliyyat thread-ini söndüre (kill) bilmedi. Böyük ehtimal " "artıq söndürülmüşdür." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 #, fuzzy msgid "Query cache" msgstr "Sorğu tipi" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 #, fuzzy msgid "Delayed inserts" msgstr "Genişletilmiş girişli" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 #, fuzzy msgid "Show open tables" msgstr "Cedvelleri göster" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Runtime Me'lumatı" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy msgid "Refresh rate: " msgstr "Qurucu" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Parolu deyişdirme" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy msgid "Show only alert values" msgstr "Cedvelleri göster" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy msgid "Show unformatted values" msgstr "Cedvelleri göster" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Sorğu tipi" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "Funksiya" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10420,117 +10464,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Variantlar" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Alındı" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Gönderildi" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Uğursuz Cehdler" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Dayandırılmış Elaqeler" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "Nömre" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Komanda Tipi" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10538,78 +10582,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10617,7 +10661,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10625,42 +10669,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10668,33 +10712,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10703,243 +10747,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Faylın Charset-i:" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10947,99 +10991,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11047,18 +11091,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11066,69 +11110,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Sorğu tipi" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Şen" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Yeni sahe elave et" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Qurucu" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11137,7 +11181,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11145,18 +11189,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11164,11 +11208,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11176,89 +11220,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy msgid "Preset chart" msgstr "Cedveli yeniden adlandır" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Select Tables" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Yeni İstifadeçi elave Et" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "SQL sorğusu" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Sıra Statistikası" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Hamısını Seç" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Sorğu tipi" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11266,7 +11310,7 @@ msgid_plural "%d seconds" msgstr[0] "saniyede" msgstr[1] "saniyede" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11274,131 +11318,131 @@ msgid_plural "%d minutes" msgstr[0] "istifadede" msgstr[1] "istifadede" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL sorğusu" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Elaqeler" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Server Deyişenleri Ve Variantları" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Sessiya deyeri" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Qlobal deyer" @@ -11690,179 +11734,179 @@ msgstr "" msgid "Wrong data" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL Tesdiqle" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL result" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Qurucu" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Etiket" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy msgid "The columns have been moved successfully." msgstr "The selected users have been deleted successfully." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Sütun adları" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Motorlar" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Faylları import et" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "SQL sorğusu" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Deyer" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Deyer" -#: tbl_create.php:31 +#: tbl_create.php:30 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "%s istifadeçisi mövcuddur!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "%s cedveli leğv edildi" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Cedvelin sxemini göster" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Cemi" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Fayl olaraq qeyd et" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -11880,32 +11924,32 @@ msgstr "İndeksi Birinci Dereceli (PRIMARY) olaraq yeniden adlandıra bilmirem!" msgid "No index parts defined!" msgstr "İndeks qisimleri te'yin edilmedi!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Yeni sahe elave et" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Add new field" msgid "Edit index" msgstr "Yeni sahe elave et" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "İndex adı :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" sadece birinci dereceli açarın adı olmalıdır!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "İndex tipi :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "İndekse  %s sütun elave et" @@ -11928,277 +11972,277 @@ msgstr "%s cedveli %s - e daşınmışdır." msgid "Table %s has been copied to %s." msgstr "%s cedveli %s - e kopyalandı." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Cedveli adı boşdur!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Cedvel sırasına buna göre yeniden qur" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(tek-tek)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Cedveli daşı (me'lumat bazası.cedvel):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 #, fuzzy msgid "Table options" msgstr "Cedvel başlığı" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Cedveli yeniden adlandır" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Cedveli kopyala (me'lumat bazası.cedvel):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Kopyalanmış cedvele keç" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Cedvel temizliyi" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "%s cedveli flush-landı" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Cedveli flush-la (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Sxemi çıxarılan cedvel" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Cedvel temizliyi" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "Cedveli te'mir et" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Cedvelleri göster" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Yer istifadesi" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Sıra Statistikası" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Sıra uzunluğu" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Sıra boyu" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy msgid "Internal relation" msgstr "Ümumi elaqe variantları" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Session value" msgid "Distinct values" msgstr "Sessiya deyeri" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add new field" msgid "Add SPATIAL index" msgstr "Yeni sahe elave et" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Heç biri" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "%s cedveli leğv edildi" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "%s üzerine Birinci Dereceli Açar elave edildi." -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "%s üzerine indeks elave edildi" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "PHPInfo() me'lumatını göster" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy msgid "Move columns" msgstr "Yeni sahe elave et" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Çap görüntüsü" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Alternativ cedvel strukturu" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy msgid "Add column" msgstr "Yeni sahe elave et" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Cedvelin sonuna" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Cedvelin başına" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Sonra: %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12354,73 +12398,40 @@ msgstr "" msgid "Create version" msgstr "Server versiyası" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "\"nümuneye göre sorğu\" gönderin (xüsusi işare: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "SQL sorğusu" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Yenile" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Mövcud olan MIME-tipleri" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-types printed in italics do not have a seperate transformation function" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Mövcud transformasiyalar" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Haqqında" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Burada olma haqqınız yoxdur!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profil yenilendi." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/be.po b/po/be.po index c8aa1ff746..a9f561380a 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: belarusian_cyrillic \n" @@ -15,21 +15,21 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Паказаць усе" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Старонка:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "акно або налады бясьпекі вашага браўзэра сканфігураныя на блякаваньне " "міжваконных ўзаемадзеяньняў" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Панеслася" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Імя ключа" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Апісаньне" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Выкарыстоўваць гэта значэньне" @@ -106,90 +106,91 @@ msgstr "" msgid "Database %1$s has been created." msgstr "База дадзеных %1$s створаная." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Камэнтар да базы дадзеных: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Камэнтар да табліцы" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Назвы калёнак" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Нуль" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Па змоўчаньні" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Зьвязаная з" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Камэнтары" @@ -198,14 +199,14 @@ msgstr "Камэнтары" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Не" @@ -218,125 +219,125 @@ msgstr "Не" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Так" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Праглядзець дамп (схему) базы дадзеных" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "У базе дадзеных табліц ня выяўлена." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Выбраць усё" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Зьняць усе адзнакі" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Імя базы дадзеных не пазначанае!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "База дадзеных %s была перайменаваная ў %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "База дадзеных %s была скапіяваная ў %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:470 +#: db_operations.php:476 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Перайменаваць базу дадзеных у" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "База дадзеных %s была выдаленая." -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy msgid "Drop the database (DROP)" msgstr "Базы дадзеных адсутнічаюць" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Капіяваць базу дадзеных у" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Толькі структуру" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Структуру і дадзеныя" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Толькі дадзеныя" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "выканаць CREATE DATABASE перад капіяваньнем" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Дадаць %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Дадаць абмежаваньні" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Перайсьці да скапіяванай базы дадзеных" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Супастаўленьне" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -348,61 +349,61 @@ msgstr "" "Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб " "высьветліць чаму, націсьніце %sтут%s." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Рэляцыйная схема" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Табліца" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Радкі" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Памер" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "выкарыстоўваецца" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Створаная" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Апошняе абнаўленьне" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Апошняя праверка" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -414,122 +415,122 @@ msgstr[1] "%s табліц(ы)" msgid "You have to choose at least one column to display" msgstr "Вам неабходна выбраць прынамсі адну калёнку для адлюстраваньня" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Перайсьці да скапіяванай табліцы" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Парадак" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "прамы" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "адваротны" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Паказаць" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Крытэр" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Уставіць" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "І" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Выдаліць" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Або" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Зьмяніць" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Дадаць/выдаліць радок крытэру" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Абнавіць запыт" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Выкарыстоўваць табліцы" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запыт да БД %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Выканаць запыт" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "У доступе адмоўлена" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "прынамсі адно з словаў" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "усе словы" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "дакладную фразу" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "рэгулярны выраз" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Вынікі пошуку \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -537,31 +538,31 @@ msgid_plural "%1$s matches inside table %2$s" msgstr[0] "%s супадзеньняў у табліцы %s" msgstr[1] "%s супадзеньняў у табліцы %s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Дамп дадзеных табліцы" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -569,71 +570,71 @@ msgid_plural "Total: %s matches" msgstr[0] "Агулам: %s супадзеньняў" msgstr[1] "Агулам: %s супадзеньняў" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Пошук у базе дадзеных" -#: db_search.php:292 +#: db_search.php:295 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Слова(ы) або значэньне(і) для пошуку (маска: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Знайсьці:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Словы, падзеленыя прагалам (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "У табліцы(ах):" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" msgstr "Унутры поля:" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "У базе дадзеных табліц ня выяўлена." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "невядома" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Табліца %s была ачышчаная" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Выгляд %s быў выдалены" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Табліца %s была выдаленая" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -642,199 +643,200 @@ msgstr "" "Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да " "%sдакумэнтацыі%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Рэплікацыя" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Усяго" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "%s зьяўляецца машынай захаваньня дадзеных па змоўчаньні на гэтым MySQL-" "сэрвэры." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "З адзначанымі:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Адзначыць усё" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспарт" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Вэрсія для друку" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Ачысьціць" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Выдаліць" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Праверыць табліцу" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Аптымізаваць табліцу" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Рамантаваць табліцу" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Аналізаваць табліцу" -#: db_structure.php:719 +#: db_structure.php:717 #, fuzzy msgid "Add prefix to table" msgstr "Базы дадзеных адсутнічаюць" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Слоўнік дадзеных" -#: db_tracking.php:74 +#: db_tracking.php:75 #, fuzzy msgid "Tracked tables" msgstr "Праверыць табліцу" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "База дадзеных" -#: db_tracking.php:81 +#: db_tracking.php:82 #, fuzzy msgid "Last version" msgstr "Стварыць сувязь" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 #, fuzzy msgid "Created" msgstr "Стварыць" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Стан" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Дзеяньне" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 #, fuzzy msgid "Versions" msgstr "Пэрсыдзкая" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 #, fuzzy msgid "Structure snapshot" msgstr "Толькі структуру" -#: db_tracking.php:183 +#: db_tracking.php:184 #, fuzzy msgid "Untracked tables" msgstr "Праверыць табліцу" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "Праверыць табліцу" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "База дадзеных" @@ -848,18 +850,18 @@ msgstr "Тып запыту" msgid "Selected export type has to be saved in file!" msgstr "Дадзеныя выбранага тыпу экспартаваньня мусяць быць зазаванымі ў файл!" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Дадаць новае поле" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недастаткова месца для захаваньня ў файл %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -867,12 +869,12 @@ msgstr "" "Файл %s ужо існуе на сэрвэры, зьмяніце імя файла або праверце опцыю " "перазапісу." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Вэб-сэрвэр ня мае дазволу для захаваньня ў файл %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп захаваны ў файл %s." @@ -882,103 +884,103 @@ msgstr "Дамп захаваны ў файл %s." msgid "Invalid export type" msgstr "Тып экспарту" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Дадаць новае поле" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Радкі падзеленыя" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Дадаць %s новыя палі" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy msgid "Add geometry" msgstr "Дадаць новага карыстальніка" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -988,21 +990,21 @@ msgstr "" "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " "абмежаваньне." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Паказваючы закладку" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Закладка была выдаленая." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Немагчыма прачытаць файл" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -1012,7 +1014,7 @@ msgstr "" "(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -1022,27 +1024,27 @@ msgstr "" "загружаны, альбо памер файла перавысіў максымальны памер, вызначаны " "канфігурацыяй PHP. Гл. FAQ 1.16." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Немагчыма загрузіць плагіны імпартаваньня, калі ласка, праверце ўсталёўку!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створаная" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Імпартраваньне пасьпяхова завершанае, выканана %d запытаў." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1050,7 +1052,7 @@ msgstr "" "Выйшаў дазволены час выкананьня скрыпта. Калі вы хочаце завершыць " "імпартаваньне, калі ласка, загрузіце файл зноў і імпартаваньне ўзнавіцца." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1059,23 +1061,23 @@ msgstr "" "звычайна значыць, што phpMyAdmin ня зможа скончыць гэтае імпартаваньня, калі " "вы не павялічыце ліміты выкананьня php-скрыптоў." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Назад" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Для работы phpMyAdmin патрэбны браўзэр з падтрымкай фрэймаў." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Каманды \"DROP DATABASE\" адключаныя." @@ -1085,7 +1087,7 @@ msgstr "Каманды \"DROP DATABASE\" адключаныя." msgid "Do you really want to execute \"%s\"?" msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!" @@ -1135,7 +1137,7 @@ msgstr "Дадаць новае поле" msgid "Edit Index" msgstr "Рэдагаваць наступны радок" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -1156,16 +1158,16 @@ msgstr "Пустое імя хосту!" msgid "The user name is empty!" msgstr "Пустое імя карыстальніка!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Пусты пароль!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Паролі не супадаюць!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1188,25 +1190,26 @@ msgstr "Выдаліць выбраных карыстальнікаў" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Рэдагаваць" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Выбар сэрвэра" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "SQL-запыт" @@ -1217,24 +1220,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Агулам" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1256,7 +1259,7 @@ msgstr "Выбар сэрвэра" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Працэсы" @@ -1276,7 +1279,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "Статыстыка радку" @@ -1326,14 +1329,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "МіБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "КiБ" @@ -1395,32 +1398,32 @@ msgstr "" msgid "Bytes received" msgstr "Атрымана" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Падлучэньні" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Б" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "ГіБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "ТіБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "ПіБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "ЭіБ" @@ -1436,11 +1439,11 @@ msgstr "%s табліц(ы)" msgid "Questions" msgstr "Пэрсыдзкая" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Трафік" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1466,11 +1469,11 @@ msgstr "Зьвяць зь сеткай" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Няма" @@ -1570,7 +1573,7 @@ msgstr "Магчымасьці асноўных сувязяў" msgid "Current settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1660,7 +1663,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Час" @@ -1767,10 +1770,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Імрарт" @@ -1829,9 +1832,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "Скасаваць" @@ -1846,11 +1849,11 @@ msgstr "Лякальны" msgid "Processing Request" msgstr "Працэсы" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Ня выбраная база дадзеных." @@ -1862,9 +1865,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1920,19 +1923,19 @@ msgstr "Дадаць новае поле" msgid "Show indexes" msgstr "Паказаць сетку" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Адключыць праверку зьнешніх ключоў" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Уключана" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1970,7 +1973,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -2012,8 +2015,8 @@ msgstr "SQL-запыт" msgid "No rows selected" msgstr "Ніводны радок ня выбраны" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Зьмяніць" @@ -2021,18 +2024,18 @@ msgstr "Зьмяніць" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "%d не зьяўляецца карэктным нумарам радка." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Захаваць" @@ -2046,7 +2049,7 @@ msgstr "SQL-запыт" msgid "Show search criteria" msgstr "SQL-запыт" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2098,12 +2101,12 @@ msgstr "Дзеяньні з вынікамі запытаў" msgid "Data point content" msgstr "Памер указальніка на дадзеныя" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ігнараваць" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Скапіяваць" @@ -2125,7 +2128,7 @@ msgstr "Выберыце зьнешні ключ" msgid "Please select the primary key or a unique key" msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2219,7 +2222,7 @@ msgstr "Згенэраваць" msgid "Change Password" msgstr "Зьмяніць пароль" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2333,27 +2336,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2361,37 +2364,37 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Сьн" @@ -2440,32 +2443,32 @@ msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Суб" @@ -2601,16 +2604,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "у сэкунду" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "у хвіліну" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "у гадзіну" @@ -2631,21 +2634,233 @@ msgstr "" msgid "Font size" msgstr "Памер шрыфта" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +msgid "Save edited data" +msgstr "Хатняя тэчка дадзеных" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Дадаць/выдаліць калёнку крытэру" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Першая старонка" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Папярэдняя старонка" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Наступная старонка" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Апошняя старонка" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Суб" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "Колькасьць палёў" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Пан" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "гарызантальна" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "гарызантальна (павернутыя загалоўкі)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "вэртыкальна" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Выканаць запыт з закладак" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Сартаваць па ключы" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Налады" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Частковыя тэксты" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Поўныя тэксты" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Ключ сувязі" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational display field" +msgid "Relational display column" +msgstr "Адлюстраванае поле сувязі" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Пераўтварэньне MIME-тыпу браўзэрам" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Радок быў выдалены" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Спыніць" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "Значэньне можа быць прыблізным. Гл. FAQ 3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "па запыту" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Паказаныя запісы" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "усяго" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Запыт выконваўся %01.4f сэк" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Дзеяньні з вынікамі запытаў" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Вэрсія для друку (з усім тэкстам)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Паказаць PDF-схему" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Стварыць сувязь" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Сувязь ня знойдзеная" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php." "ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2653,52 +2868,67 @@ msgstr "" "Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў " "вызначаны ў HTML-форме." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Файл быў загружаны толькі часткова." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Адсутнічае часовая тэчка." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Памылка запісу на дыск." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Загрузка файла спыненая пашырэньнем." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Падчас загрузкі файла адбылася невядомая памылка." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел 1.11 у FAQ" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Адкрыць новае акно phpMyAdmin" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Індэксы" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Унікальнае" @@ -2711,8 +2941,8 @@ msgstr "Сьціснутая" msgid "Cardinality" msgstr "Колькасьць элемэнтаў" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Камэнтар" @@ -2735,130 +2965,130 @@ msgstr "" "Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь " "іх, магчыма, можна выдаліць." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Базы дадзеных" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Сэрвэр" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Структура" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Уставіць" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Апэрацыі" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Табліца — пустая!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "База дадзеных — пустая!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Запыт згодна прыкладу" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Прывілеі" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Працэдуры" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Падзеі" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Дызайнэр" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Карыстальнік" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Двайковы лог" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Зьменныя" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Кадыроўкі" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Машыны" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Памылка" @@ -2886,7 +3116,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Устаўлена радкоў: %1$d." msgstr[1] "Устаўлена радкоў: %1$d." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2984,16 +3214,108 @@ 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 +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 +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 +msgid "Value" +msgstr "Значэньне" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Пошук" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Уставіць" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Выбраць палі (прынамсі адно):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Дадаць умовы пошуку (цела для ўмовы \"where\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Колькасьць радкоў на старонку" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Парадак прагляду:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Праглядзець зьнешнія значэньні" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "SQL-запыт" + +#: 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 "Выканаць \"запыт згодна прыклада\" (сымбаль падстаноўкі: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Выканаць \"запыт згодна прыклада\" (сымбаль падстаноўкі: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +msgid "How to use" +msgstr "Пашырэньне PHP" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Скінуць" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Дапушчальны шлях да малюнкаў тэмы %s ня знойдзены!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Папярэдні прагляд недаступны." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "гэтая" @@ -3012,7 +3334,7 @@ msgstr "Тэма %s ня знойдзеная!" msgid "Theme path not found for theme %s!" msgstr "Ня знойдзены шлях да тэмы %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3310,13 +3632,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Немагчыма падлучыцца: няправільныя налады." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Запрашаем у %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3325,7 +3647,7 @@ msgstr "" "Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго " "стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3341,48 +3663,42 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Уваход у сыстэму" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Сэрвэр" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Імя карыстальніка:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Пароль:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Выбар сэрвэра" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" @@ -3390,13 +3706,13 @@ msgstr "" "Не было аніякай актыўнасьці на працягу %s сэкундаў. Калі ласка, увайдзіце " "зноў" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Немагчыма залагавацца на сэрвэр MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Няправільны лагін/пароль. У доступе адмоўлена." @@ -3429,7 +3745,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Табліц" @@ -3441,13 +3757,13 @@ msgstr "Табліц" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Дадзеныя" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Выкарыстаньне рэсурсаў" @@ -3475,33 +3791,25 @@ msgstr "Праверыць прывілеі для базы "%s"." msgid "Check Privileges" msgstr "Праверыць прывілеі" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3513,220 +3821,198 @@ msgstr "" "Дырэктыва $cfg['PmaAbsoluteUri'] ПАВІННА быць вызначаная ў " "вашым канфігурацыйным файле!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Некарэктны індэкс сэрвэра: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Максымальны памер: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Дакумэнтацыя" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-запыт" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "Адказ MySQL: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Тлумачыць SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Не тлумачыць SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Без PHP-коду" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Стварыць PHP-код" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Абнавіць" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Не правяраць SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Праверыць SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Машыны" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Прафіляваньне" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Ндз" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Працэдуры" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Першая старонка" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Папярэдняя старонка" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Наступная старонка" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Апошняя старонка" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Перайсьці да базы дадзеных "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Друк" @@ -3758,8 +4044,8 @@ msgid "Closed" msgstr "Незакрытае двукосьсе" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Адключана" @@ -3910,9 +4196,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Скінуць" @@ -4125,10 +4411,6 @@ msgstr "Прапанаваная структура табліцы" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4187,7 +4469,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Захаваць як файл" @@ -4197,7 +4479,7 @@ msgid "Character set of the file" msgstr "Кадыроўка файла:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Фармат" @@ -4316,7 +4598,7 @@ msgid "MIME type" msgstr "MIME-тып" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Сувязі" @@ -5879,9 +6161,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Пароль" @@ -6163,12 +6445,6 @@ msgstr "" msgid "Details..." msgstr "Падрабязьней..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "Значэньне можа быць прыблізным. Гл. FAQ 3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6177,18 +6453,18 @@ msgstr "" "канфігурацыйным файле." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Зьмяніць пароль" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Без пароля" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Пацьверджаньне" @@ -6213,22 +6489,22 @@ msgstr "Стварыць новую базу дадзеных" msgid "Create" msgstr "Стварыць" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Без прывілеяў" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Назва" @@ -6425,25 +6701,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Вэрсія кліента MySQL" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Стварыць сувязь" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Стварыць сувязь" @@ -6570,193 +6846,27 @@ msgstr "" msgid "Language" msgstr "Мова" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -msgid "Save edited data" -msgstr "Хатняя тэчка дадзеных" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Дадаць/выдаліць калёнку крытэру" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Суб" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "Колькасьць палёў" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Пан" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "гарызантальна" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "гарызантальна (павернутыя загалоўкі)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "вэртыкальна" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Выканаць запыт з закладак" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Сартаваць па ключы" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Налады" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Частковыя тэксты" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Поўныя тэксты" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Ключ сувязі" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational display field" -msgid "Relational display column" -msgstr "Адлюстраванае поле сувязі" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Пераўтварэньне MIME-тыпу браўзэрам" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Радок быў выдалены" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Спыніць" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "па запыту" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Паказаныя запісы" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "усяго" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Запыт выконваўся %01.4f сэк" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Дзеяньні з вынікамі запытаў" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Вэрсія для друку (з усім тэкстам)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Паказаць PDF-схему" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Стварыць сувязь" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Сувязь ня знойдзеная" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Інфармацыя пра вэрсію" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Хатняя тэчка дадзеных" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Агульная частка шляху тэчкі да ўсіх файлаў дадзеных InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Файлы дадзеных" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Аўтапашыральнае прырашчэньне" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6764,11 +6874,11 @@ msgstr "" " Памер прырашчэньня для пашырэньня памеру прасторы аўтапашыральнай табліцы, " "калі яна запоўніцца." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Памер пулу буфэру" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6776,79 +6886,79 @@ msgstr "" "Памер буфэру ў памяці, які InnoDB выкарыстоўвае для кэшаваньня дадзеных і " "індэксаў табліц." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Пул буфэру" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Стан InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Выкарыстаньне пулу буфэру" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "старонак" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Вольных старонак" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Брудных старонак" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Старонак з дадзенымі" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Скінуць кэш старонак" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Занятых старонак" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Фіксаваныя старонкі" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Актыўнасьць пулу буфэру" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Запыты чытаньня" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Запытаў запісу" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Пропускаў чытаньня" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Затрымак запісу" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Пропускаў чытаньня ў %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Затрымак запісу ў %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Памер указальніка на дадзеныя" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6856,11 +6966,11 @@ msgstr "" "Значэньне па змоўчаньні памеру ўказальніка ў байтах, для выкарыстаньня ў " "CREATE TABLE для табліц MyISAM, калі ня вызначаная опцыя MAX_ROWS." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Рэжым аўтаматычнага ўзнаўленьня" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6868,11 +6978,11 @@ msgstr "" "Рэжым для аўтаматычнага ўзнаўленьня пашкоджаных табліц MyISAM, як вызначаны " "праз опцыю --myisam-recover загрузкі сэрвэра." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Максымальны памер для часовых файлаў сартаваньня" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6882,11 +6992,11 @@ msgstr "" "перастварэньня індэксу MyISAM (падчас REPAIR TABLE, ALTER TABLE, або LOAD " "DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Максымальны памер часовых файлаў для стварэньня індэксу" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6896,11 +7006,11 @@ msgstr "" "індэксу MyISAM, будзе большы, чым выкарыстаньне для кэшу ключоў памеру, " "пазначанага тут, выберыце мэтад кэшаваньня ключоў." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Патокаў узнаўленьня" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6909,11 +7019,11 @@ msgstr "" "паралельна (кожны індэкс у сваім уласным патоку) падчас узнаўленьня працэсам " "сартаваньня." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Памер буфэру сартаваньня" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6921,11 +7031,11 @@ msgstr "" "Буфэр, які выдзяляецца для сартаваньня індэксаў MyISAM падчас REPAIR TABLE " "або падчас стварэньня індэксаў, выкарыстоўваючы CREATE INDEX ці ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Памер кэшу індэксаў" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6933,11 +7043,11 @@ msgstr "" "Гэта памер памяці, якая выдзяляецца для кэшу індэксаў. Памер па змоўчаньні — " "32 МБ. Гэта памяць выкарыстоўваецца толькі для кэшаваньня старонак індэксаў." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Памер кэшу запісаў" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6948,11 +7058,11 @@ msgstr "" "выкарыстоўваецца для кэшаваньня зьменаў файлаў апрацоўкі дадзеных (.xtd) і " "файлаў указальнікаў радкоў (.xtr)." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Памер кэшу логаў" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6961,11 +7071,11 @@ msgstr "" "выкарыстоўваецца для кэшаваньня дадзеныя логу транзакцый. Памер па " "змоўчаньні — 16 МБ." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Парог файла логу" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6973,11 +7083,11 @@ msgstr "" "Памер логу транзакцый перад выкананьнем выкананьня, да моманту, пакуль будзе " "створаны новы файл. Значэньне па Памер — 16 МБ." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Памер буфэру транзакцый" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6985,11 +7095,11 @@ msgstr "" "Памер глябальнага буфэру логу транзакцый (кожная машына захаваньня дадзеных " "выдзяляле 2 буфэры гэтага памеру). Памер па змоўчаньні — 1 МБ." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Частата кантрольных кропак" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6997,11 +7107,11 @@ msgstr "" "Колькасьць дадзеных, якія запісваюцца ў лог транзакцый перад тым, як " "выканаецца кантрольная кропка. Значэньне па змоўчаньні — 24 МБ." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Парог лагаваньня дадзеных" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -7013,11 +7123,11 @@ msgstr "" "Такім чынам, значэньне гэтай зьменнай можа быць павялічана, каб павялічаць " "агульную колькасьць дадзеных, якія могуць захоўвацца ў базе дадзеных." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Парог сьмецьця" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -7026,11 +7136,11 @@ msgstr "" "Гэтае значэньне можа знаходзіцца ў межах ад 1 да 99. Значэньне па змоўчаньні " "— 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Памер буфэру логу" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -7040,27 +7150,27 @@ msgstr "" "складае 256МБ. Машына захаваньня дадзеных выдзяляе па аднаму буфэру на кожны " "паток, але толькі калі патоку патрабуецца запісваць лог дадзеных." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Памер павелічэньня файлаў з дадзенымі" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Памер павелічэньня файлаў апрацоўкі дадзеных (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Памер павелічэньня файлаў радкоў" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Памер павелічэньня файлаў указальнікаў на радкі (.xtr)." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Колькасьць файлаў логу" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -7072,20 +7182,20 @@ msgstr "" "гэтае значэньне, старыя файлы логу будуць выдаленыя. У іншым выпадку яны " "будуць перайменаваныя і ім будзе дадзены чарговы найвышэйшы нумар." -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Сувязі" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -7145,14 +7255,14 @@ msgstr "Дамп дадзеных табліцы" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Падзея" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7226,14 +7336,14 @@ msgstr "Даступныя MIME-тыпы" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Хост" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Час стварэньня" @@ -7433,21 +7543,12 @@ msgstr "Выгляд" msgid "Export contents" msgstr "Тып экспарту" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Адкрыць новае акно phpMyAdmin" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." @@ -7544,12 +7645,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Імя табліцы" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Назвы калёнак" @@ -7619,99 +7720,81 @@ msgstr "Рэжым сумяшчальнасьці SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Функцыя" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Схаваць" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Двайковы" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Двайковыя дадзеныя — не рэдагуюцца" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Уставіць" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Пачаць устаўку зноў з %s-га радку" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "і пасьля" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Уставіць як новы радок" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 #, fuzzy msgid "Show insert query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Перайсьці да папярэдняй старонкі" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Дадаць яшчэ адзін радок" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Вярнуцца да гэтай старонкі" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Рэдагаваць наступны радок" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Значэньне" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" @@ -7728,38 +7811,38 @@ msgstr "Няма" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Пят" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Адправіць" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Дадаць новае поле" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Ці сапраўды вы жадаеце " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Няма зьменаў" @@ -7971,94 +8054,94 @@ msgstr "" msgid "This format has no options" msgstr "Гэты фармат ня мае опцыяў" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "не OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Уключана" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Магчымасьці асноўных сувязяў" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Паказваць магчымасьці" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Стварэньне PDF-файлаў" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Паказваць камэнтары калёнак" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Пераўтварэньне MIME-тыпу браўзэрам" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "За інфармацыяй як абнавіць табліцу column_comments зьвярніцеся, калі ласка, " "да дакумэнтацыі" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Закладзены SQL-запыт" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Гісторыя SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "няма апісаньня" @@ -8066,7 +8149,7 @@ msgstr "няма апісаньня" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -8078,13 +8161,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Імя карыстальніка" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Парадак" @@ -8100,7 +8183,7 @@ msgid "Slave status" msgstr "Паказаць стан залежных сэрвэраў" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Зьменная" @@ -8114,38 +8197,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Любы карыстальнік" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Выкарыстоўваць тэкставае поле" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Любы хост" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Лякальны" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Гэты хост" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Выкарыстоўваць табліцу хостаў" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8159,7 +8242,7 @@ msgstr "Згенэраваць пароль" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8192,103 +8275,104 @@ msgstr "Табліца %1$s створаная." msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Вэб-сэрвэр" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Працэсы" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." msgid "Details" msgstr "Падрабязьней..." -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Тып падзеі" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Тып падзеі" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Зьмяніць" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Выканаць запыт з закладак" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Стан" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Апошняя старонка" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Поўная ўстаўка" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8319,7 +8403,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -8341,121 +8425,121 @@ msgstr "Табліца %s была выдаленая" msgid "Routine %1$s has been created." msgstr "Табліца %1$s створаная." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy msgid "Edit routine" msgstr "Вэб-сэрвэр" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Працэдуры" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Прамыя лініі сувязяў" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Даўжыня/Значэньні*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Дадаць новае поле" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Перайменаваць базу дадзеных у" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Тып працэдуры" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Даўжыня/Значэньні*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Опцыі табліцы" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Тып запыту" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8477,43 +8561,43 @@ msgstr "Табліца %s была выдаленая" msgid "Trigger %1$s has been created." msgstr "Табліца %1$s створаная." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Дадаць новага карыстальніка" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Трыгеры" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Час" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Некарэктнае імя табліцы" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8620,7 +8704,7 @@ msgstr "Праверыць табліцу" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8630,7 +8714,7 @@ msgstr "Табліцы \"%s\" не існуе!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8638,7 +8722,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Калі ласка, сканфігуруйце каардынаты для табліцы %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8652,27 +8736,27 @@ msgstr "Структура базы \"%s\" — старонка %s" msgid "This page does not contain any tables!" msgstr "Файл %s ня ўтрымлівае ніякага ідэнтыфікатара ключа" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Рэляцыйная схема" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Зьмест" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Атрыбуты" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Дадаткова" @@ -8792,7 +8876,7 @@ msgstr "Невядомая мова: %1$s." msgid "Current Server" msgstr "Сэрвэр" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Пошук у базе дадзеных" @@ -8812,7 +8896,7 @@ msgstr "Вэб-сэрвэр" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Пошук у базе дадзеных" @@ -8832,7 +8916,7 @@ msgstr "Выканаць SQL-запыт(ы) на сэрвэры %s" msgid "Run SQL query/queries on database %s" msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" @@ -8844,11 +8928,11 @@ msgstr "Каляндар" msgid "Columns" msgstr "Назвы калёнак" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" @@ -8946,7 +9030,7 @@ msgstr "" "ўсталяваныя ў вас неабходныя пашырэньні PHP, як гэта апісана ў %sдакумэнтацыі" "%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8978,8 +9062,8 @@ msgstr "" "выкарыстаньня зваротных слэшаў і двукосься, выкарыстоўваючы фармат: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Індэкс" @@ -9033,13 +9117,13 @@ msgstr "Няма" msgid "As defined:" msgstr "Як вызначана:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Першасны" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Поўнатэкстэкставае" @@ -9053,20 +9137,20 @@ msgstr "" msgid "after %s" msgstr "Пасьля %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Дадаць %s новыя палі" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Трэба дадаць прынамсі адно поле." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Машына захаваньня дадзеных" @@ -9074,45 +9158,6 @@ msgstr "Машына захаваньня дадзеных" msgid "PARTITION definition" msgstr "Азначэньне PARTITION" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Пошук" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Выбраць палі (прынамсі адно):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Дадаць умовы пошуку (цела для ўмовы \"where\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Колькасьць радкоў на старонку" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Парадак прагляду:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Праглядзець зьнешнія значэньні" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Выканаць \"запыт згодна прыклада\" (сымбаль падстаноўкі: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9306,13 +9351,13 @@ msgstr "" msgid "Manage your settings" msgstr "Магчымасьці асноўных сувязяў" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Мадыфікацыі былі захаваныя" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9325,7 +9370,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9356,7 +9401,7 @@ msgstr "Супастаўленьне падлучэньня да MySQL" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9382,9 +9427,9 @@ msgstr "Вэрсія сэрвэра" msgid "Protocol version" msgstr "Вэрсія пратаколу" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Карыстальнік" @@ -9518,148 +9563,148 @@ msgstr "" "На сэрвэры запушчаны Suhosin. Калі ласка, зьвярніцеся да %sдакумэнтацыі%s " "для атрыманьня апісаньня магчымых праблемаў." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Базы дадзеных адсутнічаюць" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "імя табліцы" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "імя табліцы" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Стварыць табліцу" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Калі ласка, выберыце базу дадзеных" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Паказаць/схаваць мэню зьлева" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Захаваць разьмяшчэньне табліц" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Стварыць сувязь" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Абнавіць" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Дапамога" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Вуглавыя лініі сувязяў" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Прамыя лініі сувязяў" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Зьвяць зь сеткай" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Згарнуць/разгарнуць адлюстраваньне ўсіх табліц" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Пераключыць маленькі/вялікі" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "" "Каб выбраць сувязь, націсьніце на кропцы злучэньня, як паказана на выяве:" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Імпартаваць/Экспартаваць каардынаты табліц ў PDF-схему" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Выканаць запыт" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Перасунуць мэню" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Схаваць/паказаць усе табліцы" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Схаваць/паказаць табліцы бяз сувязяў" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Колькасьць табліц" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Выдаліць сувязь" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Сувязь выдаленая" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Экспарт" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "па запыту" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Перайменаваць табліцу ў" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Імя карыстальніка" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Стварыць" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9674,61 +9719,61 @@ msgstr "Табліца %1$s створаная." msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "старонак" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Імпартаваць файлы" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Маштаб" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Стварыць новы індэкс" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Імя карыстальніка" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Маштаб" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "рэкамэндаваны" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Памылка: сувязь ужо існуе." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Памылка: сувязь не дададзеная." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Сувязь FOREIGN KEY была дададзеная" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Унутраная сувязь дададзеная" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Сувязь выдаленая" @@ -9740,91 +9785,91 @@ msgstr "Памылка захаваньня каардынатаў." msgid "Modifications have been saved" msgstr "Мадыфікацыі былі захаваныя" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Імпартаваць файлы" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Імпартаваць файлы" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Усе" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Табліца %s ня знойдзеная або ня вызначаная ў %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9834,17 +9879,17 @@ msgstr "Табліцы \"%s\" не існуе!" msgid "Select binary log to view" msgstr "Вылучыце двайковы лог для прагляду" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Файлы" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Абразаць паказаныя запыты" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Паказаць поўныя запыты" @@ -9860,7 +9905,7 @@ msgstr "Пазыцыя" msgid "Original position" msgstr "Першапачатковая пазыцыя" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Інфармацыя" @@ -9868,7 +9913,7 @@ msgstr "Інфармацыя" msgid "Character Sets and Collations" msgstr "Раскладкі і супастаўленьні" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9876,24 +9921,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s базаў дадзеных былі пасьпяхова выдаленыя." msgstr[1] "%s базаў дадзеных былі пасьпяхова выдаленыя." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Статыстыка базаў дадзеных" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Уключыць статыстыку" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9905,162 +9950,162 @@ msgstr "" msgid "Storage Engines" msgstr "Машыны захаваньня дадзеных" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Праглядзець дамп (схему) базаў дадзеных" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Першая старонка" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "Пэрсыдзкая" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Адключана" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Уключае ўсе прывілеі, апроч GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Дазваляе зьмяняць структуру існых табліц." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Дазваляе зьмяняць і выдаляць праграмы, якія захоўваюцца." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Дазваляе ствараць новыя базы дадзеных і табліцы." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Дазваляе ствараць праграмы, якія захоўваюцца." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Дазваляе ствараць новыя табліцы." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Дазваляе ствараць часовыя табліцы." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Дазваляе ствараць, выдаляць і пераймяноўваць уліковыя запісы карыстальнікаў" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Дазваляе ствараць новыя прагляды." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Дазваляе выдаляць дадзеныя." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Дазваляе выдаляць базы дадзеных і табліцы." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Дазваляе выдаляць табліцы." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Дазваляе ствараць падзеі ў пляніроўніку падзеяў" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" "Дазваляе імпартаваць дадзеныя з файлаў і экспартаваць дадзеныя ў файлы." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дазваляе дадаваць карыстальнікаў і прывілеі без перазагрузкі табліц " "прывілеяў." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Дазваляе ствараць і выдаляць індэксы." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Дазваляе блякаваць табліцы для бягучага патоку." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Абмяжоўвае колькасьць новых злучэньняў, якія карыстальнік можа адкрыць на " "працягу гадзіны." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Абмяжоўвае колькасьць запытаў, якія карыстальнік можа адправіць на сэрвэр на " "працягу гадзіны." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -10068,59 +10113,59 @@ msgstr "" "Абмяжоўвае колькасьць камандаў, зьмяняючых любую табліцу або базу дадзеных, " "якія карыстальнік можа выканаць на працягу гадзіны." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Абмяжоўвае колькасьць адначасовых злучэньняў, якія можа мець карыстальнік." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Дазваляе праглядаць працэсы ўсіх карыстальнікаў" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Не працуе ў гэтай вэрсіі MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дазваляе перазагружаць налады сэрвэра і ачышчаць кэш сэрвэра." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дазваляе карыстальніку пытацца, дзе знаходзяцца slaves / masters." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Неабходна для рэплікацыі slaves." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Дазваляе чытаць дадзеныя." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Дае доступ да поўнага сьпісу базаў дадзеных." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дазваляе выкананьне запытаў SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Дазваляе спыняць сэрвэр." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -10130,172 +10175,172 @@ msgstr "" "Патрабуецца для большасьці адміністратыўных апэрацыяў, такіх як вызначэньне " "глябальных зьменных або спыненьне патокаў іншых карыстальнікаў." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Дазваляе стварэньне і выдаленьне трыгераў" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Дазваляе зьмяняць дадзеныя." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Без прывілеяў." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Няма" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Прывілеі, спэцыфічныя для табліцы" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Заўвага: імёны прывілеяў MySQL задаюцца па-ангельску" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Адміністраваньне" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Глябальныя прывілеі" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Спэцыфічныя прывілеі базы дадзеных" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Абмежаваньні рэсурсаў" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Заўвага: Пазначэньне гэтых опцыяў як 0 (нуль) здымае абмежаваньне." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Інфармацыя пра ўваход" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Не зьмяняць пароль" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Не знойдзены карыстальнік." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Карыстальнік %s ужо існуе!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Быў дададзены новы карыстальнік." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Вы зьмянілі прывілеі для %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Вы анулявалі прывілеі для %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s пасьпяхова зьменены." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Выдаленьне %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "На выбраныя карыстальнікі для выдаленьня!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Перазагрузіць прывілеі" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Рэдагаваць прывілеі" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Ануляваць" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Экспарт" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Любы" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Прывілеі" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Прывілеі" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Карыстальнікі" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Выдаліць выбраных карыстальнікаў" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10308,50 +10353,50 @@ msgstr "" "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Спэцыфічныя прывілеі калёнак" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Дадаць прывілеі на наступную базу" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Сымбалі падстаноўкі _ і % мусяць быць экранаванымі сымбалем \\ для іх " "літаральнага выкарыстаньня" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Дадаць прывілеі на наступную табліцу" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... пакінуць старога." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... выдаліць старога з табліцы карыстальнікаў." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго." -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10359,96 +10404,96 @@ msgstr "" " ... выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць " "прывілеі." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "База дадзеных для карыстальніка" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Праверыць прывілеі для базы "%s"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Карыстальнікі з правамі доступу да "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "глябальны" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "спэцыфічны для базы дадзеных" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "шаблён" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "Выгляд %s быў выдалены" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 #, fuzzy msgid "Show master status" msgstr "Паказаць стан залежных сэрвэраў" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10457,273 +10502,273 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Калі ласка, выберыце базу дадзеных" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Поўнатэкстэкставае" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full stop" msgstr "Поўнатэкстэкставае" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Толькі структуру" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Толькі структуру" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Паток %s быў пасьпяхова спынены." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ня можа спыніць працэс %s. Напэўна, ён ужо спынены." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Апрацоўнік" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Кэш запытаў" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Патокі" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Часовыя дадзеныя" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Адкладзеныя ўстаўкі" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Кэш ключоў" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Аб'яднаньні" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Сартаваньне" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Каардынатар перакладу" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Скінуць (закрыць) усе табліцы" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Паказаць адкрытыя табліцы" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Паказаць залежныя сэрвэры" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Паказаць стан залежных сэрвэраў" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Скінуць кэш запытаў" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Бягучая інфармацыя" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Абнавіць" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Файлы" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Не зьмяняць пароль" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Паказаць адкрытыя табліцы" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Паказаць адкрытыя табліцы" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Сувязі" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Тып запыту" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Функцыі" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10731,57 +10776,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Выразы" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 #, fuzzy msgid "Replication status" msgstr "Рэплікацыя" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10789,47 +10834,47 @@ msgstr "" "На загружаным сэрвэры байтавыя лічыльнікі могуць пераскокваць кола, таму " "статыстыка, якую паказвае MySQL-сэрвэр, можа быць няправільнай." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Атрымана" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Адпраўлена" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "максымум адначасовых злучэньняў" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Няўдалых спробаў" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Спынена" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Каманда" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -10839,17 +10884,17 @@ msgstr "" "якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для " "захоўваньня выразаў транзакцыі." -#: server_status.php:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў." -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10861,11 +10906,11 @@ msgstr "" "павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў " "памяці, а не на дыску." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Колькасьць часовых файлаў, створаных mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10873,7 +10918,7 @@ msgstr "" "Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна " "створаныя сэрвэрам падчас выкананьня выразаў." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10881,7 +10926,7 @@ msgstr "" "Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя " "памылкі (пэўна, дубляваныя ключы)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10890,23 +10935,23 @@ msgstr "" "Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны " "паток." -#: server_status.php:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Колькасьць запісаных INSERT DELAYED радкоў." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Колькасьць выкананых FLUSH-выразаў." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Колькасьць унутраных COMMIT-выразаў." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Колькасьць разоў выдаленьня радка з табліцы." -#: server_status.php:1334 +#: 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 " @@ -10916,7 +10961,7 @@ msgstr "" "яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. " "Handler_discover паказвае колькасьць высьвятленьняў табліц." -#: server_status.php:1335 +#: 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, " @@ -10927,7 +10972,7 @@ msgstr "" "сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 " "індэксаваная." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10935,7 +10980,7 @@ msgstr "" "Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна " "вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10945,7 +10990,7 @@ msgstr "" "павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам " "абмежаваньняў або калі адбываецца сканаваньне індэксаў." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10953,7 +10998,7 @@ msgstr "" "Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад " "чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY ... DESC." -#: server_status.php:1339 +#: 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 " @@ -10965,7 +11010,7 @@ msgstr "" "прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам " "або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10977,37 +11022,37 @@ msgstr "" "што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб " "выкарыстоўваць перавагі індэксаў." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Колькасьць унутраных выразаў ROLLBACK." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Колькасьць запытаў устаўкі радка ў табліцу." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Колькасьць зьмененых старонак." -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід." -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Колькасьць вольных старонак." -#: server_status.php:1348 +#: 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 " @@ -11017,7 +11062,7 @@ msgstr "" "старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць " "быць скінутыя ці выдаленыя з-за пэўнай прычыны." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -11030,11 +11075,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Агульны памер буфэрнага пулу, у старонках." -#: server_status.php:1351 +#: 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." @@ -11043,7 +11088,7 @@ msgstr "" "адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым " "парадку." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11051,11 +11096,11 @@ msgstr "" "Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта " "адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB." -#: server_status.php:1354 +#: 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." @@ -11063,7 +11108,7 @@ msgstr "" "Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага " "пулу, а таму зрабіла аднастаронкавае чытаньне." -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -11077,55 +11122,55 @@ msgstr "" "падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны " "правільна, гэтае значэньне мусіць быць маленькім." -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Колькасьць апэрацыяў fsync() на бягучы момант." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Агульная колькасьць чытаньняў дадзеных." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Агульная колькасьць запісаў дадзеных." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах." -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -11133,35 +11178,35 @@ msgstr "" "Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і " "таму давялося чакаць, пакуль ён не ачысьціцца." -#: server_status.php:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Колькасьць запісаў у лог." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Колькасьць фізычна выкананых запісаў у лог-файл." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Колькасьць байтаў, запісаных у лог-файл." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Колькасьць створаных старонак." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -11169,55 +11214,55 @@ msgstr "" "Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні " "вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Колькасьць прачытаных старонак." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Колькасьць запісаных старонак." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" "Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант." -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у " "мілісэкундах." -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку." -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Колькась радкоў, прачытаных з табліц InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB." -#: server_status.php:1387 +#: 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." @@ -11225,7 +11270,7 @@ msgstr "" "Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі " "скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -11233,7 +11278,7 @@ msgstr "" "Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна " "выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў." -#: server_status.php:1389 +#: server_status.php:1388 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 " @@ -11243,17 +11288,17 @@ msgstr "" "ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць " "блёкаў, якія выкарастоўваліся адначасова." -#: server_status.php:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Фармат імпартаванага файла" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу." -#: server_status.php:1392 +#: 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 " @@ -11263,26 +11308,26 @@ msgstr "" "вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць " "промахаў у кэш можна вылічыць як Key_reads/Key_read_requests." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш." -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск." -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -11293,17 +11338,17 @@ msgstr "" "Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў " "зкампіляваны." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED." -#: server_status.php:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11311,39 +11356,39 @@ msgstr "" "Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, " "значэньне кэшу табліц імаверна вельмі малое." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Колькасьць адкрытых файлаў." -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)." -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Колькасьць адкрытых табліц." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Колькасьць вольнай памяці для кэшу запытаў." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Колькасьць зваротаў да кэшу." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Колькасьць запытаў, якія былі даданыя ў кэш." -#: server_status.php:1408 +#: 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 " @@ -11356,7 +11401,7 @@ msgstr "" "выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з " "кэшу." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11364,19 +11409,19 @@ msgstr "" "Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за " "значэньня дырэктывы query_cache_type)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Агульная колькасьць блёкаў у кэшы запытыў." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -11384,13 +11429,13 @@ msgstr "" "Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае " "значэньне ня роўнае 0, варта праверыць індэксы ў табліцах." -#: server_status.php:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай " "табліцы." -#: server_status.php:1415 +#: 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.)" @@ -11399,7 +11444,7 @@ msgstr "" "ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта " "праверыць індэксы ў табліцах.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11407,17 +11452,17 @@ msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай " "табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)" -#: server_status.php:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы." -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-" "патокам." -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11425,13 +11470,13 @@ msgstr "" "Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі " "паўтараў транзакцыі." -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным " "да сэрвэра, які яго кантралюе." -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11439,14 +11484,14 @@ msgstr "" "Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для " "стварэньня." -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым " "long_query_time сэкундаў." -#: server_status.php:1423 +#: server_status.php:1422 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 " @@ -11456,25 +11501,25 @@ msgstr "" "значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай " "зьменнай sort_buffer_size." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" "Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх " "слупкоў." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Колькасьць адсартаваных радкоў." -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы." -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна." -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11486,7 +11531,7 @@ msgstr "" "існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а " "пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11496,11 +11541,11 @@ msgstr "" "вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае " "ў чырвоны колер, варта павялічыць значэньне thread_cache_size." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Колькасьць адкрытых на бягучы момант злучэньняў." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11512,70 +11557,70 @@ msgstr "" "thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага " "павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Кэш ключоў" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Суб" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Дадаць новае поле" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Абнавіць" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11584,7 +11629,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11592,18 +11637,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11611,11 +11656,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11623,92 +11668,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Перайменаваць базу дадзеных у" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Выберыце табліцу(ы)" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Некарэктнае імя табліцы" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Дадаць новага карыстальніка" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "SQL-запыт" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Статыстыка радку" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Выбраць усё" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Тып запыту" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11716,7 +11761,7 @@ msgid_plural "%d seconds" msgstr[0] "у сэкунду" msgstr[1] "у сэкунду" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11724,133 +11769,133 @@ msgid_plural "%d minutes" msgstr[0] "выкарыстоўваецца" msgstr[1] "выкарыстоўваецца" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 #, fuzzy msgid "Structure Difference" msgstr "Структура для прагляду" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 #, fuzzy msgid "Data Difference" msgstr "Структура для прагляду" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL-запыт" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "максымум адначасовых злучэньняў" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Налады і зьменныя сэрвэра" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Значэньне сэсіі" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Глябальнае значэньне" @@ -12145,182 +12190,182 @@ msgstr "" msgid "Wrong data" msgstr "Базы дадзеных адсутнічаюць" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Ці сапраўды вы жадаеце " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "У выглядзе PHP-коду" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Праверыць SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL-вынік" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Створаны" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Праблемы з індэксамі для табліцы `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Метка" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Табліца %1$s была пасьпяхова зьмененая" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Сак" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Назвы калёнак" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Машыны" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "ПіБ" -#: tbl_chart.php:93 +#: tbl_chart.php:96 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Сьціснутая" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Загаловак справаздачы" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "SQL-запыт" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Значэньне" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Значэньне" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Табліца %s ужо існуе!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Табліца %1$s створаная." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Праглядзець дамп (схему) табліцы" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Дадаць/выдаліць калёнку крытэру" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Колькасьць файлаў логу" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Захаваць як файл" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12338,33 +12383,33 @@ msgstr "Немагчыма перайменаваць індэкс у PRIMARY!" msgid "No index parts defined!" msgstr "Часткі індэксу ня вызначаныя!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Дадаць новае поле" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Add new field" msgid "Edit index" msgstr "Дадаць новае поле" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Імя індэкса:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" мусіць быць імем першаснага ключа і толькі яго!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Тып індэкса:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Дадаць да індэкса  %s калёнку(і)" @@ -12387,159 +12432,159 @@ msgstr "Табліца %s была перанесеная ў %s." msgid "Table %s has been copied to %s." msgstr "Табліца %s была скапіяваная ў %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Пустая назва табліцы!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Зьмяніць парадак табліцы" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(асобна)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Перанесьці табліцу ў (база дадзеных.табліца):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Опцыі табліцы" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Перайменаваць табліцу ў" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Скапіяваць табліцу ў (база дадзеных.табліца):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Перайсьці да скапіяванай табліцы" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Абслугоўваньне табліцы" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Дэфрагмэнтаваць табліцу" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Кэш табліцы %s быў ачышчаны" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Скінуць кэш табліцы (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Дамп дадзеных табліцы" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Базы дадзеных адсутнічаюць" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Падтрымка падзелаў" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Падзел %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Прааналізаваць" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Праверыць" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Аптымізаваць" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Перабудаваць" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Адрамантаваць" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Скасаваць падзел на часткі" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Праверыць цэласнасьць дадзеных:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Паказаць табліцы" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Выкарыстаньне прасторы" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Эфэктыўнасьць" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Статыстыка радку" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "дынамічны" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Даўжыня радка" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Памер радка" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Памылка стварэньня зьнешняга ключа на %1$s (праверце тыпы калёнак)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Унутраныя сувязі" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12547,119 +12592,119 @@ msgstr "" "Унутраная сувязь не зьяўляецца абавязковай, калі існуе адпаведная сувязь " "FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Прагляд розных значэньняў" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add new field" msgid "Add SPATIAL index" msgstr "Дадаць новае поле" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Няма" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Табліца %s была выдаленая" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Першасны ключ быў дададзены да %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Быў дададзены індэкс для %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Паказаць інфармацыю пра PHP" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Дадаць %s новыя палі" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Вэрсія для друку" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Прагляд залежнасьцяў" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Прапанаваная структура табліцы" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Дадаць %s новыя палі" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "У канцы табліцы" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "У пачатку табліцы" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Пасьля %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Стварыць індэкс на %s калёнках" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "падзеленая на сэкцыі" @@ -12815,73 +12860,39 @@ msgstr "" msgid "Create version" msgstr "Стварыць сувязь" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Выканаць \"запыт згодна прыклада\" (сымбаль падстаноўкі: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "SQL-запыт" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -msgid "How to use" -msgstr "Пашырэньне PHP" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Скінуць" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Даступныя MIME-тыпы" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME-тыпы, вылучаныя курсівам, ня маюць асобнай функцыі пераўтварэньня" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Даступныя пераўтварэньні" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Апісаньне" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Вы ня маеце дастатковых прывілеяў быць у гэтым месцы ў гэты час!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Профіль быў адноўлены." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Назва прагляду" diff --git a/po/be@latin.po b/po/be@latin.po index 61fa7ded6e..f4e2bb57d5 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: belarusian_latin \n" @@ -15,21 +15,21 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Pakazać usie" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Staronka:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "akno abo nałady biaśpieki vašaha braŭzera skanfihuranyja na blakavańnie " "mižvakonnych ŭzajemadziejańniaŭ" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Paniesłasia" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Imia kluča" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Apisańnie" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Vykarystoŭvać heta značeńnie" @@ -106,90 +106,91 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza dadzienych %1$s stvoranaja." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Kamentar da bazy dadzienych: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Kamentar da tablicy" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nazvy kalonak" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Nul" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Pa zmoŭčańni" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Źviazanaja z" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Kamentary" @@ -198,14 +199,14 @@ msgstr "Kamentary" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nie" @@ -218,126 +219,126 @@ msgstr "Nie" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Tak" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Prahladzieć damp (schiemu) bazy dadzienych" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "U bazie dadzienych tablic nia vyjaŭlena." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Vybrać usio" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Źniać usie adznaki" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Imia bazy dadzienych nie paznačanaje!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Baza dadzienych %s była pierajmienavanaja ŭ %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Baza dadzienych %s była skapijavanaja ŭ %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:470 +#: db_operations.php:476 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Pierajmienavać bazu dadzienych u" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Baza dadzienych %s była vydalenaja." -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "Kapijavać bazu dadzienych u" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Kapijavać bazu dadzienych u" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Tolki strukturu" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Strukturu i dadzienyja" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Tolki dadzienyja" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "vykanać CREATE DATABASE pierad kapijavańniem" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Dadać %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Dadać abmiežavańni" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Pierajści da skapijavanaj bazy dadzienych" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Supastaŭleńnie" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -349,61 +350,61 @@ msgstr "" "Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab " "vyśvietlić čamu, naciśnicie %stut%s." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relacyjnaja schiema" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tablica" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Radki" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Pamier" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "vykarystoŭvajecca" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Stvoranaja" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Apošniaje abnaŭleńnie" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Apošniaja pravierka" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -416,122 +417,122 @@ msgstr[2] "%s tablic(y)" msgid "You have to choose at least one column to display" msgstr "Vam nieabchodna vybrać prynamsi adnu kalonku dla adlustravańnia" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Pierajści da skapijavanaj tablicy" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Paradak" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "pramy" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "advarotny" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Pakazać" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kryter" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ustavić" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "I" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Vydalić" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Abo" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Źmianić" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Dadać/vydalić radok kryteru" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Dadać/vydalić kalonku kryteru" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Abnavić zapyt" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Vykarystoŭvać tablicy" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-zapyt da BD %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Vykanać zapyt" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "U dostupie admoŭlena" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "prynamsi adno z słovaŭ" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "usie słovy" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "dakładnuju frazu" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "rehularny vyraz" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Vyniki pošuku \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -540,31 +541,31 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -573,71 +574,71 @@ msgstr[0] "Ahułam: %s supadzieńniaŭ" msgstr[1] "Ahułam: %s supadzieńniaŭ" msgstr[2] "Ahułam: %s supadzieńniaŭ" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Pošuk u bazie dadzienych" -#: db_search.php:292 +#: db_search.php:295 #, 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:297 +#: db_search.php:300 msgid "Find:" msgstr "Znajści:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Słovy, padzielenyja prahałam (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "U tablicy(ach):" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" msgstr "Unutry pola:" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "U bazie dadzienych tablic nia vyjaŭlena." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "nieviadoma" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s była ačyščanaja" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Vyhlad %s byŭ vydaleny" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s była vydalenaja" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -646,191 +647,192 @@ msgstr "" "Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da " "%sdakumentacyi%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikacyja" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Usiaho" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Z adznačanymi:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Adznačyć usio" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspart" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Versija dla druku" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Ačyścić" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Vydalić" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Pravieryć tablicu" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Aptymizavać tablicu" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Ramantavać tablicu" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizavać tablicu" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 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:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 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:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Słoŭnik dadzienych" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Baza dadzienych" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Stan" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Dziejańnie" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "" @@ -844,18 +846,18 @@ msgstr "Typ zapytu" msgid "Selected export type has to be saved in file!" msgstr "Dadzienyja vybranaha typu ekspartavańnia musiać być zazavanymi ŭ fajł!" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Dadać novaje pole" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Niedastatkova miesca dla zachavańnia ŭ fajł %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -863,12 +865,12 @@ msgstr "" "Fajł %s užo isnuje na servery, źmianicie imia fajła abo praviercie opcyju " "pierazapisu." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web-server nia maje dazvołu dla zachavańnia ŭ fajł %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Damp zachavany ŭ fajł %s." @@ -879,102 +881,102 @@ msgstr "Damp zachavany ŭ fajł %s." msgid "Invalid export type" msgstr "Ekspart" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Dadać novaje pole" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Radki padzielenyja" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "Dadać abmiežavańni" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Dadać %s novyja pali" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add a new User" msgid "Add geometry" msgstr "Dadać novaha karystalnika" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -984,21 +986,21 @@ msgstr "" "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " "abmiežavańnie." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Pakazvajučy zakładku" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Zakładka była vydalenaja." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Niemahčyma pračytać fajł" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -1008,7 +1010,7 @@ msgstr "" "(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " "kanfihuracyi." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -1018,27 +1020,27 @@ msgstr "" "zahružany, albo pamier fajła pieravysiŭ maksymalny pamier, vyznačany " "kanfihuracyjaj PHP. Hł. FAQ 1.16." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Niemahčyma zahruzić płahiny impartavańnia, kali łaska, praviercie ŭstaloŭku!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s stvoranaja" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Impartravańnie paśpiachova zavieršanaje, vykanana %d zapytaŭ." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1046,7 +1048,7 @@ msgstr "" "Vyjšaŭ dazvoleny čas vykanańnia skrypta. Kali vy chočacie zavieršyć " "impartavańnie, kali łaska, zahruzicie fajł znoŭ i impartavańnie ŭznavicca." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1055,23 +1057,23 @@ msgstr "" "Heta zvyčajna značyć, što phpMyAdmin nia zmoža skončyć hetaje impartavańnia, " "kali vy nie pavialičycie limity vykanańnia php-skryptoŭ." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Nazad" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Dla raboty phpMyAdmin patrebny braŭzer z padtrymkaj frejmaŭ." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Kamandy \"DROP DATABASE\" adklučanyja." @@ -1081,7 +1083,7 @@ msgstr "Kamandy \"DROP DATABASE\" adklučanyja." msgid "Do you really want to execute \"%s\"?" msgstr "Ci sapraŭdy vy žadajecie " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!" @@ -1131,7 +1133,7 @@ msgstr "Dadać novaje pole" msgid "Edit Index" msgstr "Redagavać nastupny radok" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -1152,16 +1154,16 @@ msgstr "Pustoje imia chostu!" msgid "The user name is empty!" msgstr "Pustoje imia karystalnika!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Pusty parol!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Paroli nie supadajuć!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1184,25 +1186,26 @@ msgstr "Vydalić vybranych karystalnikaŭ" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Redagavać" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Vybar servera" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy #| msgid "Showing SQL query" msgid "Live query chart" @@ -1214,24 +1217,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Ahułam" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1253,7 +1256,7 @@ msgstr "Vybar servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Pracesy" @@ -1273,7 +1276,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy #| msgid "Databases statistics" msgid "Query statistics" @@ -1324,14 +1327,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1393,32 +1396,32 @@ msgstr "" msgid "Bytes received" msgstr "Atrymana" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Padłučeńni" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1435,11 +1438,11 @@ msgstr "%s tablic(y)" msgid "Questions" msgstr "Suviazi" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1465,11 +1468,11 @@ msgstr "Źviać ź sietkaj" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Nijakaja" @@ -1569,7 +1572,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:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1661,7 +1664,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Čas" @@ -1771,10 +1774,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Imrart" @@ -1834,9 +1837,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "Skasavać" @@ -1850,11 +1853,11 @@ msgstr "" msgid "Processing Request" msgstr "Pracesy" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Nia vybranaja baza dadzienych." @@ -1866,9 +1869,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1924,19 +1927,19 @@ msgstr "Dadać novaje pole" msgid "Show indexes" msgstr "Pakazać sietku" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Adklučyć pravierku źniešnich klučoŭ" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Uklučana" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1976,7 +1979,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -2021,8 +2024,8 @@ msgstr "U vyhladzie SQL-zapytu" msgid "No rows selected" msgstr "Nivodny radok nia vybrany" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Źmianić" @@ -2030,18 +2033,18 @@ msgstr "Źmianić" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Zachavać" @@ -2057,7 +2060,7 @@ msgstr "pa zapytu" msgid "Show search criteria" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2109,12 +2112,12 @@ msgstr "Dziejańni z vynikami zapytaŭ" msgid "Data point content" msgstr "Pamier ukazalnika na dadzienyja" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignaravać" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Skapijavać" @@ -2136,7 +2139,7 @@ msgstr "Vybierycie źniešni kluč" msgid "Please select the primary key or a unique key" msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2229,7 +2232,7 @@ msgstr "Zgieneravać" msgid "Change Password" msgstr "Źmianić parol" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2344,27 +2347,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2372,37 +2375,37 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Śn" @@ -2451,32 +2454,32 @@ msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sub" @@ -2612,16 +2615,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "u sekundu" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "u chvilinu" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "u hadzinu" @@ -2642,21 +2645,231 @@ msgstr "" msgid "Font size" msgstr "Pamier šryfta" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Dadać/vydalić kalonku kryteru" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Pieršaja staronka" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Papiaredniaja staronka" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Nastupnaja staronka" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Apošniaja staronka" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "Kolkaść paloŭ" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Pan" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "haryzantalna" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "haryzantalna (paviernutyja zahałoŭki)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertykalna" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Vykanać zapyt z zakładak" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Sartavać pa klučy" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Nałady" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Častkovyja teksty" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Poŭnyja teksty" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Kluč suviazi" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational display field" +msgid "Relational display column" +msgstr "Adlustravanaje pole suviazi" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Pieraŭtvareńnie MIME-typu braŭzeram" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Radok byŭ vydaleny" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Spynić" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "pa zapytu" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Pakazanyja zapisy" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "usiaho" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Zapyt vykonvaŭsia %01.4f sek" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Dziejańni z vynikami zapytaŭ" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Versija dla druku (z usim tekstam)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Pakazać PDF-schiemu" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +#| msgid "Create" +msgid "Create view" +msgstr "Stvaryć" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Suviaź nia znojdzienaja" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Pamier zahružanaha fajła pieraŭzychodzić parametar upload_max_filesize u php." "ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2664,53 +2877,68 @@ msgstr "" "Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ " "vyznačany ŭ HTML-formie." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Fajł byŭ zahružany tolki častkova." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Adsutničaje časovaja tečka." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Pamyłka zapisu na dysk." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Zahruzka fajła spynienaja pašyreńniem." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" "Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł 1.11 u FAQ" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Adkryć novaje akno phpMyAdmin" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Cookies musiać być uklučanymi paśla hetaha miesca." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksy" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikalnaje" @@ -2723,8 +2951,8 @@ msgstr "Ścisnutaja" msgid "Cardinality" msgstr "Kolkaść elementaŭ" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kamentar" @@ -2747,130 +2975,130 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Bazy dadzienych" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Ustavić" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Aperacyi" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tablica — pustaja!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Baza dadzienych — pustaja!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Zapyt zhodna prykładu" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Pryvilei" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Pracedury" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Padziei" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Dyzajner" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Karystalnik" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Dvajkovy łog" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Źmiennyja" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Kadyroŭki" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Mašyny" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Pamyłka" @@ -2898,7 +3126,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Ustaŭlena radkoŭ: %1$d." msgstr[1] "Ustaŭlena radkoŭ: %1$d." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2996,16 +3224,108 @@ 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 +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 +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 +msgid "Value" +msgstr "Značeńnie" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Pošuk" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Ustavić" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Vybrać pali (prynamsi adno):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Dadać umovy pošuku (cieła dla ŭmovy \"where\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Kolkaść radkoŭ na staronku" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Paradak prahladu:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Prahladzieć źniešnija značeńni" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "in query" +msgid "Additional search criteria" +msgstr "pa zapytu" + +#: 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 "Vykanać \"zapyt zhodna prykłada\" (symbal padstanoŭki: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Vykanać \"zapyt zhodna prykłada\" (symbal padstanoŭki: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Skinuć" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Dapuščalny šlach da malunkaŭ temy %s nia znojdzieny!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Papiaredni prahlad niedastupny." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "hetaja" @@ -3024,7 +3344,7 @@ msgstr "Tema %s nia znojdzienaja!" msgid "Theme path not found for theme %s!" msgstr "Nia znojdzieny šlach da temy %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3323,13 +3643,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Niemahčyma padłučycca: niapravilnyja nałady." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Zaprašajem u %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3338,7 +3658,7 @@ msgstr "" "Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab " "jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3354,48 +3674,42 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Cookies musiać być uklučanymi paśla hetaha miesca." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Uvachod u systemu" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Imia karystalnika:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Parol:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Vybar servera" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Cookies musiać być uklučanymi paśla hetaha miesca." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" @@ -3403,13 +3717,13 @@ msgstr "" "Nie było anijakaj aktyŭnaści na praciahu %s sekundaŭ. Kali łaska, uvajdzicie " "znoŭ" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Niemahčyma załahavacca na server MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Niapravilny łahin/parol. U dostupie admoŭlena." @@ -3443,7 +3757,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tablic" @@ -3455,13 +3769,13 @@ msgstr "Tablic" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Dadzienyja" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Vykarystańnie resursaŭ" @@ -3490,33 +3804,25 @@ msgstr "Pravieryć pryvilei dla bazy \"%s\"." msgid "Check Privileges" msgstr "Pravieryć pryvilei" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3528,222 +3834,200 @@ msgstr "" "Dyrektyva $cfg['PmaAbsoluteUri'] PAVINNA być vyznačanaja ŭ vašym " "kanfihuracyjnym fajle!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Niekarektny indeks servera: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie " "kanfihurycyju." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Maksymalny pamier: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dakumentacyja" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-zapyt" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "Adkaz MySQL: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Tłumačyć SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Nie tłumačyć SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Biez PHP-kodu" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Abnavić" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Nie praviarać SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Pravieryć SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Mašyny" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Prafilavańnie" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Ndz" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dzion, %s hadzinaŭ, %s chvilinaŭ i %s sekundaŭ" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Pracedury" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Pieršaja staronka" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Papiaredniaja staronka" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Nastupnaja staronka" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Apošniaja staronka" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Pierajści da bazy dadzienych \"%s\"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Isnuje viadomaja pamyłka z vykarystańniem parametra %s, hladzicie apisańnie " "na %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Druk" @@ -3775,8 +4059,8 @@ msgid "Closed" msgstr "Niezakrytaje dvukośsie" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Adklučana" @@ -3927,9 +4211,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Skinuć" @@ -4141,10 +4425,6 @@ msgstr "Prapanavanaja struktura tablicy" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4203,7 +4483,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Zachavać jak fajł" @@ -4212,7 +4492,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Farmat" @@ -4328,7 +4608,7 @@ msgid "MIME type" msgstr "MIME-typ" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Suviazi" @@ -5859,9 +6139,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Parol" @@ -6148,12 +6428,6 @@ msgstr "" msgid "Details..." msgstr "Padrabiaźniej..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6162,18 +6436,18 @@ msgstr "" "kanfihuracyjnym fajle." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Źmianić parol" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Biez parola" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Paćvierdžańnie" @@ -6198,22 +6472,22 @@ msgstr "Stvaryć novuju bazu dadzienych" msgid "Create" msgstr "Stvaryć" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Biez pryvilejaŭ" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nazva" @@ -6408,26 +6682,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "General relation features" msgid "committed on %1$s by %2$s" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "General relation features" msgid "authored on %1$s by %2$s" @@ -6557,191 +6831,27 @@ msgstr "" msgid "Language" msgstr "Mova" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Dadać/vydalić kalonku kryteru" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "Kolkaść paloŭ" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Pan" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "haryzantalna" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "haryzantalna (paviernutyja zahałoŭki)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertykalna" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Vykanać zapyt z zakładak" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Sartavać pa klučy" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Nałady" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Častkovyja teksty" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Poŭnyja teksty" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Kluč suviazi" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational display field" -msgid "Relational display column" -msgstr "Adlustravanaje pole suviazi" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Pieraŭtvareńnie MIME-typu braŭzeram" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Radok byŭ vydaleny" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Spynić" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "pa zapytu" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Pakazanyja zapisy" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "usiaho" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Zapyt vykonvaŭsia %01.4f sek" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Dziejańni z vynikami zapytaŭ" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Versija dla druku (z usim tekstam)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Pakazać PDF-schiemu" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -#| msgid "Create" -msgid "Create view" -msgstr "Stvaryć" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Suviaź nia znojdzienaja" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Infarmacyja pra versiju" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Chatniaja tečka dadzienych" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Ahulnaja častka šlachu tečki da ŭsich fajłaŭ dadzienych InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Fajły dadzienych" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Aŭtapašyralnaje pryraščeńnie" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6749,11 +6859,11 @@ msgstr "" " Pamier pryraščeńnia dla pašyreńnia pamieru prastory aŭtapašyralnaj tablicy, " "kali jana zapoŭnicca." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Pamier pułu buferu" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6761,79 +6871,79 @@ msgstr "" "Pamier buferu ŭ pamiaci, jaki InnoDB vykarystoŭvaje dla kešavańnia " "dadzienych i indeksaŭ tablic." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Puł buferu" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Stan InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Vykarystańnie pułu buferu" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "staronak" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Volnych staronak" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Brudnych staronak" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Staronak z dadzienymi" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Skinuć keš staronak" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Zaniatych staronak" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Fiksavanyja staronki" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Aktyŭnaść pułu buferu" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Zapyty čytańnia" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Zapytaŭ zapisu" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Propuskaŭ čytańnia" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Zatrymak zapisu" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Propuskaŭ čytańnia ŭ %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Zatrymak zapisu ŭ %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Pamier ukazalnika na dadzienyja" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6841,11 +6951,11 @@ msgstr "" "Značeńnie pa zmoŭčańni pamieru ŭkazalnika ŭ bajtach, dla vykarystańnia ŭ " "CREATE TABLE dla tablic MyISAM, kali nia vyznačanaja opcyja MAX_ROWS." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6853,11 +6963,11 @@ msgstr "" "Režym dla aŭtamatyčnaha ŭznaŭleńnia paškodžanych tablic MyISAM, jak " "vyznačany praz opcyju --myisam-recover zahruzki servera." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Maksymalny pamier dla časovych fajłaŭ sartavańnia" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6867,11 +6977,11 @@ msgstr "" "pierastvareńnia indeksu MyISAM (padčas REPAIR TABLE, ALTER TABLE, abo LOAD " "DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Maksymalny pamier časovych fajłaŭ dla stvareńnia indeksu" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6881,11 +6991,11 @@ msgstr "" "indeksu MyISAM, budzie bolšy, čym vykarystańnie dla kešu klučoŭ pamieru, " "paznačanaha tut, vybierycie metad kešavańnia klučoŭ." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Patokaŭ uznaŭleńnia" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6894,11 +7004,11 @@ msgstr "" "paralelna (kožny indeks u svaim ułasnym patoku) padčas uznaŭleńnia pracesam " "sartavańnia." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Pamier buferu sartavańnia" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6907,11 +7017,11 @@ msgstr "" "TABLE abo padčas stvareńnia indeksaŭ, vykarystoŭvajučy CREATE INDEX ci ALTER " "TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Pamier kešu indeksaŭ" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6920,11 +7030,11 @@ msgstr "" "zmoŭčańni — 32 MB. Heta pamiać vykarystoŭvajecca tolki dla kešavańnia " "staronak indeksaŭ." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Pamier kešu zapisaŭ" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6935,11 +7045,11 @@ msgstr "" "32 MB. Hetaja pamiać vykarystoŭvajecca dla kešavańnia źmienaŭ fajłaŭ " "apracoŭki dadzienych (.xtd) i fajłaŭ ukazalnikaŭ radkoŭ (.xtr)." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Pamier kešu łogaŭ" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6948,11 +7058,11 @@ msgstr "" "vykarystoŭvajecca dla kešavańnia dadzienyja łogu tranzakcyj. Pamier pa " "zmoŭčańni — 16 MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Paroh fajła łogu" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6960,11 +7070,11 @@ msgstr "" "Pamier łogu tranzakcyj pierad vykanańniem vykanańnia, da momantu, pakul " "budzie stvorany novy fajł. Značeńnie pa Pamier — 16 MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Pamier buferu tranzakcyj" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6972,11 +7082,11 @@ msgstr "" "Pamier hlabalnaha buferu łogu tranzakcyj (kožnaja mašyna zachavańnia " "dadzienych vydzialale 2 bufery hetaha pamieru). Pamier pa zmoŭčańni — 1 MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Častata kantrolnych kropak" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6984,11 +7094,11 @@ msgstr "" "Kolkaść dadzienych, jakija zapisvajucca ŭ łog tranzakcyj pierad tym, jak " "vykanajecca kantrolnaja kropka. Značeńnie pa zmoŭčańni — 24 MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Paroh łahavańnia dadzienych" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -7001,11 +7111,11 @@ msgstr "" "pavialičać ahulnuju kolkaść dadzienych, jakija mohuć zachoŭvacca ŭ bazie " "dadzienych." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Paroh śmiećcia" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -7014,11 +7124,11 @@ msgstr "" "ścisnuty. Hetaje značeńnie moža znachodzicca ŭ miežach ad 1 da 99. Značeńnie " "pa zmoŭčańni — 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Pamier buferu łogu" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -7029,27 +7139,27 @@ msgstr "" "buferu na kožny patok, ale tolki kali patoku patrabujecca zapisvać łog " "dadzienych." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Pamier pavieličeńnia fajłaŭ z dadzienymi" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Pamier pavieličeńnia fajłaŭ apracoŭki dadzienych (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Pamier pavieličeńnia fajłaŭ radkoŭ" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Pamier pavieličeńnia fajłaŭ ukazalnikaŭ na radki (.xtr)." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Kolkaść fajłaŭ łogu" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -7061,20 +7171,20 @@ msgstr "" "značeńnie, staryja fajły łogu buduć vydalenyja. U inšym vypadku jany buduć " "pierajmienavanyja i im budzie dadzieny čarhovy najvyšejšy numar." -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Suviazi" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -7135,14 +7245,14 @@ msgstr "Damp dadzienych tablicy" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Padzieja" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7216,14 +7326,14 @@ msgstr "Dastupnyja MIME-typy" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Chost" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Čas stvareńnia" @@ -7423,21 +7533,12 @@ msgstr "Vyhlad" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Adkryć novaje akno phpMyAdmin" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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ŭ)." @@ -7535,12 +7636,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Imia tablicy" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Nazvy kalonak" @@ -7610,98 +7711,80 @@ msgstr "Režym sumiaščalnaści SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funkcyja" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Schavać" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Dvajkovy" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Dvajkovyja dadzienyja — nie redagujucca" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Ustavić" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, 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:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "i paśla" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Ustavić jak novy radok" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Pierajści da papiaredniaj staronki" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Dadać jašče adzin radok" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Viarnucca da hetaj staronki" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Redagavać nastupny radok" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Značeńnie" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" @@ -7718,38 +7801,38 @@ msgstr "Nijakaja" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Piat" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Adpravić" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Dadać novaje pole" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Ci sapraŭdy vy žadajecie " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Niama źmienaŭ" @@ -7961,94 +8044,94 @@ msgstr "" msgid "This format has no options" msgstr "Hety farmat nia maje opcyjaŭ" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "nie OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Uklučana" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Pakazvać mahčymaści" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Stvareńnie PDF-fajłaŭ" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Pakazvać kamentary kalonak" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Pieraŭtvareńnie MIME-typu braŭzeram" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Za infarmacyjaj jak abnavić tablicu column_comments źviarniciesia, kali " "łaska, da dakumentacyi" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Zakładzieny SQL-zapyt" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Historyja SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "niama apisańnia" @@ -8056,7 +8139,7 @@ msgstr "niama apisańnia" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -8068,13 +8151,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Imia karystalnika" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -8087,7 +8170,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Źmiennaja" @@ -8101,38 +8184,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Luby karystalnik" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Vykarystoŭvać tekstavaje pole" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Luby chost" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lakalny" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Hety chost" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Vykarystoŭvać tablicu chostaŭ" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8146,7 +8229,7 @@ msgstr "Zgieneravać parol" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8179,103 +8262,104 @@ msgstr "Tablica %1$s stvoranaja." msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Event" msgid "Edit event" msgstr "Padzieja" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Pracesy" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." msgid "Details" msgstr "Padrabiaźniej..." -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Typ padziei" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Typ padziei" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Źmianić" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Vykanać zapyt z zakładak" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Apošniaja staronka" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Poŭnaja ŭstaŭka" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8306,7 +8390,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -8328,103 +8412,103 @@ msgstr "Tablica %s była vydalenaja" msgid "Routine %1$s has been created." msgstr "Tablica %1$s stvoranaja." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Pracedury" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Pracedury" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Pramyja linii suviaziaŭ" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Daŭžynia/Značeńni*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Dadać novaje pole" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Pierajmienavać bazu dadzienych u" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Typ pracedury" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Daŭžynia/Značeńni*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcyi tablicy" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Typ zapytu" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8432,19 +8516,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, 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:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8466,44 +8550,44 @@ msgstr "Tablica %s była vydalenaja" msgid "Trigger %1$s has been created." msgstr "Tablica %1$s stvoranaja." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new User" msgid "Edit trigger" msgstr "Dadać novaha karystalnika" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Tryhiery" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Čas" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Niekarektnaje imia tablicy" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8609,7 +8693,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8619,7 +8703,7 @@ msgstr "Tablicy \"%s\" nie isnuje!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8627,7 +8711,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Kali łaska, skanfihurujcie kaardynaty dla tablicy %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8641,27 +8725,27 @@ msgstr "Struktura bazy \"%s\" — staronka %s" msgid "This page does not contain any tables!" msgstr "Fajł %s nia ŭtrymlivaje nijakaha identyfikatara kluča" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Relacyjnaja schiema" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Źmiest" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atrybuty" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Dadatkova" @@ -8781,7 +8865,7 @@ msgstr "Nieviadomaja mova: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8799,7 +8883,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -8818,7 +8902,7 @@ msgstr "Vykanać SQL-zapyt(y) na servery %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8829,11 +8913,11 @@ msgstr "" msgid "Columns" msgstr "Nazvy kalonak" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" @@ -8932,7 +9016,7 @@ msgstr "" "ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ " "%sdakumentacyi%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8964,8 +9048,8 @@ msgstr "" "vykarystańnia zvarotnych słešaŭ i dvukośsia, vykarystoŭvajučy farmat: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indeks" @@ -9019,13 +9103,13 @@ msgstr "Nijakaja" msgid "As defined:" msgstr "Jak vyznačana:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Pieršasny" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Poŭnatekstekstavaje" @@ -9039,20 +9123,20 @@ msgstr "" msgid "after %s" msgstr "Paśla %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, 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:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Treba dadać prynamsi adno pole." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Mašyna zachavańnia dadzienych" @@ -9060,45 +9144,6 @@ msgstr "Mašyna zachavańnia dadzienych" msgid "PARTITION definition" msgstr "Aznačeńnie PARTITION" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Pošuk" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Vybrać pali (prynamsi adno):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Dadać umovy pošuku (cieła dla ŭmovy \"where\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Kolkaść radkoŭ na staronku" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Paradak prahladu:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Prahladzieć źniešnija značeńni" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Vykanać \"zapyt zhodna prykłada\" (symbal padstanoŭki: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9295,13 +9340,13 @@ msgstr "" msgid "Manage your settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Madyfikacyi byli zachavanyja" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9314,7 +9359,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9345,7 +9390,7 @@ msgstr "Supastaŭleńnie padłučeńnia da MySQL" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9371,9 +9416,9 @@ msgstr "Versija servera" msgid "Protocol version" msgstr "Versija pratakołu" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Karystalnik" @@ -9509,149 +9554,149 @@ msgstr "" "Na servery zapuščany Suhosin. Kali łaska, źviarniciesia da %sdakumentacyi%s " "dla atrymańnia apisańnia mahčymych prablemaŭ." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Bazy dadzienych adsutničajuć" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "imia tablicy" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "imia tablicy" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Stvaryć tablicu" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Kali łaska, vybierycie bazu dadzienych" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Pakazać/schavać meniu źleva" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Zachavać raźmiaščeńnie tablic" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Stvaryć suviaź" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Abnavić" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Dapamoha" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Vuhłavyja linii suviaziaŭ" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Pramyja linii suviaziaŭ" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Źviać ź sietkaj" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Zharnuć/razharnuć adlustravańnie ŭsich tablic" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Pieraklučyć maleńki/vialiki" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "" "Kab vybrać suviaź, naciśnicie na kropcy złučeńnia, jak pakazana na vyjavie:" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Impartavać/Ekspartavać kaardynaty tablic ŭ PDF-schiemu" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Vykanać zapyt" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Pierasunuć meniu" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Schavać/pakazać usie tablicy" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Schavać/pakazać tablicy biaz suviaziaŭ" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Kolkaść tablic" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Vydalić suviaź" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Suviaź vydalenaja" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Ekspart" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "pa zapytu" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy #| msgid "Rename table to" msgid "Rename to" msgstr "Pierajmienavać tablicu ŭ" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Imia karystalnika" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Stvaryć" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9665,61 +9710,61 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "staronak" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Impartavać fajły" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Maštab" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Stvaryć novy indeks" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Imia karystalnika" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Maštab" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "rekamendavany" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Pamyłka: suviaź užo isnuje." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Pamyłka: suviaź nie dadadzienaja." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Suviaź FOREIGN KEY była dadadzienaja" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Unutranaja suviaź dadadzienaja" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Suviaź vydalenaja" @@ -9731,91 +9776,91 @@ msgstr "Pamyłka zachavańnia kaardynataŭ." msgid "Modifications have been saved" msgstr "Madyfikacyi byli zachavanyja" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Impartavać fajły" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Impartavać fajły" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Usie" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tablica %s nia znojdzienaja abo nia vyznačanaja ŭ %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9825,17 +9870,17 @@ msgstr "Tablicy \"%s\" nie isnuje!" msgid "Select binary log to view" msgstr "Vyłučycie dvajkovy łog dla prahladu" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Fajły" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Abrazać pakazanyja zapyty" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Pakazać poŭnyja zapyty" @@ -9851,7 +9896,7 @@ msgstr "Pazycyja" msgid "Original position" msgstr "Pieršapačatkovaja pazycyja" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Infarmacyja" @@ -9859,7 +9904,7 @@ msgstr "Infarmacyja" msgid "Character Sets and Collations" msgstr "Raskładki i supastaŭleńni" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9868,24 +9913,24 @@ msgstr[0] "%s bazaŭ dadzienych byli paśpiachova vydalenyja." msgstr[1] "%s bazaŭ dadzienych byli paśpiachova vydalenyja." msgstr[2] "%s bazaŭ dadzienych byli paśpiachova vydalenyja." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statystyka bazaŭ dadzienych" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Uklučyć statystyku" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9897,161 +9942,161 @@ msgstr "" msgid "Storage Engines" msgstr "Mašyny zachavańnia dadzienych" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Prahladzieć damp (schiemu) bazaŭ dadzienych" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Pieršaja staronka" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Adklučana" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Uklučaje ŭsie pryvilei, aproč GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Dazvalaje źmianiać strukturu isnych tablic." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Dazvalaje źmianiać i vydalać pragramy, jakija zachoŭvajucca." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Dazvalaje stvarać novyja bazy dadzienych i tablicy." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Dazvalaje stvarać pragramy, jakija zachoŭvajucca." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Dazvalaje stvarać novyja tablicy." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Dazvalaje stvarać časovyja tablicy." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Dazvalaje stvarać, vydalać i pierajmianoŭvać ulikovyja zapisy karystalnikaŭ" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Dazvalaje stvarać novyja prahlady." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Dazvalaje vydalać dadzienyja." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Dazvalaje vydalać bazy dadzienych i tablicy." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Dazvalaje vydalać tablicy." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Dazvalaje stvarać padziei ŭ planiroŭniku padziejaŭ" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" "Dazvalaje impartavać dadzienyja z fajłaŭ i ekspartavać dadzienyja ŭ fajły." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dazvalaje dadavać karystalnikaŭ i pryvilei biez pierazahruzki tablic " "pryvilejaŭ." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Dazvalaje stvarać i vydalać indeksy." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Abmiažoŭvaje kolkaść novych złučeńniaŭ, jakija karystalnik moža adkryć na " "praciahu hadziny." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Abmiažoŭvaje kolkaść zapytaŭ, jakija karystalnik moža adpravić na server na " "praciahu hadziny." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -10059,59 +10104,59 @@ msgstr "" "Abmiažoŭvaje kolkaść kamandaŭ, źmianiajučych lubuju tablicu abo bazu " "dadzienych, jakija karystalnik moža vykanać na praciahu hadziny." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Abmiažoŭvaje kolkaść adnačasovych złučeńniaŭ, jakija moža mieć karystalnik." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Dazvalaje prahladać pracesy ŭsich karystalnikaŭ" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Nie pracuje ŭ hetaj versii MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Dazvalaje pierazahružać nałady servera i ačyščać keš servera." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Dazvalaje karystalniku pytacca, dzie znachodziacca slaves / masters." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Nieabchodna dla replikacyi slaves." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Dazvalaje čytać dadzienyja." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Daje dostup da poŭnaha śpisu bazaŭ dadzienych." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dazvalaje vykanańnie zapytaŭ SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Dazvalaje spyniać server." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -10121,173 +10166,173 @@ msgstr "" "Patrabujecca dla bolšaści administratyŭnych aperacyjaŭ, takich jak " "vyznačeńnie hlabalnych źmiennych abo spynieńnie patokaŭ inšych karystalnikaŭ." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Dazvalaje stvareńnie i vydaleńnie tryhieraŭ" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Dazvalaje źmianiać dadzienyja." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Biez pryvilejaŭ." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nijakaja" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Pryvilei, specyfičnyja dla tablicy" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Zaŭvaha: imiony pryvilejaŭ MySQL zadajucca pa-anhielsku" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administravańnie" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Hlabalnyja pryvilei" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Specyfičnyja pryvilei bazy dadzienych" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Abmiežavańni resursaŭ" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Zaŭvaha: Paznačeńnie hetych opcyjaŭ jak 0 (nul) zdymaje abmiežavańnie." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Infarmacyja pra ŭvachod" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Nie źmianiać parol" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nie znojdzieny karystalnik." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Karystalnik %s užo isnuje!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Byŭ dadadzieny novy karystalnik." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Vy źmianili pryvilei dla %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Vy anulavali pryvilei dla %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Parol dla %s paśpiachova źmienieny." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Vydaleńnie %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Na vybranyja karystalniki dla vydaleńnia!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Pierazahruzić pryvilei" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Redagavać pryvilei" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Anulavać" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Ekspart" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Luby" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Pryvilei" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Pryvilei" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Karystalniki" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Vydalić vybranych karystalnikaŭ" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10300,147 +10345,147 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Specyfičnyja pryvilei kalonak" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Dadać pryvilei na nastupnuju bazu" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Dadać pryvilei na nastupnuju tablicu" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... pakinuć staroha." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... vydalić staroha z tablicy karystalnikaŭ." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Baza dadzienych dla karystalnika" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Karystalniki z pravami dostupu da \"%s\"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "hlabalny" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "specyfičny dla bazy dadzienych" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "šablon" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "Vyhlad %s byŭ vydaleny" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 #, fuzzy msgid "Show master status" msgstr "Pakazać stan zaležnych serveraŭ" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10449,269 +10494,269 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Tolki strukturu" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Tolki strukturu" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Patok %s byŭ paśpiachova spynieny." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nia moža spynić praces %s. Napeŭna, jon užo spynieny." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Apracoŭnik" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Keš zapytaŭ" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Patoki" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Časovyja dadzienyja" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Adkładzienyja ŭstaŭki" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Keš klučoŭ" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Ab'jadnańni" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Sartavańnie" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Kaardynatar pierakładu" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Skinuć (zakryć) usie tablicy" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Pakazać adkrytyja tablicy" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Pakazać zaležnyja servery" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Pakazać stan zaležnych serveraŭ" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Skinuć keš zapytaŭ" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Biahučaja infarmacyja" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Abnavić" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nie źmianiać parol" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Pakazać adkrytyja tablicy" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Pakazać adkrytyja tablicy" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Suviazi" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Typ zapytu" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Funkcyi" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10719,56 +10764,56 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Vyrazy" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10776,47 +10821,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Atrymana" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Adpraŭlena" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "maksymum adnačasovych złučeńniaŭ" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Niaŭdałych sprobaŭ" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Spyniena" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Kamanda" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -10826,17 +10871,17 @@ msgstr "" "jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł " "dla zachoŭvańnia vyrazaŭ tranzakcyi." -#: server_status.php:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10848,11 +10893,11 @@ msgstr "" "pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ " "pamiaci, a nie na dysku." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10860,7 +10905,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:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10868,7 +10913,7 @@ msgstr "" "Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja " "pamyłki (peŭna, dublavanyja klučy)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10877,23 +10922,23 @@ msgstr "" "Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj " "ułasny patok." -#: server_status.php:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Kolkaść vykananych FLUSH-vyrazaŭ." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Kolkaść unutranych COMMIT-vyrazaŭ." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy." -#: server_status.php:1334 +#: 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 " @@ -10903,7 +10948,7 @@ msgstr "" "viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. " "Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic." -#: server_status.php:1335 +#: 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, " @@ -10914,7 +10959,7 @@ msgstr "" "skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 " "indeksavanaja." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10923,7 +10968,7 @@ msgstr "" "vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra " "indeksavanyja." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10933,7 +10978,7 @@ msgstr "" "pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham " "abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10941,7 +10986,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:1339 +#: 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 " @@ -10954,7 +10999,7 @@ msgstr "" "całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć " "klučy." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10966,37 +11011,37 @@ msgstr "" "aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja " "tak, kab vykarystoŭvać pieravahi indeksaŭ." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo " "niaźmienienych)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Kolkaść źmienienych staronak." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Kolkaść volnych staronak." -#: server_status.php:1348 +#: 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 " @@ -11006,7 +11051,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:1349 +#: server_status.php:1348 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 " @@ -11019,11 +11064,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Ahulny pamier bufernaha pułu, u staronkach." -#: server_status.php:1351 +#: 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." @@ -11032,7 +11077,7 @@ msgstr "" "adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym " "paradku." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11040,11 +11085,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:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB." -#: server_status.php:1354 +#: 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." @@ -11052,7 +11097,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:1355 +#: server_status.php:1354 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 " @@ -11066,55 +11111,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:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Ahulnaja kolkaść zapisaŭ dadzienych." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -11122,35 +11167,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Kolkaść zapisaŭ u łog." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Kolkaść stvoranych staronak." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -11159,54 +11204,54 @@ msgstr "" "vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho " "ŭ bajty." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Kolkaść pračytanych staronak." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Kolkaść zapisanych staronak." -#: server_status.php:1378 +#: server_status.php:1377 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:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB." -#: server_status.php:1387 +#: 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." @@ -11214,7 +11259,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:1388 +#: 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." @@ -11222,7 +11267,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:1389 +#: server_status.php:1388 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 " @@ -11232,17 +11277,17 @@ msgstr "" "stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, " "jakija vykarastoŭvalisia adnačasova." -#: server_status.php:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Farmat impartavanaha fajła" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -11252,26 +11297,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:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -11282,17 +11327,17 @@ msgstr "" "Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ " "zkampilavany." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11300,39 +11345,39 @@ msgstr "" "Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, " "značeńnie kešu tablic imavierna vielmi małoje." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Kolkaść adkrytych fajłaŭ." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Kolkaść adkrytych tablic." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Kolkaść zvarotaŭ da kešu." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš." -#: server_status.php:1408 +#: 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 " @@ -11345,7 +11390,7 @@ msgstr "" "vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać " "z kešu." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11353,19 +11398,19 @@ msgstr "" "Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za " "značeńnia dyrektyvy query_cache_type)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -11373,13 +11418,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -11388,7 +11433,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:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11396,17 +11441,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11414,13 +11459,13 @@ msgstr "" "Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi " "paŭtaraŭ tranzakcyi." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11428,14 +11473,14 @@ msgstr "" "Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla " "stvareńnia." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11445,25 +11490,25 @@ msgstr "" "hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia " "systemnaj źmiennaj sort_buffer_size." -#: server_status.php:1424 +#: server_status.php:1423 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:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Kolkaść adsartavanych radkoŭ." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -11475,7 +11520,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:1429 +#: server_status.php:1428 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 " @@ -11485,11 +11530,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11501,68 +11546,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:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Keš klučoŭ" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Dadać novaje pole" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Abnavić" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dadać/vydalić kalonku kryteru" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11571,7 +11616,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11579,18 +11624,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11598,11 +11643,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11610,93 +11655,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Pierajmienavać bazu dadzienych u" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Vybierycie tablicu(y)" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Niekarektnaje imia tablicy" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "Dadać novaha karystalnika" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "Statystyka radku" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Vybrać usio" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Typ zapytu" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11705,7 +11750,7 @@ msgstr[0] "u sekundu" msgstr[1] "u sekundu" msgstr[2] "u sekundu" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11714,132 +11759,132 @@ msgstr[0] "vykarystoŭvajecca" msgstr[1] "vykarystoŭvajecca" msgstr[2] "vykarystoŭvajecca" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy #| msgid "Execute bookmarked query" msgid "Executed queries" msgstr "Vykanać zapyt z zakładak" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "maksymum adnačasovych złučeńniaŭ" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Nałady i źmiennyja servera" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Značeńnie sesii" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Hlabalnaje značeńnie" @@ -12127,181 +12172,181 @@ msgstr "" msgid "Wrong data" msgstr "Bazy dadzienych adsutničajuć" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Ci sapraŭdy vy žadajecie " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "U vyhladzie PHP-kodu" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pravieryć SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL-vynik" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Stvorany" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Prablemy z indeksami dla tablicy `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Mietka" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s była paśpiachova źmienienaja" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Sak" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Nazvy kalonak" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Mašyny" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Ścisnutaja" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Zahałovak spravazdačy" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Značeńnie" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Značeńnie" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Tablica %s užo isnuje!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Tablica %1$s stvoranaja." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Prahladzieć damp (schiemu) tablicy" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Dadać/vydalić kalonku kryteru" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Kolkaść fajłaŭ łogu" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Zachavać jak fajł" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12319,32 +12364,32 @@ msgstr "Niemahčyma pierajmienavać indeks u PRIMARY!" msgid "No index parts defined!" msgstr "Častki indeksu nia vyznačanyja!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Dadać novaje pole" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Add new field" msgid "Edit index" msgstr "Dadać novaje pole" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Imia indeksa:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" musić być imiem pieršasnaha kluča i tolki jaho!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Typ indeksa:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Dadać da indeksa %s kalonku(i)" @@ -12367,160 +12412,160 @@ msgstr "Tablica %s była pieraniesienaja ŭ %s." msgid "Table %s has been copied to %s." msgstr "Tablica %s była skapijavanaja ŭ %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Pustaja nazva tablicy!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Źmianić paradak tablicy" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(asobna)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Pieranieści tablicu ŭ (baza dadzienych.tablica):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Opcyi tablicy" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Pierajmienavać tablicu ŭ" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Skapijavać tablicu ŭ (baza dadzienych.tablica):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Pierajści da skapijavanaj tablicy" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Absłuhoŭvańnie tablicy" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defrahmentavać tablicu" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Keš tablicy %s byŭ ačyščany" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Skinuć keš tablicy (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Damp dadzienych tablicy" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy #| msgid "Copy database to" msgid "Delete the table (DROP)" msgstr "Kapijavać bazu dadzienych u" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Padtrymka padziełaŭ" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Padzieł %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Praanalizavać" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Pravieryć" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Aptymizavać" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Pierabudavać" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Adramantavać" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Skasavać padzieł na častki" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Pravieryć cełasnaść dadzienych:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Pakazać tablicy" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Vykarystańnie prastory" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efektyŭnaść" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Statystyka radku" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dynamičny" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Daŭžynia radka" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Pamier radka" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Pamyłka stvareńnia źniešniaha kluča na %1$s (praviercie typy kalonak)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Unutranyja suviazi" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12528,119 +12573,119 @@ msgstr "" "Unutranaja suviaź nie źjaŭlajecca abaviazkovaj, kali isnuje adpaviednaja " "suviaź FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Prahlad roznych značeńniaŭ" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add new field" msgid "Add SPATIAL index" msgstr "Dadać novaje pole" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Nijakaja" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tablica %s była vydalenaja" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Pieršasny kluč byŭ dadadzieny da %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Byŭ dadadzieny indeks dla %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Pakazać infarmacyju pra PHP" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Dadać %s novyja pali" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Versija dla druku" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Prahlad zaležnaściaŭ" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Prapanavanaja struktura tablicy" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dadać %s novyja pali" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "U kancy tablicy" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "U pačatku tablicy" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Paśla %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "padzielenaja na sekcyi" @@ -12795,74 +12840,40 @@ msgstr "" msgid "Create version" msgstr "" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Vykanać \"zapyt zhodna prykłada\" (symbal padstanoŭki: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "in query" -msgid "Additional search criteria" -msgstr "pa zapytu" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Skinuć" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Dastupnyja MIME-typy" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-typy, vyłučanyja kursivam, nia majuć asobnaj funkcyi pieraŭtvareńnia" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Dastupnyja pieraŭtvareńni" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Apisańnie" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Vy nia majecie dastatkovych pryvilejaŭ być u hetym miescy ŭ hety čas!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profil byŭ adnoŭleny." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Nazva prahladu" diff --git a/po/bg.po b/po/bg.po index 58f8d9e14e..e811450bd8 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-06-01 22:03+0200\n" "Last-Translator: Стоян Димитров \n" "Language-Team: bulgarian \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Показване на всички" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Страница:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "отварящият го прозорец или браузърът Ви е блокирал обновяване на данни от " "един прозорец в друг от съображения за сигурност." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Изпълнение" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Име на ключ" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Описание" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Използване тази стойност" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "БД %1$s беше създадена." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Коментар към БД: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Коментари към таблицата" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Kолона" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Празно" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "По подразбиране" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Свързана към" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Коментари" @@ -197,14 +198,14 @@ msgstr "Коментари" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Не" @@ -217,120 +218,120 @@ msgstr "Не" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Да" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Преглед на схема (дъмп) на БД" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "В БД няма таблици." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Маркиране всички" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Размаркиране всички" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Името на БД е празно!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "БД %1$s беше преименувана на %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "БД %1$s беше копирана като %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Преименуване БД на" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Изтриване БД" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "БД %s беше изтрита." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Изтриване на БД (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Копиране на БД в" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Само структурата" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Структурата и данните" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Само данните" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Изпълняване на CREATE DATABASE преди копирането" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Добавяне на %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Добавяне AUTO_INCREMENT стойност" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Добавяне ограничения" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Показване на копираната БД" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Колация" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -339,59 +340,59 @@ msgstr "" "Хранилището за конфигурацията на phpMyAdmin е деактивирано. За да разберете " "защо натиснете %sтук%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Редакция или експорт на релационна схема" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Таблица" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Редове" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Размер" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "ползва се в момента" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Дата на създаване" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Последно обновление" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Последна проверка" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -402,395 +403,396 @@ msgstr[1] "%s таблици" msgid "You have to choose at least one column to display" msgstr "Изберете поне една колона за показване" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Превключване към %sвизуален строител%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Сортиране" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Възходящо" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Низходящо" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Показване" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Критерии" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Вмъкни" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "И" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Изтрий" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Или" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Промени" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Добавяне/изтриване ред по критерий" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Добавяне/изтриване колони" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Допълване заявка" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Използване таблиците" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL заявка към БД %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Изпълни заявката" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Отказан достъп" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "поне една от думите" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "всички думи" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "точната фраза" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "като регулярен израз" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати от търсенето на \"%s\" %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Изтриване на съвпаденията от таблицата %s?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Общо: %s съвпадение" msgstr[1] "Общо: %s съвпадения" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Търсене в БД" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Думи или стойности за търсене (знак за заместване: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Намери:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Думите трябва да се разделят с интервал (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "В таблици:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "В колона:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "В БД няма таблици" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "непознат" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Таблицата %s беше изчистена" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Изглед %s беше изтрит" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Таблицата %s беше изтрита" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Проследяването е активно." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Проследяването е неактивно." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Репликация" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Сума" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Когато има отметка:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Маркиране всички" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Преглед за печат" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Изчистване" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Изтриване" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Проверка на таблицата" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Оптимизация на таблицата" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Поправяне на таблицата" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Анализиране на таблицата" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Добавяне представка към таблица" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Замяна на представката на таблица" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Копиране на таблицата с представка" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Речник на данните" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Следени таблици" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "БД" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Последна версия" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Създаден" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Съвременен" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Състояние" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Действие" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Изтриване на проследената информация за таблицата" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "активен" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "неактивен" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Версии" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Доклад за следенето" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Моментна снимка на структурата" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Непроследявани таблици" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Следене на таблица" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Дневник БД" @@ -802,16 +804,16 @@ msgstr "Неправилен тип!" msgid "Selected export type has to be saved in file!" msgstr "Избраният тип експорт трябва да бъде запазен като файл!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Грешни параметри!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недостатъчно свободно пространство за запазване на файла %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -819,12 +821,12 @@ msgstr "" "Файлът %s вече съществува на сървъра, сменете името на файла или включете " "опцията за препокриване." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web сървърът няма права за писане върху файла %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Схемата беше запазена във файл %s." @@ -833,92 +835,92 @@ msgstr "Схемата беше запазена във файл %s." msgid "Invalid export type" msgstr "Невалиден тип експорт" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Стойност за колона \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Използване на OpenStreetMaps като основен слой" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Геометрия" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Точка" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Точка %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Добавяне на точка" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Linestring" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Външен пръстен" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Вътрешен пръстен" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Добавяне LineString" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Добавяне вътрешен пръстен" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Многоъгълник" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Добавяне многоъгълник" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Добавяне геометрия" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Изход" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -927,21 +929,21 @@ msgstr "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sдокументацията%s за да намерите начин да избегнете това ограничение." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Показване на белязка" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Белязката беше изтрита." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Файлът не може да бъде прочетен" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -950,7 +952,7 @@ msgstr "" "Опитвате да заредите файл с неподдържана компресия (%s). Или поддръжката ѝ " "не е реализирана, или е забранена от конфигурацията." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -960,30 +962,30 @@ msgstr "" "по-голям от разрешеното в конфигурацията на PHP. Вижте [a@./Documentation." "html#faq1_16@Documentation]ЧЗВ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Не може да бъде преобразуван знаковият набор на файла без библиотека за " "преобразуване на знакови набори" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Не могат да бъдат заредени разширенията за импорт, моля проверете " "инсталацията!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Белязка %s беше създадена" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импортирането приключи успешно, бяха изпълнени %d заявки." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -991,7 +993,7 @@ msgstr "" "Времето за изчакване на скрипта изтече, ако искате да завършите импорта го " "пуснете отново и той ще си продължи." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1000,25 +1002,25 @@ msgstr "" "обикновено означава, че phpMyAdmin няма да бъде в състояние да завърши този " "импорт, освен ако не бъдат увеличени времевите ограничения в PHP." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Назад" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin е по-дружелюбен ако използвате браузър с поддържка на рамки." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" заявката е забранена." @@ -1027,7 +1029,7 @@ msgstr "\"DROP DATABASE\" заявката е забранена." msgid "Do you really want to execute \"%s\"?" msgstr "Наистина ли искате да изпълните \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Вие ще УНИЩОЖИТЕ цяла БД!" @@ -1067,7 +1069,7 @@ msgstr "Добавяне индекс" msgid "Edit Index" msgstr "Редактиране индекс" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Добавяне %d колона(и) към индекс" @@ -1085,16 +1087,16 @@ msgstr "Името на хоста е празно!" msgid "The user name is empty!" msgstr "Потребителското име е празно!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Паролата е празна!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Паролата не е същата!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Нов потребител" @@ -1111,23 +1113,24 @@ msgstr "Изтриване на маркираните потребители" msgid "Close" msgstr "Затваряне" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Редакция" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Диаграма на трафик в реално време" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Диаграма на връзки/процеси в реално време" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Диаграма на заявки в реално време" @@ -1137,24 +1140,24 @@ msgstr "Статична информация" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Общо" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Друго" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1174,7 +1177,7 @@ msgstr "Сървър трафик (в KiB)" msgid "Connections since last refresh" msgstr "Връзки след последното опресняване" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Процеси" @@ -1192,7 +1195,7 @@ msgstr "Запитвания след последното опресняван msgid "Questions (executed statements by the server)" msgstr "Запитвания (изпълнени от сървъра заявки)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Статистика за заявките" @@ -1237,14 +1240,14 @@ msgid "System swap" msgstr "Системен swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "КБ" @@ -1296,32 +1299,32 @@ msgstr "Байта изпратени" msgid "Bytes received" msgstr "Байта получени" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Връзки" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Б" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "ЕБ" @@ -1335,11 +1338,11 @@ msgstr "%d таблица(и)" msgid "Questions" msgstr "Запитвания" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Настройки" @@ -1359,11 +1362,11 @@ msgstr "Добавяне диаграма към мрежата" msgid "Please add at least one variable to the series" msgstr "Моля добавете поне една променлива към сериите" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Няма" @@ -1463,7 +1466,7 @@ msgstr "Промяна настройки" msgid "Current settings" msgstr "Текущи настройки" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Заглавие на диаграмата" @@ -1547,7 +1550,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Време" @@ -1640,10 +1643,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1691,9 +1694,9 @@ msgstr "Използвана променлива / формула" msgid "Test" msgstr "Тест" -#: 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 +#: 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 msgid "Cancel" msgstr "Отмяна" @@ -1705,11 +1708,11 @@ msgstr "Зареждане" msgid "Processing Request" msgstr "Обработка на заявката" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Грешка при обработка на заявката" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Няма избрани БД." @@ -1721,9 +1724,9 @@ msgstr "Изтриване на колона" msgid "Adding Primary Key" msgstr "Добавяне на първичен ключ" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1763,15 +1766,15 @@ msgstr "Скриване на индексите" msgid "Show indexes" msgstr "Показване на индексите" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Проверки на външен ключ:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Позволено)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Забрано)" @@ -1799,7 +1802,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET редактор" @@ -1838,8 +1841,8 @@ msgstr "Показване формата за заявки" msgid "No rows selected" msgstr "Няма върнати редове" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Промяна" @@ -1847,18 +1850,18 @@ msgstr "Промяна" msgid "Query execution time" msgstr "Време за изпълнение на заявката" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "%d не е валиден номер на ред." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Зпазване" @@ -1870,7 +1873,7 @@ msgstr "Скриване критерий за търсене" msgid "Show search criteria" msgstr "Показване критерий за търсене" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "" @@ -1919,12 +1922,12 @@ msgstr "Резултати от заявката" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Игнориране" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Копиране" @@ -1944,7 +1947,7 @@ msgstr "Избор външен ключ" msgid "Please select the primary key or a unique key" msgstr "Изберете първичен или уникален ключ" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Изберете колона за показване" @@ -2037,7 +2040,7 @@ msgstr "Генериране" msgid "Change Password" msgstr "Смяна парола" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Още" @@ -2128,63 +2131,63 @@ msgid "December" msgstr "декември" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "яну" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "фев" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "септ" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "ное" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "дек" @@ -2222,32 +2225,32 @@ msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "сб" @@ -2362,16 +2365,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "на секунда" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "на минута" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "на час" @@ -2394,46 +2397,231 @@ msgstr "" msgid "Font size" msgstr "Размер шрифт" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Съхраняване на редактираните данни" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Възстановяване на подредбата на колоните" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Начало" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Предна" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Следваща" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Последна" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Начален ред" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Брой редове" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Режим" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "хоризонтален" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "хоризонтален (обърнати хедъри)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "вертикален" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "Заглавки всеки %s реда" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Сортиране по ключ" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Настройки" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Частични текстове" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Пълни текстове" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Показване на двоичните данни" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Показване на BLOB-данните" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Показване на двоичните данни в шестнадесетичен вид" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Без трансформация от браузъра" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Добре познат текст" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Добре позната двоична стойност" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Редът беше изтрит" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Спиране" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Може да има приблизителна стойност. Виж [a@./Documentation." +"html#faq3_11@Documentation]FAQ 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "в зявката" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Показване на записи" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "общо" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Заявката отне %01.4f секунди" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Операции с резултата от заявката" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Преглед за печат (с пълните текстове)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Диаграма" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Визуализиране на GIS данни" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Създаване на изглед" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Връзките не са намерени" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Твърде много съобщения за грешки, някои не са показани." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Файлът не е бил качен." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Качваният файл надвижава директивата upload_max_filesize от php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Изпратеният файл надхвърля директивата MAX_FILE_SIZE заложена във формата." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Подаденият файл беше само частично качен." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Липсва временна папка." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Неуспешно записване на файл на диска." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Качването на файлът беше спряно от разширение." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Неизвестна грешка при качване." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2441,26 +2629,39 @@ msgstr "" "Грешка при преместване на качения файл, виж [a@./Documentation." "html#faq1_11@Documentation]ЧЗВ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Грешка при преместване на качения файл." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Не може да бъде прочетен (преместен) качен файл." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Отваряне на нов прозорец с phpMyAdmin" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Оттук нататък са необходими бисквитки." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "Оттук нататък е необходим javascript" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Индекси" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Уникално" @@ -2473,8 +2674,8 @@ msgstr "Опаковани" msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Коментар" @@ -2497,128 +2698,128 @@ msgstr "" "Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да " "бъде премахнат." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "БД" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Сървър" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Структура" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Вмъкване" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Операции" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Проследяване" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Таблицата изглежда празна!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "БД изглежда празна!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Заявка по пример" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Права" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Процедури" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Събития" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Строител" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Потребители" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Синхронизиране" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Двоичен дневник" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Променливи" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Знакови набори" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Добавки" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Хранилища" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Грешка" @@ -2643,7 +2844,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d ред добавен." msgstr[1] "%1$d реда добавени." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Грешка при създаване на PDF:" @@ -2730,16 +2931,98 @@ 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 +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 +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 +msgid "Value" +msgstr "Стойност" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Търсене в таблица" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Редакция/Вмъкване" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Избор на колона (поне една):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Добавяне на условие за търсене (съдържание на \"where\" клаузата):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Брой редове на страница" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Подреждане по:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Използване колоната като етикет за всяка точка" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Максимален брой редове за изчертаване" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Разглеждане на външни стойности" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Допълнителен критерий за търсене" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Изпълняване \"заявка по шаблон\" (знак за заместване: \"%\") за две различни " +"колони" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Изпълняване на \"заявка по шаблон\" (знак за заместване: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Прелистване/Редакция точки" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Как да бъде използвано" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "Възстановяване на мащабирането" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Не открито изображение към тема %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Прегледът не е достъпен." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "тази ще е" @@ -2758,7 +3041,7 @@ msgstr "Тема %s не е намерена!" msgid "Theme path not found for theme %s!" msgstr "Не е открит път към тема %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Тема" @@ -3053,13 +3336,13 @@ msgstr "Изброяване, избор от списък на определе msgid "Cannot connect: invalid settings." msgstr "Връзката неосъществима: невалидни настройки." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Добре дошли в %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3068,7 +3351,7 @@ msgstr "" "Изглежда не се създали конфигурационен файл. Вероятно ще искате да " "използвате %1$sскрипта за настройки%2$s, за да го създадете." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3084,58 +3367,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Не може да се използва Blowfish от mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Оттук нататък е необходим javascript" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Вход" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Можете да въведете хост/IP адрес и порт, разделени с интервал." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Сървър:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Име:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Парола:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Избор на сървър" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Оттук нататък са необходими бисквитки." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Входът без парола е забранен от конфигурацията (виж AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Няма активност през последните %s секунди; моля влезте отново" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Невъзможен вход в MySQL сървъра" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Грешно име/парола. Достъп отказан." @@ -3167,7 +3446,7 @@ msgstr "споделен" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Таблици" @@ -3179,13 +3458,13 @@ msgstr "Таблици" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Данни" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Загубено място" @@ -3210,19 +3489,11 @@ msgstr "Проверка на правата над БД "%s"." msgid "Check Privileges" msgstr "Проверка на правата" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "възможен пробив в сигурността" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "цифров ключ открит" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Неуспешно прочитане на конфигурацията" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3230,12 +3501,12 @@ msgstr "" "Това обикновено означава, че има синтактична грешка в него, моля, проверете " "всички грешки, показани по-долу." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Конфигурацията по подразбиране не може да бъде заредена от: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3243,204 +3514,190 @@ msgstr "" "На [code]$cfg['PmaAbsoluteUri'][/code] ТРЯБВА да бъде зададена стойност в " "конфигурационния файл!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Невалиден индекс на сървър: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Невалиден хост за сървър %1$s. Прегледайте конфигурацията." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Невалиден метод за удостоверяване в конфогурацията:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Осъвременете до %s %s или по-нова." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "възможен пробив в сигурността" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "цифров ключ открит" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Документация" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL заявка" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL отговори: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Неуспешно свързване към SQL валидатора!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Обяснение на SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Пропусни Explain SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Без PHP код" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Създаване на PHP код" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Опресняване" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Пропусни Validate SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Валидиране на SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Редакция на заявката на място" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "На място" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Профилиране" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "нд" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%e %B %Y в %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дена, %s часа, %s минути и %s секунди" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Липсващ параметър:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Начало" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Предна" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Следваща" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Последна" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Показване БД "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Функционалността %s се влияе от известен дефект, виж %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Щракване за превключване" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Разглеждане на компютъра:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Избор от директорията за качване %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Папката, която сте указали за качване е недостъпна" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Няма файлве за качване" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Изпълнение" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Печат" @@ -3470,8 +3727,8 @@ msgid "Closed" msgstr "Затворен" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Забрано" @@ -3612,9 +3869,9 @@ msgstr "Стойност по подразбиране" msgid "Allow users to customize this value" msgstr "Позволение на потребители да променят стойността" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Изчистване" @@ -3840,10 +4097,6 @@ msgstr "Скриване на действията за промяна на ст msgid "Show binary contents as HEX by default" msgstr "Показване на двоичните данни по подразбиране в шестнадесетичен вид" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Показване на двоичните данни в шестнадесетичен вид" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Показване на БД като списък вместо на падащо меню" @@ -3900,7 +4153,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Максимално време за изпълнение" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Изпращане" @@ -3909,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Формат" @@ -4013,7 +4266,7 @@ msgid "MIME type" msgstr "MIME тип" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Релации" @@ -5516,9 +5769,9 @@ msgstr "Изисква SQL валидаторът да бъде включван #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Парола" @@ -5795,32 +6048,24 @@ msgstr "Проверете правата на папката, съдържащ msgid "Details..." msgstr "Подробности..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Може да има приблизителна стойност. Виж [a@./Documentation." -"html#faq3_11@Documentation]FAQ 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Смяна на паролата" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Без парола" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Отново" @@ -5841,22 +6086,22 @@ msgstr "Създаване БД" msgid "Create" msgstr "Създаване" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Без права" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Име" @@ -6009,25 +6254,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -6136,383 +6381,238 @@ msgstr "Специфични настройки:" msgid "Language" msgstr "Език" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Съхраняване на редактираните данни" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Възстановяване на подредбата на колоните" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Начален ред" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Брой редове" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Режим" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "хоризонтален" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "хоризонтален (обърнати хедъри)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "вертикален" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "Заглавки всеки %s реда" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Сортиране по ключ" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Настройки" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Частични текстове" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Пълни текстове" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Показване на двоичните данни" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Показване на BLOB-данните" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Без трансформация от браузъра" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Добре познат текст" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Добре позната двоична стойност" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Редът беше изтрит" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Спиране" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "в зявката" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Показване на записи" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "общо" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Заявката отне %01.4f секунди" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Операции с резултата от заявката" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Преглед за печат (с пълните текстове)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Диаграма" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Визуализиране на GIS данни" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Създаване на изглед" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Връзките не са намерени" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Весия" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Папка с данни" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Общата част от пътя до папката с всички InnoDB файлове." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Файлове с данни" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB Състояние" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "страници" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Свободни страници" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Мръсни страници" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Страници съдържащи данни" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Страници за изчистване" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Заети страници" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Заключени страници" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Заявки за четене" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Заявки за запис" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Пропуснати прочитания" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Изчаквания за запис" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Пропуснати прочитания в %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Изчаквания за запис в %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Режим на автоматично възстановяване" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Максимален размер на временните файлове за сортиране" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Максимален размер на временните файлове при създаване на индекс" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Поправка на нишките" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Размер на буфера за сортиране" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Размер на буфера за индекси" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Размер на буфера за записи" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Размер на буфера на дневника" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6520,48 +6620,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Размер на буфера на дневника" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6569,18 +6669,18 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6627,14 +6727,14 @@ msgstr "Ссхема на данните от таблица" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Действие" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Описание" @@ -6692,14 +6792,14 @@ msgstr "Показване MIME типове" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Хост" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Време на генериране" @@ -6886,21 +6986,12 @@ msgstr "Изглед" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Отваряне на нов прозорец с phpMyAdmin" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." @@ -6992,12 +7083,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Име на таблица" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Име на колона" @@ -7062,93 +7153,77 @@ msgstr "Режим на съвместимост на SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Да не се използва AUTO_INCREMENT за нулеви стойности" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Функция" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Скриване" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "двоичен" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "Поради дължината си,
    това поле може да е нередактируемо" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Двоично - не се редактира" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "директорията за upload на web сървъра" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Редакция/Вмъкване" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "и след това" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Вмъкване като нов ред" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Показване заявка за вмъкване" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Обратно към предната страница" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Вмъкване нов ред" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Връщане към тази страница" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Редакция на следващия ред" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност " "или CTRL+стрелка, за да премествате курсора в съответната посока" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Стойност" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7163,32 +7238,32 @@ msgstr "Няма" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "От" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Изпълнение" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Добавяне на представка на таблица" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Добавяне на представка" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "Наистина ли искате да изпълните следната заявка?" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Няма промяна" @@ -7398,92 +7473,92 @@ msgstr "" msgid "This format has no options" msgstr "Този формат няма опции" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "не е OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Позволено" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Общи свойства на релациите" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Показване свойства" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Създаване на PDF-и" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Показване на коментари към Колоните" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Браузърна трансформация" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Моля консултирайте се с документацията относно обновяването на вашата " "column_comments таблица" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Отбелязана SQL заявка" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-хронология" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Потребителски предпочитания" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Бързи стъпки за настройка на разширените свойства:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "няма описание" @@ -7491,7 +7566,7 @@ msgstr "няма описание" msgid "Slave configuration" msgstr "Конфигурация на подчинен" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Промяна или преконфигуриране на главен сървъра" @@ -7503,13 +7578,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Потребителско име" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Порт" @@ -7522,7 +7597,7 @@ msgid "Slave status" msgstr "Състояние на подчинен" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Променлива" @@ -7538,38 +7613,38 @@ msgstr "" "Само подчинени стартирани с опция --report-host=host_name са показани в този " "списък." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Добавяне на потребител за репликация като подчинен" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Всеки потребител" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "От текстовото поле" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Всеки хост" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Този Хост" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "От таблица Host" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7583,7 +7658,7 @@ msgstr "Генериране на парола" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7614,88 +7689,89 @@ msgstr "Събитието %1$s беше създадено." msgid "One or more errors have occured while processing your request:" msgstr "Една или повече грешки възникнаха при обработка на заявката:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Редакция събитие" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Грешка при обработка на заявката" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Подробности" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Име на събитие" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Тип на събитието" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Промяна на %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Изпълнение в" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Изпълнение на всеки" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Начало" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Край" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Трябва да дадете име на събитието" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Трябва да дадете валидна вътрешна стойност на събитието." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Трябва да дадете валиден интервал за изпълнение на събитието." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Трябва да дадете валиден тип на събитието." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "Трябва да дадете дефиниция на събитието." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Нов" @@ -7728,7 +7804,7 @@ msgstr "" "разширение 'mysqli', за да избегнете проблеми." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Невалиден тип процедура: \"%s\"" @@ -7747,69 +7823,69 @@ msgstr "Процедурата%1$s беше променена." msgid "Routine %1$s has been created." msgstr "Процедура %1$s беше създадена." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Редактиране" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Име" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Параметри" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Посока" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Дължина/Стойности" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Нов параметър" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Изтриване на последен параметър" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Тип данни при изход" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Дължина/стойност на данни при изход" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Настройки на данни при изход" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Сигурност" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "Достъп до SQL данните" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Трябва да дадете име на процедурата" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Невалидна посока \"%s\" подадена като параметър." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7817,37 +7893,37 @@ msgstr "" "Трябва да дадете дължина/стойност за параметрите на процедурата от тип ENUM, " "SET, VARCHAR и VARBINARY." -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "Трябва да дадете име и тип за всеки параметър на процедурата." -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "Трябва да дадете валиден тип на данните при изход на процедурата." -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Трябва да дадете дефиниция на процедурата." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Резултати от изпълнението на процедура %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Изпълнение на процедура" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Параметри на процедурата" @@ -7865,36 +7941,36 @@ msgstr "Тригерът %1$s беше променен." msgid "Trigger %1$s has been created." msgstr "Тригерът %1$s беше създаден." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Редакция тригер" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Име на тригер" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Време" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Трябва да дадете име на тригера" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Трябва да дадете график на тригера" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Трябва да дадете събитие на тригера" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Трябва да дадете име на таблица на тригера" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Трябва да дадете дефиниция на тригера." @@ -7978,7 +8054,7 @@ msgstr "Няма събития." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -7987,7 +8063,7 @@ msgstr "Таблицата %s не съществува!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -7995,7 +8071,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Моля конфигурирайте координатите за таблица %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8006,27 +8082,27 @@ msgstr "Схема на БД %s - страница %s" msgid "This page does not contain any tables!" msgstr "Тази страница не съдържа таблици!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "ГРЕШКА В СХЕМАТА: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Релационна схема" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Съдържание" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Атрибути" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Допълнително" @@ -8134,7 +8210,7 @@ msgstr "Непознат език: %1$s." msgid "Current Server" msgstr "Текущ сървър" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Изходна БД" @@ -8152,7 +8228,7 @@ msgstr "Отдалечен сървър" msgid "Difference" msgstr "Различия" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Целева БД" @@ -8171,7 +8247,7 @@ msgstr "Изпълняване на SQL заявка/заявки на сърв msgid "Run SQL query/queries on database %s" msgstr "Изпълнение на SQL заявка/заявки към БД %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Изчистване" @@ -8180,11 +8256,11 @@ msgstr "Изчистване" msgid "Columns" msgstr "Колони" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Отбелязване SQL заявката" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Всеки потребител да има достъп до тази белязка" @@ -8281,7 +8357,7 @@ msgstr "" "инсталирани необходимите PHP разширения, както е описано в %sдокументацията" "%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "Проследяването на %s е активно." @@ -8307,8 +8383,8 @@ msgstr "" "обратни черти или апостроф, използвайки следния формат: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Индекс" @@ -8359,13 +8435,13 @@ msgstr "Няма" msgid "As defined:" msgstr "Дефиниран като:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Първичен" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Пълнотекстово" @@ -8378,17 +8454,17 @@ msgstr "" msgid "after %s" msgstr "след %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Добавяне %s колона(и)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Трябва да добавите поне една колона." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Хранилище" @@ -8396,41 +8472,6 @@ msgstr "Хранилище" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Търсене в таблица" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Избор на колона (поне една):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Добавяне на условие за търсене (съдържание на \"where\" клаузата):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Брой редове на страница" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Подреждане по:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Разглеждане на външни стойности" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Изпълняване на \"заявка по шаблон\" (знак за заместване: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8568,11 +8609,11 @@ msgstr "" msgid "Manage your settings" msgstr "Управление мои настройки" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Конфигурацията е записана" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8585,7 +8626,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Конфигурацията не може да бъде запазена" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8614,7 +8655,7 @@ msgstr "Колация на връзката към сървъра" msgid "Appearance Settings" msgstr "Визуални настройки" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Още" @@ -8634,9 +8675,9 @@ msgstr "Версии" msgid "Protocol version" msgstr "Версия на протокола" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Потребител" @@ -8755,126 +8796,126 @@ msgstr "" "Сървърът е с кръпка Suhosin. Прочетете %sдокументацията%s за възможни " "проблеми." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Няма БД" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "филтър по таблица" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "филтър по таблица" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Създаване таблица" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Моля изберете БД" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Скриване/Показване на лявото меню" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Запазване на позицията" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Създаване релация" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Презареждане" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Помощ" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Ъгловати връзки" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Прави връзки" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Прилепване към мрежата" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Малки/големи всички" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Превключване на малки/големи" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Превключване на редовете с релации" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Импорт/експорт на координатите за PDF схема" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Построяване на заявка" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Меню Преместване" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Показване/скриване всички" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Показване/скриване таблици без релации" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Брой таблици" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Изтриване релация" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Оператор на отношение" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Освен" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "подзаявка" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Преименуване на" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Ново име" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Агрегиране" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Активни опции" @@ -8886,51 +8927,51 @@ msgstr "Страница беше създадена" msgid "Page creation failed" msgstr "Неуспешно създаване на страница" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Страница" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Импорт от избрания файл" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Експорт към избраната страница" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "създаване на страница и експорт към нея" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Име: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Експорт/импорт в мащаб" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "препоръчително" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Грешка: Релацията вече съществува." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Грешка: Релацията не е добавена." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY релация е добавена" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Добавена е вътрешна релация" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Релацията изтрита" @@ -8942,51 +8983,51 @@ msgstr "Грешка при запазване на координатите в msgid "Modifications have been saved" msgstr "Промените бяха запазени" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Промените не бяха запазени, изпратеният формуляр съдържа грешки" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Конфигурацията не може да бъде импортирана" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Конфигурацията съдържа грешни данни за някои ключове." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Искате ли да импортирате оставащите настройки?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Записан на: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Импорт от файл" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Импорт от хранилището на браузъра" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Настройки ще бъдат импортирани от локалното хранилище на браузъра." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Нямате запазени настройки!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Тази функционалност не се поддържа от вашия браузър" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Сливане с текущите настройки" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -8995,36 +9036,36 @@ msgstr "" "Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез " "%sскрипта за настройки%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Запис в хранилището на браузъра" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Настройките ще бъдат запазени в хранилището на вашия браузър." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Съществуващи настройки ще бъдат презаписани!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "Може да изчистите настройките си до стойностите им по подразбиране." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Импорт на файл" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Всички" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "таблица %s не е намерена или не е установена в %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Файлът не съществува" @@ -9032,17 +9073,17 @@ msgstr "Файлът не съществува" msgid "Select binary log to view" msgstr "Изберете двоичен дневник за преглед" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Файлове" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Съкращаване на показаните заявки" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Показване на пълните заявки" @@ -9058,7 +9099,7 @@ msgstr "Положение" msgid "Original position" msgstr "Първоначално положение" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Информация" @@ -9066,31 +9107,31 @@ msgstr "Информация" msgid "Character Sets and Collations" msgstr "Знакови набори и колации" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d БД беше изтрита успешно." msgstr[1] "%1$ds БД бяха изтрити успешно." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Статистика за базите данни" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Главен сървър" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Подчинен сървър" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Разрешаване на статистика" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9102,156 +9143,156 @@ msgstr "" msgid "Storage Engines" msgstr "Хранилища на данни" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Преглед на схемата (дъмп) на БД" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Модули" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Начало" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Праставка" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Модул" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Библиотека" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Версия" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Автор" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Лиценз" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "изключено" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Дава всички права освен GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Позволява промяна на структурата на съществуващи таблици." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Позволява промяна и изтриване на съхранени процедури." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Позволява създаване на нови БД и таблици." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Позволява създаване на съхранени процедури." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Позволява създаване на нови таблици." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Позволява създаването на временни таблици." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Позволява създаване, изтриване и преименуване на потребителски сметки." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Позволява създаване на изгледи." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Позволява изтриване на данни." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Позволява изтриване на БД и таблици." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Позволява изтриване на таблици." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Позволява създаване на събития за Диспечер на събитията" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Позволява изпълнение на съхранени процедури." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Позволява импортиране на данни от и експортиране на данни във файлове." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Позволява добавяне на потребители и права без презареждане на таблицата с " "правата." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Позволява създаване и изтриване на индекси." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Позволява вмъкване и заменяне на данни." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Позволява заключване на таблици за текущата нишка." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ограничава броя на новите връзки, които потребителя може да отвори за час." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ограничава броя на заявките, които потребителя може да изпрати към сървъра " "на час." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9259,61 +9300,61 @@ msgstr "" "Ограничава броя на командите, които променят някоя таблица или БД, които " "даден потребител може да инициира за час." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ограничава броя на едновременните връзки, които потребителят може да държи " "отворени." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Няма ефект в тази версия на MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Позволява презареждане на настройките и изчистване на буфера на сървъра." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава правото на потребител да знае къде са slaves / masters." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Нужно за replication slaves." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Позволява четене на данни." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Дава достъп до пълния списък на базите данни." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Позволява изпълнение на SHOW CREATE VIEW заявки." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Позволява спиране на сървъра." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9323,162 +9364,162 @@ msgstr "" "се за повечето административни операции, като установяване на глобални " "променливи или спиране на нишка на други потребители." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Позволява създаване и изтриване на тригери" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Позволява промяна на данни." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Няма права." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Няма" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Специфични за таблицата права" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Забележка: Имената на правата на MySQL са показани на английски" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Администрация" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Глобални права" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Специфични за БД права" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Ресурсни ограничения" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Забележка: Установяването на тези опции с 0 (нула) премахва ограничението." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Информация за логване" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Да не се сменя паролата" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Няма потребител." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Потребител %s вече съществува!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Вие добавихте нов потребител." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Вие променихте правата на %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Вие отменихте правата на %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Паролата на %s беше променена успешно." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Изтриване на %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Не за избрани потребители за изтриване!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Презареждане на правата" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Избраните потребители бяха изтрити успешно." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Правата бяха презаредени успешно." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Редакция" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Отменяне" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Експорт всички" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Всеки" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Права на всички" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Права на %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Преглед потребители" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Дадени" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Отстраняване избраните потребители" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отмяна на всички права на потребителите и след това изтриване." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Изтриване на БД, които имат имена като тези на потребителите." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9491,48 +9532,48 @@ msgstr "" "правата които използва сървъра ако към него са направени промени на ръка. В " "този случай, трябва да %sпрезаредите правата%s преди да продължите." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Избраният потребител не беше открит в таблицата с права." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Специфични за колоната права" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Добавяне на права към следната БД" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "sdgf" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Добавяне на права към следната таблица" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Промяна информацията за вход / Копиране потребител" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Създаване нов потребител със същите права и ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... запазване на стария." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... изтриване на стария от таблицата с потребители." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... отмяна на всички права от стария и след това изтриване." -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9540,80 +9581,80 @@ msgstr "" "... изтриване на стария от таблицата с потребители и след това презареждане " "на правата." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "БД за потребителя" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "Създаване на БД със същото име и даване на пълни права" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Даване на всички привилегии на име с маска (username\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Даване на пълни права над БД "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Потребители с достъп до "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "глобален" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "специфични за БД" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "знак за заместване" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Потребител беше добавен." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Неизвестна грешка" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Не възможност за осъществяване на връзка с главния %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Главният не може да бъде сменен" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Главният сървър сменен с %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Този сървър е конфигуриран като главен за репликация." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Показване състоянието на главния" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Показване свързаните подчинени" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9622,11 +9663,11 @@ msgstr "" "Този сървър не е настроен като главен за репликация. Желаете ли да го настроите?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Конфигурация на главния" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9635,19 +9676,19 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Реплициране на всички БД; Игнориране на:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Игнориране на всички БД; Реплициране на:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Изберете БД:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -9655,7 +9696,7 @@ msgstr "" "Сега добавете следните редове в края на секцията [mysqld] на вашия my.cnf и " "рестартирайте MySQL сървъра." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -9665,82 +9706,82 @@ msgstr "" "\". След това би трябвало да видите съобщение, информиращо ви, че този " "сървър е конфигуриран като главен" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Подчинената SQL нишка не пусната!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Подчинената В/И нишка не пусната!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Сървърът е конфигуриран като подчинен в репликация. Искате ли да:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Показване таблицата със състоянието на подчинените" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Синхронизиране на БД с главен" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Контролиране на подчинения:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Пълно пускане" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Пълно спиране" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Изчистване на подчинения" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Пускане само на SQL нишка" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Спиране само на SQL нишка" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Пускане само на В/И нишка" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Спиране само на В/И нишка" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Обработка на грешки:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Прескачане на грешки може да доведе до десинхронизация между главния и " "подчинените сървъри!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Прескачане на текущата" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Прескачане на следващата" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "грешки." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -9749,146 +9790,146 @@ msgstr "" "Този сървър не е настроен като подчинен в репликация. Желаете ли да го настроите?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Нишка %s беше успешно спряна." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не можа да спре нишка %s. Вероятно вече е била затворена." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Манипулатор" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Буфер за заявки" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Нишки" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Временни данни" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Забавени вмъквания" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Буфер за ключове" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Свръзки" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Сортиране" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Координатор на транзакциите" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Изчистване от буфера (затваряне) на всички таблици" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Показване отворените таблици" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Показване на подчинените хостове" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Показване статуса на подчинените" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Изчистване на буфера за заявки" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Информация за състоянието на MySQL сървъра" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Всички променливи на състоянието" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Наблюдател" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Съветник" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Скорост на опресняване: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Филтри" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Съдържащ думата:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Само тревожни стойности" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Филтър по категория..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Неформатирани стойности" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Сродни връзки:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Пускане анализатор" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Инструкции" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -9896,31 +9937,31 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Запитвания от включването: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Заявление" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "№" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Мрежови трафик от включването: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -9928,15 +9969,15 @@ msgstr "" "Този MySQL сървър работи като главен и подчинен в " "репликация." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "Този MySQL сървър работи като главен в репликация." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "Този MySQL сървър работи като подчинен в репликация." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9944,11 +9985,11 @@ msgstr "" "За повече информация относно статусът на репликация на този сървъра, моля " "посетете секция репликация." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Състояние на репликацията" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9956,35 +9997,35 @@ msgstr "" "При натоварен сървър байтовите броячи може да превъртат и статистиката " "докладвана от MySQL да е невярна." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Получени" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Изпратени" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "максимален брой едновременни връзки" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Неуспешни опити" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Прекъснати" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Команда" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -9992,27 +10033,27 @@ msgstr "" "Броят връзки, които са прекъснати, защото клиентът е изчезнал без да затвори " "правилно връзките." -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Броят неуспешни опити за връзка към MySQL сървъра." -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10020,78 +10061,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Броят създадени от mysqld временни файлове." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Броят вмъкнати посредством INSERT DELAYED редове." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10099,7 +10140,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10107,42 +10148,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Брой заявки за обновяване на ред в таблица." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Брой заявки за вмъкване на ред в таблица." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10150,33 +10191,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10185,195 +10226,195 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Броят на заявки за запис в дневника." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Броят изтрити редове от InnoDB таблици." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Броят вмъкнати редове в InnoDB таблици." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Броят прочетени редове от InnoDB таблици." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Броят обновени редове в InnoDB таблици." -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10381,48 +10422,48 @@ msgstr "" "Максималният брой едновременно използвани връзки от като е стартиран " "сървърът." -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Броят отворени файлове." -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "Броят отворени потоци (използва се главно за дневници)." -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Броят отворени таблици." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Количеството свободна памет за буфер за заявки." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Броят попадения в кеш." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Броят заявки добавени към буфера." -#: server_status.php:1408 +#: 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 " @@ -10430,99 +10471,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Броят заявки регистрирани в буфера." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Общият брой блокове в буфера за заявки." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Брой временни таблици отворени от подчинена SQL нишка." -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Броят сортирани редове." -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10530,18 +10571,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Брой текущо отворени връзки." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10549,61 +10590,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Броят на нишките, които не са спящи." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Включване на Наблюдателя" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Добавяне диаграма" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Скорост на опресняване" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Стойност по подразбиране" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Инструкции на наблюдателя" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10617,7 +10658,7 @@ msgstr "" "general_log. Отбележете обаче, че general_log генерира много данни и " "натоварването на сървъра се увеличава с до 15%" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10625,18 +10666,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Използване наблюдател:" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10644,11 +10685,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10656,196 +10697,196 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Променливи(а) на състоянието" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Избор на серии:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "или въведете променлива:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Прилагане на разделител" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Статистика на дневника" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Анализатор заявки" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d секунда" msgstr[1] "%d секунди" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d минута" msgstr[1] "%d минути" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Синхронизиране на структурата" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Синхронизиране на данните" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "не съществува" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Структурни различия" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Различия в данните" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Добавяне колона(и)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Изтриване колона(и)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Промяна колона(и)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Изтриване индекс(и)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Добавяне индекс(и)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Обновяване ред(ове)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Вмъкване ред(ове)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Да бъде ли изтрито предишното съдържание на таблиците?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Прилагане на избраните промените" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Синхронизиране на БД" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Избраните целеви таблици бяха синхронизирани с изходните." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Целевата БД беше синхронизирана с изходната" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Изпълнени заявки" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Ръчно въвеждане" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Текуща връзка" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Настройка: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Сокет" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10853,19 +10894,19 @@ msgstr "" "Целевата БД ще бъде напълно синхронизирана с изходната. Изходната - ще " "остане непроменена." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Неуспешно създаване на променлива" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Сървърни променливи и настройки" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Сесийна стойност" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Глобална стойност" @@ -11151,153 +11192,153 @@ msgstr "Ключът трябва да съдържа букви, цифри [em msgid "Wrong data" msgstr "Грешни данни" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Наистина ли искате да изпълните следната заявка?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Показване като PHP-код" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Валидиран SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL резултат" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Генерирано от" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем с индексите на таблица `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Етикет" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Таблицата %1$s беше променена" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "Колоните бяха преместени упешно." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Стълб" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Kолона" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Линия" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Сплайн" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Пита" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Припокриващи се" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Заглавие на диаграмата" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "Ос X:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Поредици:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Етикет на оста X:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "Стойности на X" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Етикет на оста Y:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Стойности на Y" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Таблица %s вече съществува!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Таблицата %1$s беше създадена." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Схема (дъмп) на таблицата" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Ширина" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Височина" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Етикет на колона" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- без --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Пространствена колона" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Изчертаване наново" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Запис във файл" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Име на файл" @@ -11313,29 +11354,29 @@ msgstr "Индексът не може да бъде преименуван на msgid "No index parts defined!" msgstr "Не са дефинирани части на индекс!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Добавяне на индекс" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Редактиране" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Име на индекс:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" трябва да е името на и единствено на главен ключ!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Тип на индекса:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Добавяне към индекса на  %s колона(и)" @@ -11358,254 +11399,254 @@ msgstr "Таблицата %s беше преместена към %s." msgid "Table %s has been copied to %s." msgstr "Таблица %s беше копирана в %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Името на таблицата е празно!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Подреждане на таблицата по" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(еднократно)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Преместване на таблица към (БД.таблица):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Опции на таблицата" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Преименуване на таблицата на" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Копиране на таблица в (БД.таблица):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Превключване към копираната таблица" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Поддръжка на таблицата" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Дефрагментиране на таблица" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Кеша на таблица %s беше изчистен" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Изпразване кеша на таблицата (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Изпразване на таблицата (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Изтриване на таблицата (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Анализиране" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Проверка" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Оптимизиране" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Поправяне" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Проверка на интегритета на връзките:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Показване таблици" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Използвано място" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Ефективни" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Статистика за редовете" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "статичен" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "динамичен" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Дължина ред" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Размер ред" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Грешка при създаването на външен ключ върху %1$s (проверете типа данни)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Вътрешна релация" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Вътрешна релация не е необходима, при наличието на съответен FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Ограничение за външен ключ" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Уникални стойности" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Добавяне на първичен ключ" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Добавяне на уникален ключ" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Добавяне на SPATIAL индекс" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Добавяне на FULLTEXT индекс" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Няма" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Колоната %s беше изтрита" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Беше добавен първичен ключ към %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Беше добавен индекс на %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Показване повече действия" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "Преместване колони" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Изглед за редакция" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Преглед релации" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Анализ на таблицата" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Добавяне колона" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "В края на таблицата" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "В началото на таблицата" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "След %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Създаване на индекс върху  %s колони" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -11753,69 +11794,39 @@ msgstr "Проследяване следните изрази за манипу msgid "Create version" msgstr "Създаване на версия" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Изпълняване \"заявка по шаблон\" (знак за заместване: \"%\") за две различни " -"колони" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Допълнителен критерий за търсене" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Използване колоната като етикет за всяка точка" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Максимален брой редове за изчертаване" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Прелистване/Редакция точки" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Как да бъде използвано" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "Възстановяване на мащабирането" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Още теми!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Достъпни MIME типове" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME типове показани в наклонен шрифт не притежават отделна функция за " "трансформация" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Достъпни трансформации" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Описание" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Не разполагате с права, за да се намирате тук!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Профилът беше обновен." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Име на ИЗГЛЕД" diff --git a/po/bn.po b/po/bn.po index 072bc1bb07..c95aa55a22 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-03-27 16:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: bangla \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 0.8\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "সবগুলো দেখাও" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "পাতার সংখ্যাঃ" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "করেছেন, অথবা আপনার ব্রাউজার এর নিরাপত্তা সেটিংস্ এমন ভাবে কনফিগার করা আছে যে " "দুটি উইন্ডোর এক সাথে হালনাগাদ করাকে বাধা দিবে।" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "যাও" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Keyname" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "বর্ণনা" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "এই মান ব্যাবহার করুন" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s ডাটাবেজ মুছে ফেলা হয়েছে" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "ডাটাবেজ মন্তব্যসমূহঃ" -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "টেবিলের মন্তব্য সমূহ" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "কলামের" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "খালি" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "ডিফল্ট" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "সংযুক্তি হবে" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "মন্তব্যসমূহ" @@ -197,14 +198,14 @@ msgstr "মন্তব্যসমূহ" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "না" @@ -217,122 +218,122 @@ msgstr "না" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "হ্যাঁ" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "ডাটাবেজ ওর (schema) ভান্ডারটি দেখা হোক" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া যায়নি।" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "সব সিলেক্ট করুন" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "সবগুলো অনির্বাচিত হোক" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "ডাটাবেজ এর নাম দেওয়া হয়নি" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "%s ডাটাবেজটির নাম পরিবর্তন করে %s নাম দেওয়া হয়েছে" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছে" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "ডাটাবেজ রিনেম কর" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "ডাটাবেজ মূছে ফেল" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "ডাটাবেজটি ড্রপ কর (DROP) " -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "ডাটাবেজ কপি করঃ" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "শুধুই গঠনপ্রণালী" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "গঠনপ্রণালী এবং তথ্য" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "শুধু ডাটা" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "কপি করার আগে ডাটাবেজ় তৈরী কর" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "সংযুক্ত %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT এর মান সংযুক্ত করুন" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "constraints সংযুক্ত করুন" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তিত হবে" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Collation" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -341,59 +342,59 @@ msgstr "" "PhpMyAdmin কনফিগারেশন সংরক্ষণাগার নিষ্ক্রিয় করা হয়েছে। কারন খুঁজতে ক্লিক করুন %shere" "%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "সম্বন্ধযুক্ত স্কিমা" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "টেবিল" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Rows" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "আকার" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "in use" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Creation" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "সর্বশেষ আপডেট" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Last check" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -404,117 +405,117 @@ msgstr[1] "%s টেবিলসমূহ(s)" msgid "You have to choose at least one column to display" msgstr "আপনাকে প্রদর্শন করার জন্য কমপক্ষে একটি কলাম নির্দিষ্ট করতে হবে" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sদৃষ্টিলব্ধ নির্মাতা%s পরিবর্তন করুন" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "সাজাঁন" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Ascending" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Descending" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "দেখান" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "ক্ষেত্র" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "এবং" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "অথবা" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Modify" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "নির্ণায়ক সারি যোগ /মুছুন" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "ফিল্ড কলামগুলি যোগ/মুছুন" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "টেবিল ব্যাবহারকারী" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "প্রবেশ নিষেধ" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "সব শব্দ" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -523,278 +524,279 @@ msgid_plural "%1$s matches inside table %2$s" msgstr[0] "%s ভিতরের টেবিলটি মানানসই %s" msgstr[1] "%s ভিতরের টেবিলগুলি মানানসই %s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "%s মানানসই টেবিলটি মুছে দেবেন?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "মোট: %s মানানসই" msgstr[1] "মোট: %s গুলি মানানসই" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "ডাটাবে এ খুজুঁনSearch in database" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "শব্দ বা মানের জন্য অনুসন্ধান (ওয়াইল্ডকার্ড: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Find:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "" -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "ভিতরে টেবিল (গুলি):" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "ভিতরে টেবিল(গুলি):" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "ডাটাবেজে কোন টেবিল পাওয়া যায়নি।" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "অজানা" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "ট্র্যাকিং সক্রিয়।" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "ট্র্যাকিং সক্রিয় নয়।" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "এই ভিউ এ অন্তত এই সংখ্যক সারি রয়েছে। %sdocumentation%s পড়ুন." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replication" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "যোগফল" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "সব পরীক্ষা করুন" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Print view" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "খালি" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "মুছে ফেল" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "টেবিল পরীক্ষা কর" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "টেবিল অপটিমাইজ করুন" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "টেবিল রিপেয়ার করুন" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "টেবিল বিশ্লেষণ কর" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "টেবিলে উপসর্গ যোগ করুন" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "টেবিল উপসর্গ প্রতিস্থাপন" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "উপসর্গ সহ টেবিলটি অনুলিপি করুন" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "ডাটা অভিধান" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "টেবিলগুলি ট্রাক করা" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "ডাটাবেজ" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "সর্বশেষ সংস্করণ" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "তৈরী করা হয়েছে" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "আপডেটেড" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "অবস্থা" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Action" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "এই টেবিলের জন্য ট্র্যাকিং ডাটা মুছুন" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "সক্রিয়" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "সক্রিয় নয়" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "সংস্করণসমূহ" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "ট্র্যাকিং রিপোর্ট" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "গঠন স্ন্যাপশট" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "আনট্রাক্ড টেবিল" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "টেবিল ট্রাক কর" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "ডাটাবেজ লগ" @@ -806,27 +808,27 @@ msgstr "বাজে প্রকার!" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "বাজে প্যারামিটার!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে" @@ -835,86 +837,86 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে msgid "Invalid export type" msgstr "অবৈধ রপ্তানি প্রকার" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" কলামের মান" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "বেজ লেয়ার হিসাবে OpenStreetMaps ব্যবহার" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "এসআরআইডি" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "জ্যামিতি" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "পয়েন্ট" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "এক্স" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "ওয়াই" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "পয়েন্ট %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "একটি পয়েন্ট যোগ কর" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "লাইনস্ট্র্রিং" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "আউটার রিং" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "ইনার রিং" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "একটি লাইনস্ট্রিং যোগ করুন" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "একটি ইনার রিং যোগ করুন" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "পলিগন" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "একটি পলিগন যোগ করুন" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "জ্যামিতি যোগ করুন" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "ফলাফল" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -922,35 +924,35 @@ msgstr "" ""ফাংশন" কলাম থেকে "GeomFromText" বেছে নিন এবং "" "VALUE" ক্ষেত্রের মধ্যে নিম্নলিখিত পংক্তি পেস্ট করুন" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "বুকমার্ক দেখান" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "বুকমার্কটি মুছে ফেলা হয়েছে" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "ফাইল পড়া যায়নি" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -960,54 +962,54 @@ msgstr "" "file size exceeded the maximum size permitted by your PHP configuration. See " "FAQ 1.16." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "অক্ষর সেট রূপান্তর গ্রন্থাগারের ছাড়া ফাইলের অক্ষর সেট রূপান্তর করতে পারেন না" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "ইমপোর্ট প্লাগ ইন লোড করা যায়নি, আপনার ইন্সষ্টলেশন পরীক্ষা করুন" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "বুকমার্ক %s তৈরী করা হয়েছে" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "ইম্পোর্ট সফলভাবে সম্পন্ন হয়েছে। %d সংখ্যক query সম্পাদন করা হয়েছে" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "পিছনে" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -1017,7 +1019,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "আপনি কি সত্যি চান?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন" @@ -1057,7 +1059,7 @@ msgstr "ইন্ডেস্ক যোগ করুন" msgid "Edit Index" msgstr "ইনডেক্স সম্পাদনা করুন" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "ইন্ডেক্সে %d কলামসমূহ যোগ করুন" @@ -1075,16 +1077,16 @@ msgstr "হোষ্ট নাম পূরন করা হয়নি" msgid "The user name is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "পাসওয়ার্ড দেওয়া হয়নি" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "ব্যাবহারকারী যোগ করুন" @@ -1101,23 +1103,24 @@ msgstr "নির্ধারিত ব্যবহারীসমূহ মূ msgid "Close" msgstr "বন্ধ" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "সম্পাদনা কর" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "সরাসরি ট্রাফিক লেখচিত্র" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "সংযোগ/প্রক্রিয়া লেখচিত্র সরাসরি" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "কুয়েরী লেখচিত্র সরাসরি" @@ -1127,24 +1130,24 @@ msgstr "স্থিসি উপাত্ত" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "মোট" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "স্থিতি উপাত্ত" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1164,7 +1167,7 @@ msgstr "সার্ভার ট্রাফিক (in KiB)" msgid "Connections since last refresh" msgstr "গত রিফ্রেস থেকে সংযোগসমূহ" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Processes" @@ -1182,7 +1185,7 @@ msgstr "গত রিফ্রেস থেকে প্রশ্নসমূহ msgid "Questions (executed statements by the server)" msgstr "প্রশ্নসমূহ (সার্ভারের দ্বারা সঞ্চালিত বিবৃতি)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "কুয়েরী পরিসংখ্যান" @@ -1226,14 +1229,14 @@ msgid "System swap" msgstr "সিস্টেম বিনিময়" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "মেগাবাইট" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "কিলোবাইট" @@ -1285,32 +1288,32 @@ msgstr "পাঠনো বাইটস" msgid "Bytes received" msgstr "গৃহীত বাইটস" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "সংযোগসমূহ" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "বাইট" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "গিগাবাইট" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "টেরাবাইট" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "পেটাবাইট" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "এক্সাবাইট" @@ -1324,11 +1327,11 @@ msgstr "%d টেবিল(সমূহ)" msgid "Questions" msgstr "প্রশ্ন" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "সেটিংস" @@ -1348,11 +1351,11 @@ msgstr "গ্রিডে লেখচিত্র যোগ করুন" msgid "Please add at least one variable to the series" msgstr "অনুগ্রহপূর্বক সিরিজসমূহে কমপক্ষে একটি চলক যোগ করুন" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "কোনটিই নয়" @@ -1452,7 +1455,7 @@ msgstr "General relation features" msgid "Current settings" msgstr "General relation features" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1540,7 +1543,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "সময়" @@ -1647,10 +1650,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "ইম্পোর্ট কর" @@ -1706,9 +1709,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1723,11 +1726,11 @@ msgstr "লোকাল" msgid "Processing Request" msgstr "Processes" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1739,9 +1742,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "ঠিক আছে" @@ -1797,19 +1800,19 @@ msgstr "ইন্ডেস্ক সমূহ" msgid "Show indexes" msgstr "Show grid" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Disable foreign key checks" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Enabled" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1847,7 +1850,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/Set এডিটর" @@ -1888,8 +1891,8 @@ msgstr "SQL query" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Change" @@ -1897,18 +1900,18 @@ msgstr "Change" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "সেভ করুন" @@ -1922,7 +1925,7 @@ msgstr "SQL query" msgid "Show search criteria" msgstr "SQL query" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1974,12 +1977,12 @@ msgstr "Query results operations" msgid "Data point content" msgstr "Data pointer size" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2001,7 +2004,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2095,7 +2098,7 @@ msgstr "তৈরী কর" msgid "Change Password" msgstr "পাসওয়ার্ড পরিবর্তন কর" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2209,27 +2212,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "জানুয়ারী" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "ফেব্রুয়ারী" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "মার্চ" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "এপ্রিল" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2237,37 +2240,37 @@ msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "জুলাই" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "আগস্ট" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "সেপ্টেমবর" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "অক্টোবর" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "নভেম্বর" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "ডিসেম্বর" @@ -2316,32 +2319,32 @@ msgid "Sun" msgstr "রবিবার" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "সোমবার" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "মঙ্গলবার" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "বুধবার" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "বৃহস্পতিবার" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "শুক্রবার" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "শনিবার" @@ -2475,16 +2478,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "per second" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "per minute" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "per hour" @@ -2505,71 +2508,298 @@ msgstr "" msgid "Font size" msgstr "ফন্ট এর আকার" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +msgid "Save edited data" +msgstr "Data home directory" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Add/Delete Field Columns" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "শুরু" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "পূর্ববর্তী" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "পরবর্তী" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "End" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "শনিবার" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "Number of fields" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "সোমবার" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "আনুভূমিক" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "লম্ব" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Execute bookmarked query" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Sort by key" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "Operations" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Partial Texts" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Full Texts" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "Relational schema" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Relational schema" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Browser transformation" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "সারিটি মুছে ফেলা হয়েছে" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Kill" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "in query" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "মোট" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Display PDF schema" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Server version" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "লিংক পাওয়া যায়নি" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "ইন্ডেস্ক সমূহ" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unique" @@ -2582,8 +2812,8 @@ msgstr "" msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2605,131 +2835,131 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "ডাটাবেজসমূহ Databases" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "সার্ভার" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Structure" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Insert" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operations" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Query" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privileges" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" msgstr "Sent" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "User" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "বাইনারী লগ" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "চলকসমূহ" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Charsets" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "ইঞ্জিনসমূহ" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "ভূল" @@ -2756,7 +2986,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "No rows selected" msgstr[1] "No rows selected" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2852,16 +3082,108 @@ 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 +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 +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 +msgid "Value" +msgstr "মান" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "খুঁজুন" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Insert" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Select fields (at least one):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "খোঁজার শর্ত যোগ কর (body of the \"where\" clause):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "ক্রম প্রদর্শন কর" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "SQL query" + +#: 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 "Do a \"query by example\" (wildcard: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +msgid "How to use" +msgstr "PHP Version" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "রিসেট করুন" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "take it" @@ -2880,7 +3202,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3177,13 +3499,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "সংযোগ স্থাপন করা যায়নিঃ invalid settings." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3192,7 +3514,7 @@ msgstr "" "সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার " "করে একটি তৈরী করতে পারেন " -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3208,58 +3530,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "লগ ইন" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "সার্ভার" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "ব্যাবহারকারী" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "পাসওয়ার্ড" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL সার্ভার এ লগ ইন করা যায়নি" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "" @@ -3291,7 +3609,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "টেবিলসমূহ" @@ -3303,13 +3621,13 @@ msgstr "টেবিলসমূহ" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "ডাটা" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Overhead" @@ -3337,248 +3655,218 @@ msgstr "" msgid "Check Privileges" msgstr "সুবিধাসমূহ পরীক্ষা করুন" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Invalid server index: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "বর্ণনা" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL query" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL ব্যাখ্যা কর" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP কোড ছাড়া" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Refresh" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "ইঞ্জিনসমূহ" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "রবিবার" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s দিন, %s মাস, %s মিনিট and %s সেকেণ্ড" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "শুরু" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "পূর্ববর্তী" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "পরবর্তী" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "End" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "প্রিন্ট কর" @@ -3610,8 +3898,8 @@ msgid "Closed" msgstr "Unclosed quote" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "বন্ধ করা হয়েছে" @@ -3762,9 +4050,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "রিসেট করুন" @@ -3978,10 +4266,6 @@ msgstr "ব্যাবহারকারীর জন্য ডাটাবে msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4040,7 +4324,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "ফাইল হিসেবে সেভ করুন" @@ -4050,7 +4334,7 @@ msgid "Character set of the file" msgstr "ফাইল এর অক্ষরসমূহঃ" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "ফরমেট" @@ -4169,7 +4453,7 @@ msgid "MIME type" msgstr "মাইম এর ধরন" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relations" @@ -5729,9 +6013,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "পাসওয়ার্ড" @@ -6007,30 +6291,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "পাসওয়ার্ড পরিবর্তন কর" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "কোন পাসওয়ার্ড নাই" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Re-type" @@ -6055,13 +6333,13 @@ msgstr "নতুন ডাটাবেজ় তৈরী কর" msgid "Create" msgstr "তৈরী করুন" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "কোন সুবিধা নাই" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "একটি নতুন পাতা তৈরী কর" @@ -6069,9 +6347,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "নাম" @@ -6266,25 +6544,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "MySQL client version" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Server version" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Server version" @@ -6409,407 +6687,239 @@ msgstr "" msgid "Language" msgstr "ভাষা" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -msgid "Save edited data" -msgstr "Data home directory" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Add/Delete Field Columns" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "শনিবার" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "Number of fields" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "সোমবার" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "আনুভূমিক" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "লম্ব" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Execute bookmarked query" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Sort by key" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "Operations" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Partial Texts" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Full Texts" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "Relational schema" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Relational schema" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Browser transformation" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "সারিটি মুছে ফেলা হয়েছে" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Kill" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "in query" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "মোট" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Display PDF schema" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Server version" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "লিংক পাওয়া যায়নি" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "ডাটা ফাইলসমূহ" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB Status" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "পাতাসমুহ" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "ফ্রী পাতাসমূহ" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "নোংরা পাতাসমূহ" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "ডাটাসহ পাতাসমূহ" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "ব্যাস্ত পাতাসমূহ" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "থ্রেড রিপেয়ার করুন" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 #, fuzzy msgid "Log cache size" msgstr "Sort buffer size" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6817,49 +6927,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 #, fuzzy msgid "Log buffer size" msgstr "Sort buffer size" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6867,20 +6977,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Relations" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6940,15 +7050,15 @@ msgstr "টেবিল এর জন্য ডাটা ডাম্পিং #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Sent" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7024,14 +7134,14 @@ msgstr "Available MIME types" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "হোষ্ট" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "তৈরী করার জন্য সময়" @@ -7230,21 +7340,12 @@ msgstr "View" msgid "Export contents" msgstr "Export type" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7340,13 +7441,13 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 #, fuzzy msgid "Table name" msgstr "টেবিল এর নাম" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "কলামের নাম" @@ -7414,96 +7515,78 @@ msgstr "SQL compatibility mode" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "ফাংশন" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "বাইনারী" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "বাইনারী -সম্পাদনা করবেন না" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Insert" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "এবং তারপর" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "পূর্বের পাতায় ফিরে যাও" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "নতুন আরেকটি সাড়ি যোগ করুন" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "এই পাতায় ফিরে যাও" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "পরবর্তী সাড়ি সম্পাদনা করুন" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "মান" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 #, fuzzy msgid "Showing SQL query" msgstr "Show Full Queries" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7520,36 +7603,36 @@ msgstr "কোনটিই নয়" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "শুক্রবার" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Submit" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "আপনি কি সত্যি চান?" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "No change" @@ -7761,92 +7844,92 @@ msgstr "" msgid "This format has no options" msgstr "This format has no options" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "ঠিক নাই" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "ঠিক আছে" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Enabled" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "বৈশিষ্ট্যসমূহ প্রদর্শন কর" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "পিডিএফ সমূহ তৈরী" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "কলামের মন্তব্য প্রদর্শন করা হচ্ছে" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "বুকমার্ক করা SQL query" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL history" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "কোন বর্ণনা নাই" @@ -7854,7 +7937,7 @@ msgstr "কোন বর্ণনা নাই" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7866,13 +7949,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "ব্যাভারকারীর নাম" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "সাজাঁন" @@ -7888,7 +7971,7 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "চলক" @@ -7902,38 +7985,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "যেকোন ব্যাবহারকারী" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "যেকোন হোষ্ট" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "লোকাল" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "This Host" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7947,7 +8030,7 @@ msgstr "পাসওয়ার্ড তৈরী কর" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7979,101 +8062,102 @@ msgstr "Table %s has been dropped" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Sent" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Processes" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Event type" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Event type" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Change" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Execute bookmarked query" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "অবস্থা" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "End" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Complete inserts" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8104,7 +8188,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -8125,118 +8209,118 @@ msgstr "Table %s has been dropped" msgid "Routine %1$s has been created." msgstr "Table %s has been dropped" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "কলামের নাম" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Creation" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "ডাটাবেজ রিনেম কর" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Length/Values" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Table options" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Query type" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, 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:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8255,43 +8339,43 @@ msgstr "Table %s has been dropped" msgid "Trigger %1$s has been created." msgstr "Table %s has been dropped" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "একটি নতুন ইউজার যোগ করুন" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "User name" msgid "Trigger name" msgstr "ব্যাভারকারীর নাম" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "সময়" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Invalid table name" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8395,7 +8479,7 @@ msgstr "টেবিল পরীক্ষা কর" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8405,7 +8489,7 @@ msgstr "The \"%s\" table doesn't exist!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8413,7 +8497,7 @@ msgid "Please configure the coordinates for table %s" msgstr "দয়া করে %s টেবিল এর অবস্থান কনফিগার করুন" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8425,27 +8509,27 @@ msgstr "Schema of the \"%s\" database - Page %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Attributes" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "অতিরিক্ত" @@ -8566,7 +8650,7 @@ msgstr "" msgid "Current Server" msgstr "সার্ভার" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "ডাটাবে এ খুজুঁনSearch in database" @@ -8585,7 +8669,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "ডাটাবে এ খুজুঁনSearch in database" @@ -8605,7 +8689,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" @@ -8617,11 +8701,11 @@ msgstr "ক্যালেন্ডার" msgid "Columns" msgstr "কলামের নাম" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "এই SQL query টি বুকমার্ক করুন" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" @@ -8703,7 +8787,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8734,8 +8818,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "ইন্ডেস্ক" @@ -8787,13 +8871,13 @@ msgstr "কোনটিই নয়" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "প্রাথমিক" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Fulltext" @@ -8807,20 +8891,20 @@ msgstr "" msgid "after %s" msgstr "After %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "You have to add at least one field." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Storage Engine" @@ -8828,45 +8912,6 @@ msgstr "Storage Engine" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "খুঁজুন" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Select fields (at least one):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "খোঁজার শর্ত যোগ কর (body of the \"where\" clause):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "ক্রম প্রদর্শন কর" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9042,13 +9087,13 @@ msgstr "" msgid "Manage your settings" msgstr "General relation features" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Modifications have been saved" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9061,7 +9106,7 @@ msgstr "" msgid "Could not save configuration" msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9092,7 +9137,7 @@ msgstr "MySQL connection collation" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9118,9 +9163,9 @@ msgstr "Server version" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "User" @@ -9244,148 +9289,148 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "কোন ডাটাবেজ নাই" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "টেবিল অর্ডার পরিবর্তন কর" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "টেবিল অর্ডার পরিবর্তন কর" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "একটি নতুন পাতা তৈরী কর" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 #, fuzzy msgid "Create relation" msgstr "Server version" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Traditional Chinese" msgid "Toggle relation lines" msgstr "Traditional Chinese" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Submit Query" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "Show all" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 #, fuzzy msgid "Number of tables" msgstr "Number of fields" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "Relation view" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Export" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "in query" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "টেবিল রিনেম করুন" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "ব্যাভারকারীর নাম" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "তৈরী করুন" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9400,62 +9445,62 @@ msgstr "Table %s has been dropped" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "পাতাসমুহ" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "ফাইল ইম্পোর্ট কর" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "No rows selected" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "একটি নতুন ইন্ডেস্ক তৈরী কর" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "ব্যাভারকারীর নাম" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 #, fuzzy msgid "Internal relation added" msgstr "Internal relations" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 #, fuzzy msgid "Relation deleted" msgstr "Relation view" @@ -9468,91 +9513,91 @@ msgstr "" msgid "Modifications have been saved" msgstr "" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "ফাইল ইম্পোর্ট কর" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "ফাইল ইম্পোর্ট কর" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "All" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9562,18 +9607,18 @@ msgstr "The \"%s\" table doesn't exist!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "ক্ষেত্রসমূহ" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -9589,7 +9634,7 @@ msgstr "অবস্থান" msgid "Original position" msgstr "প্রকৃত অবস্থান" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "তথ্য" @@ -9597,7 +9642,7 @@ msgstr "তথ্য" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9605,24 +9650,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s ডাটাবেজসমূহ সফলভাবে মুছে ফেলা হয়েছে " msgstr[1] "%s ডাটাবেজসমূহ সফলভাবে মুছে ফেলা হয়েছে " -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "ডাটাবেজসমূহের পরিসংখ্যান" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "পরিসংখ্যান চালু কর" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9632,386 +9677,386 @@ msgstr "" msgid "Storage Engines" msgstr "Storage Engines" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "শুরু" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "পারসিয়ান" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "বন্ধ করা হয়েছে" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "কোনটিই নয়" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" "নোটঃ MySQL সুবিধাসমূহের নাম ইংরেজীতে প্রকাশ করা হয় Note: MySQL privilege " "names are expressed in English " -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administration" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "ডাটাবেজ-নির্দিষ্ট সুবিধাসমূহ" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "No user(s) found." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "আপনি একটি নতুন ইউজার যোগ করেছেন" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "%s মুছে ফেলা হচ্ছে" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "মুছে ফেলার জন্য কোন ব্যাবহারকারী চিহ্নিত করা হয়নি" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "সুবিধাসমূহ সম্পাদনা কর" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Export" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "যেকোন" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Privileges" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privileges" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "User overview" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "ব্যাবহারকারীর নামে নাম এমন ডাটাবেজসমূহ মুছে ফেল" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10020,50 +10065,50 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "কলাম নির্দিষ্ট সুবিধাসমূহ" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "নিচের ডাটাবেইজ এ সুবিধাসমূহ যোগ কর" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" "লগ ইন তথ্য পরিবর্তন কর অথবা ব্যাবহারকারী কপি করChange Login Information / Copy " "User" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "একই সুবিধা সহ নতুন আরেকটি ব্যাবহারকারী তৈরী করুন..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... পুরাতনটা রেখে দাও" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "...ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10071,97 +10116,97 @@ msgstr "" " ... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড " "কর" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "ব্যাবহারকারীর জন্য ডাটাবেজ" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" "একই নামে ডাটাবেজ তৈরী কর এবং সকল সুবিধাসমূহ মঞ্জুর করCreate database with same " "name and grant all privileges" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Check privileges for database "%s"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "ডাটাবেজ-নির্দিষ্ট" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "View %s has been dropped" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "The privileges were reloaded successfully." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 #, fuzzy msgid "Show master status" msgstr "Show slave status" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10170,273 +10215,273 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Please select a database" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full stop" msgstr "Fulltext" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "শুধুই গঠনপ্রণালী" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "শুধুই গঠনপ্রণালী" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s থ্রেড কে বন্ধ করতে পারেনি। সম্ভবত এটি আগেই বন্ধ করা হয়েছে" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Handler" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Query cache" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Threads" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Key cache" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Joins" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "সাজাঁন" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Refresh" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "ক্ষেত্রসমূহ" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Do not change the password" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Show open tables" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Show open tables" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Query type" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "ফাংশনসমূহ" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10444,119 +10489,119 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Statements" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 #, fuzzy msgid "Replication status" msgstr "Replication" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "গৃহীত" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Sent" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "বাদ দেওয়া হল" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "আইডি" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "নির্দেশ" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10564,78 +10609,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10643,7 +10688,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10651,42 +10696,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10694,33 +10739,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10729,248 +10774,248 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "ইম্পোর্ট করা ফাইল ফরমেট কর" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10978,99 +11023,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11078,18 +11123,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11097,70 +11142,70 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Key cache" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "শনিবার" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Refresh" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Add/Delete Field Columns" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11169,7 +11214,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11177,18 +11222,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11196,11 +11241,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11208,92 +11253,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "ডাটাবেজ রিনেম কর" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "টেবিল সিলেক্ট করুন" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Invalid table name" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "একটি নতুন ইউজার যোগ করুন" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "SQL query" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Row Statistics" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "সব সিলেক্ট করুন" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Query type" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11301,7 +11346,7 @@ msgid_plural "%d seconds" msgstr[0] "per second" msgstr[1] "per second" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11309,132 +11354,132 @@ msgid_plural "%d minutes" msgstr[0] "in use" msgstr[1] "in use" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 #, fuzzy msgid "Structure Difference" msgstr "Structure only" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL query" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "max. concurrent connections" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -11727,179 +11772,179 @@ msgstr "" msgid "Wrong data" msgstr "কোন ডাটাবেজ নাই" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "আপনি কি সত্যি চান?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL result" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "লেবেল" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy msgid "The columns have been moved successfully." msgstr "The selected users have been deleted successfully." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "মার্চ" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "কলামের" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "ইঞ্জিনসমূহ" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "পেটাবাইট" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Report title" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "SQL query" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "মান" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "মান" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Table %s has been dropped" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Add/Delete Field Columns" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "মোট" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "ফাইল হিসেবে সেভ করুন" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy msgid "File name" msgstr "টেবিল এর নাম" @@ -11916,30 +11961,30 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Print view" msgid "Edit index" msgstr "Print view" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "ইন্ডেস্ক নামঃ" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "ইন্ডেস্ক এর ধরনঃ" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Index এ যোগ কর  %s column(s)" @@ -11962,278 +12007,278 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "%s টেবিল %s তে কপি করা হয়েছে" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "টেবিল এর নাম পূরন করা হয়নি" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "টেবিল অর্ডার পরিবর্তন কর" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(singly)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "টেবিল রিনেম করুন" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "টেবিল এর জন্য ডাটা ডাম্পিং করুন" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "কোন ডাটাবেজ নাই" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Table maintenance" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 #, fuzzy msgid "Check" msgstr "চেক" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "টেবিল রিপেয়ার করুন" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Show tables" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Space usage" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Effective" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "ডায়নামিক" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "সাড়ির দৈর্ঘ্য" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "সাড়ির আকার" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Internal relations" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "নির্দিষ্ট মান ব্রাউজ করুন" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "কোনটিই নয়" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Table %s has been dropped" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "একটি প্রাইমারী কী যোগ করা হয়েছে %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "একটি Index যোগ করা হয়েছে %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Show PHP information" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Print view" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "টেবিলের শেষে" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "টেবিলের শুরুতে" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "After %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12392,73 +12437,39 @@ msgstr "" msgid "Create version" msgstr "Server version" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Do a \"query by example\" (wildcard: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "SQL query" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -msgid "How to use" -msgstr "PHP Version" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "রিসেট করুন" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "বর্ণনা" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/br.po b/po/br.po index a2c7685565..2249cfbed5 100644 --- a/po/br.po +++ b/po/br.po @@ -7,7 +7,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 14:55+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: LANGUAGE \n" @@ -18,21 +18,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Diskouez pep tra" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Pajenn niv. : " -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -42,58 +42,58 @@ msgstr "" "serret ar prenestr orin ganeoc'h pe stanket eo an hizivadurioù etre " "prenestroù gant ho merdeer evit abegoù surentez." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Mont" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Anv ar meneger" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Deskrivadur" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Ober gant an talvoud-mañ" @@ -111,88 +111,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Krouet eo bet an diaz roadennoù %1$s." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Evezhiadenn diwar-benn an diaz roadennoù : " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Bann" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Dre ziouer" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Liammet ouzh" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Evezhiadennoù" @@ -201,14 +202,14 @@ msgstr "Evezhiadennoù" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ket" @@ -221,122 +222,122 @@ msgstr "Ket" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ya" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Gwelet un ezporzhiadenn (chema) eus an diaz roadennoù" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "N'eus bet kavet taolenn ebet en diaz roadennoù." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Diuzañ pep tra" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Diziuzañ pep tra" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Goullo eo anv an diaz roadennoù !" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Deuet eo anv an diaz roadennoù %s da vezañ %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Eilet eo bet an diaz roadennoù %s war %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Cheñch anv an diaz roadennoù hag e envel" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Dilemel an diaz roadennoù" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Diverket eo bet an diaz roadennoù %s." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Diverkañ an diaz roadennoù (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Eilañ an diaz roadennoù war" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Ar framm hepken" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Ar framm hag ar roadennoù ennañ" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Ar roadennoù hepken" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "KROUIÑ AN DIAZ ROADENNOÙ a-raok eilañ" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Ouzhpennañ %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Ouzhpennañ ar strishadurioù" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Mont d'an diaz roadennoù eilet" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Etrerummadiñ" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -345,59 +346,59 @@ msgstr "" "Diweredekaet eo bet ar stokañ kefluniadurioù evit phpMyAdmin. Evit gouzout " "perak klikañ %samañ%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Embann pe ezporzhiañ ur chema kar" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Taolenn" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Linennoù" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Ment" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "en implij" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Krouiñ" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Hizivadenn ziwezhañ" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Gwiriadenn ziwezhañ" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -408,117 +409,117 @@ msgstr[1] "%s taolenn" msgid "You have to choose at least one column to display" msgstr "Ret eo deoc'h dibab da nebeutañ ur bann da vezañ diskwelet" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Cheñch evit ar %ssavour gwelet%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Urzhiañ" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "War gresk" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "War zigresk" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Diskouez" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Dezverk" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ensoc'hañ" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Ha" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Diverk." -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Pe" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Kemmañ" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Ouzhpennañ/Diverkañ linennoù dezverkoù" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Hizivaat ar reked" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Implijout taolennoù" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Reked SQL ouzh an diaz roadennoù %s: " -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Kas ar reked" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Moned nac'het" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "unan eus ar gerioù da nebeutañ" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "an holl c'herioù" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "ar frazenn-rik" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "evel un droienn reoliek" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Disoc'hoù ar c'hlask evit \"%s\" %s : " -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -527,93 +528,93 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Hollad : %s glotadenn" msgstr[1] "Hollad : %s klotadenn" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Klask en diaz roadennoù" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Gerioù pe dalvoudoù da glask (Joker: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Kavout :" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Dispartiet e vez ar gerioù gant un esaouenn (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "E diabarzh an taolennoù" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Er bann :" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "N'eus bet kavet taolenn ebet en diaz roadennoù." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Goullonderet eo bet an daolenn %s" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Diverket eo bet ar Gweled %s" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Diverket eo bet an daolenn %s" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Oberiant eo an heuliañ." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "N'eo ket oberiant an heuliañ." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -622,185 +623,186 @@ msgstr "" "Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an " "%steulioù titouriñ%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Eilañ" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Sammad" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Evit ar re zo diuzet :" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Askañ pep tra" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Askañ an taolennoù gant dilerc'hioù" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ezporzhiañ" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Stumm da voullañ" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Goullonderiñ" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Diverkañ" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Gwiriañ an daolenn" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Lakaat an daolenn diouzh ar gwellañ" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Dresañ an daolenn" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Dielfennañ an daolenn" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Ouzhpennañ ur rakger d'an daolenn" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Erlec'hiañ rakger an daolenn" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Eilañ an daolenn enni ur rakger" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Geriadur roadennoù" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Taolennoù heuliet-pizh" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Diaz roadennoù" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Stumm diwezhañ" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Krouet" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Hizivaet" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Statud" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Oberiadenn" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Diverkañ ar roadennoù heuliañ evit an daolenn-mañ" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "oberiant" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "dizoberiant" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Stummoù" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Danevell heuliañ" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Gwel prim eus ar framm" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Taolennoù n'int ket heuliet" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Heuliañ an daolenn" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Marilh an diaz roadennoù" @@ -812,16 +814,16 @@ msgstr "Seurt faziek !" msgid "Selected export type has to be saved in file!" msgstr "Ret eo enrollañ an diuzadenn ezporzhiañ en ur restr !" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Arventennoù fall !" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "N'eus ket egor a-walc'h evit gallout enrollañ ar restr %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -829,12 +831,12 @@ msgstr "" "Emañ ar restr %s war ar servijer dija; cheñch an anv pe klikañ war al log " "frikañ ar restroù zo dija." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "N'eo ket aotreet ar servijer web da enrollañ ar restr %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Enrollet eo bet ar restr ezporzhiañ e%s." @@ -843,86 +845,86 @@ msgstr "Enrollet eo bet ar restr ezporzhiañ e%s." msgid "Invalid export type" msgstr "Seurt ezporzhiadenn direizh" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Talvoud evit ar bann \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Ober gant OpenStreetMaps evit ar gwiskad diazez" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Mentoniezh" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Poent" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Poent %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Ouzhpennañ ur poent" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Aradennad linennoù" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Kelc'h diavaez" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Kelc'h diabarzh" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Ouzhpennañ un aradennad linennoù" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Ouzhpennañ ur c'helc'h diabarzh" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Lieskorneg" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Ouzhpennañ ul lieskorneg" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Ouzhpennañ mentoniezh" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Disoc'h" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -930,7 +932,7 @@ msgstr "" "Dibab \"GeomFromText\" er bann \"Arc'hwel\" ha pegañ an neudennad er " "vaezienn \"Talvoud\" a-is" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -939,21 +941,21 @@ 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." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "O tiskouez ar sined" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Diverket eo bet ar sined." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "N'haller ket lenn ar restr" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -963,7 +965,7 @@ msgstr "" "gwasket (%s). Pe n'eo ket emplementet ar mod gwaskañ-se en ho kefluniadur, " "pe eo bet diweredekaet." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -974,26 +976,26 @@ msgstr "" "ho kefluniadur PHP. Gwelet [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Dibosupl amdreiñ an arouezennoù hep levraoueg amdreiñ" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Dibosupl enporzhiañ an adveziantoù. Gwiriit ho staliadur !" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Krouet eo bet ar sined %s" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Enporzhiet eo bet an traoù ervat, %d reked zo bet kaset da benn." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1001,7 +1003,7 @@ msgstr "" "Aet eur dreist d'ar vevenn amzer. Mar fell deoc'h kenderc'hel gant an " "enporzhiañ, adkasit ar restr hag e kendalc'ho an argerzh." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1010,24 +1012,24 @@ msgstr "" "Peurliesañ e talvez n'hallo ket PhpMyAdmin echuiñ da enporzhiañ an traoù ma " "ne vez ket kresket ganeoc'h bevenn amzer PHP." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Distreiñ" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "Un tamm aesoc'h eo phpMyAdmin gant ur merdeer a skor ar frammoù." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'" @@ -1037,7 +1039,7 @@ msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'" msgid "Do you really want to execute \"%s\"?" msgstr "Ha sur oc'h e fell deoc'h " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Emaoc'h war-nes DISTRUJ un diaz roadennoù klok !" @@ -1081,7 +1083,7 @@ msgstr "Menegerioù" msgid "Edit Index" msgstr "Mod aozañ" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add/Delete columns" msgid "Add %d column(s) to index" @@ -1100,16 +1102,16 @@ msgstr "Goullo eo anv ar servijer !" msgid "The user name is empty!" msgstr "Goullo eo anv an implijer !" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Goullo eo ar ger-tremen !" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Ne glot ket ar gerioù-tremen !" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Ouzhpennañ un implijer" @@ -1126,23 +1128,24 @@ msgstr "O lemel kuit an implijerien diuzet" msgid "Close" msgstr "Serriñ" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Kemmañ" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Grafik an tremenerezh evel m'emañ diouzhtu" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Grafik ar c'hevreadennoù hag argerzhioù evel m'emaint diouzhtu" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Grafik ar rekedoù evel m'emaint diouzhtu" @@ -1152,24 +1155,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Hollad" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Udb all" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1189,7 +1192,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Argerzhioù" @@ -1207,7 +1210,7 @@ msgstr "Goulennnoù abaoe ar freskadenn ziwezhañ" msgid "Questions (executed statements by the server)" msgstr "Goulennoù (lavarennoù sevenet gant ar servijer)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Stadegoù war ar rekedoù" @@ -1248,14 +1251,14 @@ msgid "System swap" msgstr "Takad eskemm reizhiad (swap)" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "Kio" @@ -1307,32 +1310,32 @@ msgstr "Oktedoù kaset" msgid "Bytes received" msgstr "Oktedoù resevet" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Kevreadennoù" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "o" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "Eio" @@ -1348,11 +1351,11 @@ msgstr "%s daolenn" msgid "Questions" msgstr "Goulennoù" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Tremenerezh" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Arventennoù" @@ -1372,11 +1375,11 @@ msgstr "Ouzhpennañ ur grafik d'ar gael" msgid "Please add at least one variable to the series" msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Hini" @@ -1476,7 +1479,7 @@ msgstr "Kemmañ an arventennoù" msgid "Current settings" msgstr "Arventennoù zo bremañ" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Titl ar grafik" @@ -1565,7 +1568,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "" @@ -1666,10 +1669,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Enporzhiañ" @@ -1727,9 +1730,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "Nullañ" @@ -1741,11 +1744,11 @@ msgstr "O kargañ" msgid "Processing Request" msgstr "O plediñ gant ar reked" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Fazi en ur blediñ gant ar reked" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1757,9 +1760,9 @@ msgstr "Diverkañ ar bann" msgid "Adding Primary Key" msgstr "Ouzhpennañ un alc'hwez kentidik" -#: 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 +#: 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 msgid "OK" msgstr "Mat eo" @@ -1799,19 +1802,19 @@ msgstr "Kuzhat menegerioù" msgid "Show indexes" msgstr "Diskouez menegerioù" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enable %s" msgid "(Enabled)" msgstr "Gweredekaat %s" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1842,7 +1845,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1886,8 +1889,8 @@ msgstr "Diskouez ar voest rekedoù SQL" msgid "No rows selected" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Kemmañ" @@ -1897,18 +1900,18 @@ msgstr "Kemmañ" msgid "Query execution time" msgstr "Pad seveniñ hirañ" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Enrollañ" @@ -1920,7 +1923,7 @@ msgstr "Kuzhat an dezverkoù klask" msgid "Show search criteria" msgstr "Diskouez an dezverkoù enklask" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1970,12 +1973,12 @@ msgstr "Kuzhat disoc'hoù an enklask" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Na ober van" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -1997,7 +2000,7 @@ msgstr "Diuzit an alc'hwez estren" msgid "Please select the primary key or a unique key" msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Dibab ar bann da ziskouez" @@ -2084,7 +2087,7 @@ msgstr "Genel" msgid "Change Password" msgstr "Cheñch ger-tremen" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Muioc'h" @@ -2179,63 +2182,63 @@ msgid "December" msgstr "Kerzu" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "C'hwe" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Meu" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Mae" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Mezh" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Goue" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Eost" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Gwen" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Here" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Du" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Kzu" @@ -2276,32 +2279,32 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Meu" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Yaou" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sad" @@ -2417,16 +2420,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "" @@ -2447,21 +2450,215 @@ msgstr "" msgid "Font size" msgstr "Ment an destenn" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Kregiñ" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Kent" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "War-lerc'h" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Fin" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "More" +msgid "Mode" +msgstr "Muioc'h" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute" +msgid "Headers every %s rows" +msgstr "Seveniñ" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Diskouez an endalc'had binarel en HEX (eizhdekvedennoù)" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Brasoc'h eo ment ar restr pellgarget eget ar vevenn aotreet gant ar " "c'hemennad upload_max_filesize directive e php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2469,27 +2666,27 @@ msgstr "" "Brasoc'h eo ment ar restr pellgarget eget ar vevenn aotreet gant ar " "c'hemennad MAX_FILE_SIZE spisaet er furmskrid HTML." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Hanter bellgarget eo bet ar restr nemetken." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Mankout a ra ur c'havlec'h padennek." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Fazi en ur skrivañ ar restr war ar bladenn." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Harzet eo bet ar pellgargañ gant an astenn." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Fazi dianav en ur bellgargañ ar restr." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2497,26 +2694,41 @@ msgstr "" "Fazi en ur zilec'hiañ ar restr pellgarget; gwelet [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Evit gallout kenderc'hel e rankit gweredekaat an toupinoù." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Menegerioù" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Dibar" @@ -2529,8 +2741,8 @@ msgstr "Gwasket" msgid "Cardinality" msgstr "Kardinalegezh" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Evezhiadenn" @@ -2553,128 +2765,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Diazoù roadennoù" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Servijer" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Framm" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Ensoc'hañ" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Oberiadennoù" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Fazi" @@ -2699,7 +2911,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d linenn ensoc'het." msgstr[1] "%1$d linenn ensoc'het." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2788,16 +3000,104 @@ 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 +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 +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 +msgid "Value" +msgstr "" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Klask" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Ensoc'hañ" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Additional search criteria" +msgstr "Kuzhat an dezverkoù klask" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Adderaouekaat" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "N'eus ket eus un hent reizh evit skeudennoù an tem %s !" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "N'haller ket rakwelet." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "tapit-eñ" @@ -2816,7 +3116,7 @@ msgstr "N'eo ket bet kavet an tem %s !" msgid "Theme path not found for theme %s!" msgstr "N'eo ket bet kavet an hent evit an tem %s !" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Tem" @@ -3113,13 +3413,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Dibosupl kevreañ : arventennoù direizh." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Degemer mat e %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3128,7 +3428,7 @@ msgstr "" "Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar " "%1$sskript kefluniañ%2$s da sevel unan." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3144,44 +3444,38 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Evit gallout kenderc'hel e rankit gweredekaat an toupinoù." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Kevreañ" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Gallout a rit merkañ anv ar servijer pe e chomlec'h IP, gant ar porzh " "dispartiet dre un esaouenn." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Servijer :" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Anv implijer :" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Ger-tremen :" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Dibab ar servijer" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Evit gallout kenderc'hel e rankit gweredekaat an toupinoù." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3189,19 +3483,19 @@ msgstr "" "Berzet eo kevreañ hep ger-tremen gant ar c'hefluniadur (gwelet " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Tamm obererezh ebet abaoe %s eilenn; kevreit en-dro" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Dibosupl kevreañ ouzh ar servijer MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Ger-tremen/anv implijer fall. Moned nac'het." @@ -3233,7 +3527,7 @@ msgstr "kenrannet" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Taolennoù" @@ -3245,13 +3539,13 @@ msgstr "Taolennoù" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Roadennoù" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Dilerc'hioù" @@ -3276,19 +3570,11 @@ msgstr "Gwiriañ ar gwirioù evit an diaz roadennoù "%s"." msgid "Check Privileges" msgstr "Gwiriañ ar gwirioù" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Dibosupl lenn ar restr keluniañ" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3296,12 +3582,12 @@ msgstr "" "Peurliesañ e talvez ez eus ur fazi ereadurezh enni. Gwiriit ha n'eus ket ur " "fazi o tont war wel a-is." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "N'eus ket bet gallet kargañ ar c'hefluniadur dre ziouer adalek %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3313,212 +3599,190 @@ msgstr "" "RET eo d'an arventenn $cfg['PmaAbsoluteUri'] bezañ resisaet er " "restr kefluniañ!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Meneger servijer faziek : %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Anv ostiz direizh evit ar servijer %1$s. Gwiriit ar c'hefluniadur." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Termenet ez eus bet c'hefluniadur un hentenn dilesa direizh." -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Ret e vefe deoc'h ober gant ar stumm %s %s pe unan nevesoc'h c'hoazh." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Ment vrasañ : %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Teuliadur" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "Reked SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "respontet eo bet gant MySQL : " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "DIbosupl kevreañ d'ar c'hadarnataer SQL !" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Displegañ SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "N'eo ket dav displegañ SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Hep kod PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Krouiñ kod PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Freskaat" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "N'eo ket dav kadarnaat SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Kadarnaat SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Kemmañ ar reked-mañ enlinenn" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Enlinenn" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "O profilañ" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Sul" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y da %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s deiz, %s eur, %s munut ha %s eilenn" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Kregiñ" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Kent" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "War-lerc'h" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Fin" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Mont d'an diaz roadennoù "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Direizhet eo an arc'hwel %s gant un draen anavezet, sellit ouzh %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Klikañ evit gwintañ" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Furchal en hoc'h urzhiataer" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Ar c'havlec'h treuzkas n'hall ket bezañ diraezet." -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "N'eus restr ebet da enporzhiañ" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Seveniñ" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Moullañ" @@ -3548,8 +3812,8 @@ msgid "Closed" msgstr "Serr" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Diweredekaet" @@ -3691,9 +3955,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Adderaouekaat" @@ -3920,10 +4184,6 @@ msgstr "Enklozañ an istitloù" msgid "Show binary contents as HEX by default" msgstr "Diskouez an endalc'had binarel en HEX (eizhdekvedennoù) dre ziouer" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Diskouez an endalc'had binarel en HEX (eizhdekvedennoù)" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Diskouez roll an diazoù roadennoù e-lec'h ul lañser desachañ" @@ -3980,7 +4240,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Pad seveniñ hirañ" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Enrollañ evel restr" @@ -3989,7 +4249,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Furmad" @@ -4093,7 +4353,7 @@ msgid "MIME type" msgstr "Seurt MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Darempredoù" @@ -5579,9 +5839,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -5850,30 +6110,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "" @@ -5894,22 +6148,22 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -6060,26 +6314,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Other core settings" msgid "committed on %1$s by %2$s" msgstr "Arventennoù pouezus all" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Other core settings" msgid "authored on %1$s by %2$s" @@ -6189,386 +6443,238 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "More" -msgid "Mode" -msgstr "Muioc'h" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute" -msgid "Headers every %s rows" -msgstr "Seveniñ" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6576,48 +6682,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6625,18 +6731,18 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6683,14 +6789,14 @@ msgstr "" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6748,14 +6854,14 @@ msgstr "" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "" @@ -6944,21 +7050,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7054,12 +7151,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "" @@ -7126,93 +7223,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Kuzhat" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Ensoc'hañ" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7227,34 +7306,34 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Ha sur oc'h e fell deoc'h " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "" @@ -7464,92 +7543,92 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "Mat eo" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "" @@ -7557,7 +7636,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7569,13 +7648,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7588,7 +7667,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "" @@ -7602,38 +7681,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7647,7 +7726,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7682,98 +7761,99 @@ msgstr "Krouet eo bet an argerzh %1s." 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 :" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fazi en ur seveniñ ar reked" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 #, fuzzy #| msgid "Execute" msgid "Execute at" msgstr "Seveniñ" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute" msgid "Execute every" msgstr "Seveniñ" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Pajenn deraouiñ" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Fin" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "Ensoc'hadennoù sevenet" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7810,7 +7890,7 @@ msgstr "" "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:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Seurt argerzh faziek : \"%s\"" @@ -7829,105 +7909,105 @@ msgstr "Kemmet eo bet an argerzh %1$s." msgid "Routine %1$s has been created." msgstr "Krouet eo bet an argerzh %1$s." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Kemmañ un argerzh" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Disoc'hoù seveniñ an argerzh %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Seveniñ an argerzh" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -7949,42 +8029,42 @@ msgstr "Kemmet eo bet an argerzh %1s." msgid "Trigger %1$s has been created." msgstr "Krouet eo bet an argerzh %1s." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Edit routine" msgid "Edit trigger" msgstr "Kemmañ un argerzh" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Theme" msgctxt "Trigger action time" msgid "Time" msgstr "Tem" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Anv taolenn direizh" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8077,7 +8157,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8086,7 +8166,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8094,7 +8174,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8105,27 +8185,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "" @@ -8231,7 +8311,7 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8249,7 +8329,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -8268,7 +8348,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8277,11 +8357,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8363,7 +8443,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8384,8 +8464,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "" @@ -8431,13 +8511,13 @@ msgstr "" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "" @@ -8450,17 +8530,17 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8468,43 +8548,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Klask" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8612,11 +8655,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8627,7 +8670,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8656,7 +8699,7 @@ msgstr "Kefluniadur ar servijer" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "" @@ -8680,9 +8723,9 @@ msgstr "Stumm diwezhañ" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "" @@ -8794,130 +8837,130 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Invalid table name" msgid "Filter databases by name" msgstr "Anv taolenn direizh" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Invalid table name" msgid "Filter tables by name" msgstr "Anv taolenn direizh" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "" @@ -8929,51 +8972,51 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "" @@ -8985,87 +9028,87 @@ msgstr "" msgid "Modifications have been saved" msgstr "" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "" @@ -9073,17 +9116,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -9099,7 +9142,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "" @@ -9107,7 +9150,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -9115,24 +9158,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Diverket eo bet an diaz roadennoù %s." msgstr[1] "Diverket eo bet an diaz roadennoù %s." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9142,376 +9185,376 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Kregiñ" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Diweredekaet" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Ezporzhiañ" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Check Privileges" msgid "Privileges for all users" msgstr "Gwiriañ ar gwirioù" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Check Privileges" msgid "Privileges for %s" msgstr "Gwiriañ ar gwirioù" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9520,138 +9563,138 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9660,258 +9703,258 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Freskaat" # verb pe ak. ? -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy #| msgid "Filter" msgid "Filters" msgstr "Silañ" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Connections" msgid "Instructions" msgstr "Kevreadennoù" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -9919,116 +9962,116 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Personelaat ar bajenn deraouiñ" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Urzhiad" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10036,78 +10079,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10115,7 +10158,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10123,42 +10166,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10166,33 +10209,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10201,244 +10244,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Furmad ar restr enporzhiañ" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10446,99 +10489,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10546,18 +10589,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10565,69 +10608,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "N'eo ket oberiant an heuliañ." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Freskaat" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "Bannoù evit an takadoù skrid CHAR" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Adlakaat an talvoud dre ziouer" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10636,7 +10679,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10644,20 +10687,20 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Paouez gant an evezhiañ" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10665,11 +10708,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10677,226 +10720,226 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "Dilemel ar grafik" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Foreign Key" msgid "Select series:" msgstr "Diuzit an alc'hwez estren" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Anv taolenn direizh" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add user" msgid "Add this series" msgstr "Ouzhpennañ un implijer" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Query statistics" msgid "Log statistics" msgstr "Stadegoù war ar rekedoù" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Rekedoù resevet" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -11180,73 +11223,73 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Ha sur oc'h e fell deoc'h " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "Diverket eo bet an diaz roadennoù %s." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Meu" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Bann" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgctxt "Inline edit query" #| msgid "Inline" @@ -11254,92 +11297,92 @@ msgctxt "Chart type" msgid "Spline" msgstr "Enlinenn" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "Pio" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "" @@ -11355,30 +11398,30 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Mod aozañ" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11401,260 +11444,260 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show all" msgid "Showing tables" msgstr "Diskouez pep tra" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Use this value" msgid "Distinct values" msgstr "Ober gant an talvoud-mañ" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add/Delete columns" msgid "Move columns" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Stumm da voullañ" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -11807,69 +11850,37 @@ msgstr "" msgid "Create version" msgstr "" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Additional search criteria" -msgstr "Kuzhat an dezverkoù klask" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Adderaouekaat" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/bs.po b/po/bs.po index 5c0ce33f52..d5aee67c5b 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: bosnian \n" @@ -15,21 +15,21 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Broj strane:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "zatvorili matični prozor, ili vaš preraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Kreni" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Ime ključa" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Koristi ovu vrijednost" @@ -106,90 +106,91 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza %s je odbačena." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Komentar baze: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Imena kolona" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Podrazumjevano" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Veze ka" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Komentari" @@ -198,14 +199,14 @@ msgstr "Komentari" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ne" @@ -218,126 +219,126 @@ msgstr "Ne" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Da" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Izaberi sve" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "ništa" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 #, fuzzy msgid "The database name is empty!" msgstr "Ima tabele je prazno!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Tabeli %s promjenjeno ime u %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Tabela %s je kopirana u %s." -#: db_operations.php:443 +#: db_operations.php:449 #, fuzzy msgid "Rename database to" msgstr "Promjeni ime tabele u " -#: db_operations.php:470 +#: db_operations.php:476 #, fuzzy msgid "Remove database" msgstr "Promjeni ime tabele u " -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Baza %s je odbačena." -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy msgid "Drop the database (DROP)" msgstr "Baza ne postoji" -#: db_operations.php:516 +#: db_operations.php:522 #, fuzzy msgid "Copy database to" msgstr "Baza ne postoji" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktura i podatci" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "" -#: db_operations.php:559 +#: db_operations.php:565 #, fuzzy msgid "Switch to copied database" msgstr "Pređi na kopiranu tabelu" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -349,61 +350,61 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relaciona shema" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Redova" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Veličina" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "se koristi" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Napravljeno" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Posljednja izmjena" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Posljednja provjera" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -415,122 +416,122 @@ msgstr[1] "%s tabela" msgid "You have to choose at least one column to display" msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Pređi na kopiranu tabelu" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sortiranje" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Rastući" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Opadajući" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Prikaži" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriterijum" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "i" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "ili" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Promijeni" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Dodaj/obriši polje za kriterij" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Dodaj/obriši kolonu" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Ažuriraj upit" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Koristi tabele" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Izvrši SQL upit" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Ulaz nije dozvoljen" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "bar jednu od riječi" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "sve riječi" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "tačan izraz" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "kao regularni izraz" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretrage za \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -538,31 +539,31 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -570,265 +571,266 @@ msgid_plural "Total: %s matches" msgstr[0] "Ukupno: %s pogodaka" msgstr[1] "Ukupno: %s pogodaka" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Pretraživanje baze" -#: db_search.php:292 +#: db_search.php:295 #, 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:297 +#: db_search.php:300 msgid "Find:" msgstr "Traži:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Riječi se odvajaju razmakom (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Unutar tabela:" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" msgstr "Unutar tabela:" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Tabele nisu pronađene u bazi." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "nepoznat" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Polje %s je obrisano" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 #, fuzzy msgid "Replication" msgstr "Relacije" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Ukupno" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Odbaci" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Provjeri tabelu" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimiziraj tabelu" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 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:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 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:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Rečnik podataka" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Baza podataka" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 #, fuzzy msgid "Created" msgstr "Napravi" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Status" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Akcija" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 #, fuzzy msgid "Versions" msgstr "Operacije" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 #, fuzzy msgid "Structure snapshot" msgstr "Samo struktura" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "Provjeri tabelu" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "Baza podataka" @@ -842,18 +844,18 @@ msgstr "Vrsta upita" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Dodaj novo polje" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedovoljno prostora za snimanje datoteke %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -861,12 +863,12 @@ msgstr "" "Datoteka %s već postoji na serveru, promijenite ime datoteke ili uključite " "opciju prepisivanja." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u fajl %s." @@ -876,184 +878,184 @@ msgstr "Sadržaj baze je sačuvan u fajl %s." msgid "Invalid export type" msgstr "Nema tabela" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Dodaj novo polje" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Linije se završavaju sa" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy msgid "Add a polygon" msgstr "Dodaj novo polje" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy msgid "Add geometry" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Obilježivač je upravo obrisan." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Nazad" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin preferira čitače koji podržavaju okvire." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." @@ -1063,7 +1065,7 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena." msgid "Do you really want to execute \"%s\"?" msgstr "Da li stvarno hoćete da " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1109,7 +1111,7 @@ msgstr "Dodaj novo polje" msgid "Edit Index" msgstr "Ključ" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format msgid "Add %d column(s) to index" msgstr "Dodaj novo polje" @@ -1129,16 +1131,16 @@ msgstr "Ime hosta je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije unijeto!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1160,25 +1162,26 @@ msgstr "Ukloni izabrane korisnike" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Promeni" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Izbor servera" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "SQL upit" @@ -1189,24 +1192,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1228,7 +1231,7 @@ msgstr "Izbor servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Procesi" @@ -1248,7 +1251,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "Statistike reda" @@ -1293,14 +1296,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1358,32 +1361,32 @@ msgstr "" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Konekcije" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "bajta" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1399,11 +1402,11 @@ msgstr "%s tabela" msgid "Questions" msgstr "Operacije" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1426,11 +1429,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "nema" @@ -1530,7 +1533,7 @@ msgstr "Opšte osobine relacija" msgid "Current settings" msgstr "Opšte osobine relacija" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1616,7 +1619,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Vrijeme" @@ -1723,10 +1726,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Izvoz" @@ -1781,9 +1784,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1798,11 +1801,11 @@ msgstr "Lokalni" msgid "Processing Request" msgstr "Procesi" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." @@ -1814,9 +1817,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "U redu" @@ -1869,17 +1872,17 @@ msgstr "Dodaj novo polje" msgid "Show indexes" msgstr "Prikaži mrežu" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Omogućeno" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1917,7 +1920,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1959,8 +1962,8 @@ msgstr "SQL upit" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Promijeni" @@ -1968,18 +1971,18 @@ msgstr "Promijeni" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Sačuvaj" @@ -1993,7 +1996,7 @@ msgstr "SQL upit" msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2045,12 +2048,12 @@ msgstr "SQL rezultat" msgid "Data point content" msgstr "Sadržaj" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2071,7 +2074,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2165,7 +2168,7 @@ msgstr "Generirao" msgid "Change Password" msgstr "Promeni lozinku" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2279,27 +2282,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2307,37 +2310,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "dec" @@ -2386,32 +2389,32 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sub" @@ -2544,16 +2547,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "u sekundi" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "u minuti" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "na sat" @@ -2574,70 +2577,298 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Dodaj/obriši kolonu" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Početak" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Prethodna" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Slijedeći" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Kraj" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Sub" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows per page" +msgid "Number of rows" +msgstr "Broj redova po strani" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Pon" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontalnom" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontalnom (rotirana zaglavlja)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertikalnom" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Izvrši upamćen upit" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "Operacije" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Dio teksta" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Pun tekst" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "Relaciona shema" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Relaciona shema" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Tranformacije čitača" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Red je obrisan" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Obustavi" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "u upitu" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Prikaz zapisa" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "ukupno" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Upit je trajao %01.4f sekundi" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Prikaži PDF shemu" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Verzija servera" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Veza nije pronađena" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Ključevi" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Jedinstveni" @@ -2650,8 +2881,8 @@ msgstr "" msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2673,131 +2904,131 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Baze" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Novi zapis" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Upit po primeru" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilegije" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Korisnik" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Binarni" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Promjenljive" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Kodne strane" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Greška" @@ -2822,7 +3053,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2913,16 +3144,108 @@ 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 +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 +#, 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 +msgid "Value" +msgstr "Vrijednost" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Pretraživanje" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Novi zapis" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Izaberi polja (najmanje jedno)" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Dodaj uslove pretraživanja (dio \"WHERE\" upita):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Broj redova po strani" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Redosled prikaza:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Pregledaj strane vrijednosti" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "SQL upit" + +#: 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 "Napravi \"upit po primjeru\" (džoker: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Napravi \"upit po primjeru\" (džoker: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Resetuj" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2941,7 +3264,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3237,20 +3560,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Dobrodošli na %s" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3266,61 +3589,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Prijavljivanje" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 #, fuzzy msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Korisničko ime:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Lozinka:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Izbor servera" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Ne mogu da se prijavim na MySQL server" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Pogrešno korisničko ime/lozinka. Ulaz nije dozvoljen." @@ -3352,7 +3669,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabele" @@ -3364,13 +3681,13 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Podaci" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Prekoračenje" @@ -3397,30 +3714,22 @@ msgstr "Provjeri privilegije za bazu "%s"." msgid "Check Privileges" msgstr "Provjeri privilegije" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3432,215 +3741,193 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktiva MORA biti podješena u " "konfiguracionoj datoteci!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentacija" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL upit" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL kaže: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Preskoči provjeru SQL-a" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Provjeri SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Dodaj novo polje" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Početak" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Prethodna" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Slijedeći" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Kraj" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direkcija za slanje web servera " -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Direkcija koju ste izabrali za slanje nije dostupna" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Štampaj" @@ -3672,8 +3959,8 @@ msgid "Closed" msgstr "Navodnik nije zatvoren" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Onemogućeno" @@ -3825,9 +4112,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Resetuj" @@ -4036,10 +4323,6 @@ msgstr "Predloži strukturu tabele" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4096,7 +4379,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Sačuvaj kao datoteku" @@ -4106,7 +4389,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4225,7 +4508,7 @@ msgid "MIME type" msgstr "MIME-tipovi" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relacije" @@ -5754,9 +6037,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Lozinka" @@ -6028,30 +6311,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Promeni lozinku" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Nema lozinke" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Ponovite unos" @@ -6074,13 +6351,13 @@ msgstr "Napravi novu bazu podataka" msgid "Create" msgstr "Napravi" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Nema privilegija" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "Napravi novu stranu" @@ -6088,9 +6365,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Ime" @@ -6276,25 +6553,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Verzija servera" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Verzija servera" @@ -6405,408 +6682,241 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Dodaj/obriši kolonu" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Sub" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of rows" -msgstr "Broj redova po strani" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Pon" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontalnom" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontalnom (rotirana zaglavlja)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertikalnom" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Izvrši upamćen upit" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "Operacije" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Dio teksta" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Pun tekst" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "Relaciona shema" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Relaciona shema" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Tranformacije čitača" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Red je obrisan" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Obustavi" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "u upitu" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Prikaz zapisa" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "ukupno" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Upit je trajao %01.4f sekundi" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Prikaži PDF shemu" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Verzija servera" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Veza nije pronađena" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 #, fuzzy msgid "Version information" msgstr "Podatci o prijavi" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 #, fuzzy msgid "Data files" msgstr "Samo podaci" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB status" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 #, fuzzy msgid "Pages to be flushed" msgstr "Tabela %s je osvežena" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6814,48 +6924,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6863,20 +6973,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Relacije" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6934,15 +7044,15 @@ msgstr "Prikaz podataka tabele" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Poslato" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7012,14 +7122,14 @@ msgstr "Dostupni MIME-tipovi" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Host" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Vrijeme kreiranja" @@ -7217,21 +7327,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7326,12 +7427,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Imena kolona" @@ -7396,96 +7497,78 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funkcija" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binarni" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binarni - ne mijenjaj" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "direkcija za slanje web servera" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Novi zapis" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 #, fuzzy msgid "Go back to this page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Vrijednost" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7502,38 +7585,38 @@ msgstr "nema" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Pet" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Pošalji" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Dodaj novo polje" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Da li stvarno hoćete da " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Nema izmjena" @@ -7749,93 +7832,93 @@ msgstr "" msgid "This format has no options" msgstr "Ne postoje opcije za ovaj format" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "nije u redu" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "U redu" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Omogućeno" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Opšte osobine relacija" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Prikaži osobine" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Pravljenje PDF-ova" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Prikazujem komentare kolone" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Tranformacije čitača" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Obilježen SQL-upit" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL istorijat" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "nema opisa" @@ -7843,7 +7926,7 @@ msgstr "nema opisa" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7855,13 +7938,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Ime korisnika" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Sortiranje" @@ -7875,7 +7958,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Promjenljiva" @@ -7890,38 +7973,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Bilo koji host" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Koristi tabelu hosta" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7935,7 +8018,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7967,101 +8050,102 @@ msgstr "Tabela %s je odbačena" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Poslato" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy msgid "Event name" msgstr "Vrsta upita" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 #, fuzzy msgid "Event type" msgstr "Vrsta upita" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Promijeni" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Izvrši upamćen upit" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Status" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Kraj" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Kompletan INSERT (sa imenima polja)" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8092,7 +8176,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -8112,118 +8196,118 @@ msgstr "Tabela %s je odbačena" msgid "Routine %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Imena kolona" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Napravljeno" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Dužina/Vrijednost*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Dodaj novo polje" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy msgid "Remove last parameter" msgstr "Promjeni ime tabele u " -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Dužina/Vrijednost*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcije tabele" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vrsta upita" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8242,41 +8326,41 @@ msgstr "Tabela %s je odbačena" msgid "Trigger %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Dodaj novog korisnika" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "Ime korisnika" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Vrijeme" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8377,7 +8461,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8387,7 +8471,7 @@ msgstr "Tabela \"%s\" ne postoji!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8395,7 +8479,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Podesite koordinate za tabelu %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8407,27 +8491,27 @@ msgstr "Shema baze \"%s\" - Strana %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Relaciona shema" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Sadržaj" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atributi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Dodatno" @@ -8547,7 +8631,7 @@ msgstr "" msgid "Current Server" msgstr "Server" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Pretraživanje baze" @@ -8566,7 +8650,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Pretraživanje baze" @@ -8586,7 +8670,7 @@ msgstr "Izvrši SQL upit(e) na bazi %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8597,11 +8681,11 @@ msgstr "" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8696,7 +8780,7 @@ msgstr "" "SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " "neophodne PHP ekstenzije opisane u %sdokumentaciji%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8728,8 +8812,8 @@ msgstr "" "ili navodnika u ovom obliku: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Ključ" @@ -8783,13 +8867,13 @@ msgstr "nema" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primarni" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Tekst ključ" @@ -8803,19 +8887,19 @@ msgstr "" msgid "after %s" msgstr "Poslije %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Dodaj novo polje" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Morate izabrati bar jednu kolonu za prikaz" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8823,46 +8907,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Pretraživanje" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Izaberi polja (najmanje jedno)" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Dodaj uslove pretraživanja (dio \"WHERE\" upita):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Broj redova po strani" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Redosled prikaza:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Pregledaj strane vrijednosti" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Napravi \"upit po primjeru\" (džoker: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9020,13 +9064,13 @@ msgstr "" msgid "Manage your settings" msgstr "Opšte osobine relacija" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Izmjene su sačuvane" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9037,7 +9081,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9066,7 +9110,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9092,9 +9136,9 @@ msgstr "Verzija servera" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Korisnik" @@ -9219,146 +9263,146 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Baza ne postoji" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Promijeni redoslijed u tabeli" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Promijeni redoslijed u tabeli" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Napravi novu stranu" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Izaberite bazu" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Traditional Chinese" msgid "Toggle relation lines" msgstr "Tradicionalni kineski" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Izvrši SQL upit" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "Prikaži sve" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "Relacioni pogled" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Izvoz" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "u upitu" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Promjeni ime tabele u " -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Ime korisnika" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Napravi" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9373,60 +9417,60 @@ msgstr "Tabela %s je odbačena" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Zauzeće" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Uvoz fajlova" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Napravi novi ključ" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Ime korisnika" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 #, fuzzy msgid "Internal relation added" msgstr "Opšte osobine relacija" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 #, fuzzy msgid "Relation deleted" msgstr "Relacioni pogled" @@ -9439,89 +9483,89 @@ msgstr "" msgid "Modifications have been saved" msgstr "Izmjene su sačuvane" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Uvoz fajlova" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Uvoz fajlova" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Sve" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela nije pronađena ili nije postavljena u %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9531,18 +9575,18 @@ msgstr "Tabela \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "Polja" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -9558,7 +9602,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 #, fuzzy msgid "Information" msgstr "Podatci o prijavi" @@ -9567,7 +9611,7 @@ msgstr "Podatci o prijavi" msgid "Character Sets and Collations" msgstr "Karakter setovi i sortiranje" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9575,24 +9619,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s baza je uspješno odbačena." msgstr[1] "%s baza je uspješno odbačena." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statistika baze" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Uključi statistike" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9604,159 +9648,159 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Početak" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "verzija PHP-a" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Onemogućeno" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmjenu struktura postojećih tabela." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 #, fuzzy msgid "Allows creating stored routines." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 #, fuzzy msgid "Allows creating new views." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamjenu podataka." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9764,60 +9808,60 @@ msgstr "" "Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " "izvrši na sat." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9827,173 +9871,173 @@ msgstr "" "Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " "promenljivih ili prekidanje procesa ostalih korisnika." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Nema privilegija." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "nema" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globalne privilegije" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Ograničenja resursa" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja limite." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Podatci o prijavi" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Nemoj da mijenjaš lozinku" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnik nije nađen." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zabranili ste privilegije za %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspješno promjenjena." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspješno obrisani." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Promijeni privilegije" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Zabrani" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Izvoz" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Privilegije" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Pregled korisnika" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Omogući" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10006,141 +10050,141 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na slijedećoj bazi" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na slijedećoj tabeli" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... obriši stare iz tabela korisnika." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu "%s"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "globalno" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "Specifično za bazu" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "Džoker" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy msgid "User has been added." msgstr "Polje %s je obrisano" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Privilegije su uspešno ponovo učitane." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10149,271 +10193,271 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Izaberite bazu" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Tekst ključ" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Samo struktura" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Samo struktura" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Proces %s je uspješno prekinut." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin nije mogao da prekine proces %s. Vjerovatno je već zatvoren." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 #, fuzzy msgid "Query cache" msgstr "Vrsta upita" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 #, fuzzy msgid "Delayed inserts" msgstr "Prošireni INSERT" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 #, fuzzy msgid "Show open tables" msgstr "Prikaži tabele" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Informacije o toku rada" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy msgid "Refresh rate: " msgstr "Generirao" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nemoj da mijenjaš lozinku" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy msgid "Show only alert values" msgstr "Prikaži tabele" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy msgid "Show unformatted values" msgstr "Prikaži tabele" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Vrsta upita" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "Funkcija" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10421,117 +10465,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Ime" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Primljeno" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Poslato" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Naredba" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10539,78 +10583,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10618,7 +10662,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10626,42 +10670,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10669,33 +10713,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10704,243 +10748,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Karakter set datoteke:" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10948,99 +10992,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11048,18 +11092,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11067,69 +11111,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Vrsta upita" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sub" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Dodaj novo polje" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Generirao" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/obriši kolonu" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11138,7 +11182,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11146,18 +11190,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11165,11 +11209,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11177,89 +11221,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy msgid "Preset chart" msgstr "Promjeni ime tabele u " -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Izaberi tabele" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Dodaj novog korisnika" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "SQL upit" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Statistike reda" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Izaberi sve" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vrsta upita" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11267,7 +11311,7 @@ msgid_plural "%d seconds" msgstr[0] "u sekundi" msgstr[1] "u sekundi" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11275,131 +11319,131 @@ msgid_plural "%d minutes" msgstr[0] "se koristi" msgstr[1] "se koristi" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL upit" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Konekcije" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Serverske promenljive i podešavanja" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Vrijednost sesije" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Globalna vrednost" @@ -11691,178 +11735,178 @@ msgstr "" msgid "Wrong data" msgstr "Baza ne postoji" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Da li stvarno hoćete da " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjeri SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL rezultat" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Generirao" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Naziv" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspješno obrisani." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Izabrani korisnici su uspješno obrisani." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "mar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Imena kolona" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Uvoz fajlova" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "SQL upit" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Vrijednost" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Vrijednost" -#: tbl_create.php:31 +#: tbl_create.php:30 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Korisnik %s već postoji!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabela %s je odbačena" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Prikaži sadržaj (shemu) tabele" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Dodaj/obriši kolonu" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Ukupno" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Sačuvaj kao datoteku" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -11880,32 +11924,32 @@ msgstr "Ne mogu da promenim ključ u PRIMARY (primarni) !" msgid "No index parts defined!" msgstr "Dijelovi ključa nisu definisani!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Dodaj novo polje" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Add new field" msgid "Edit index" msgstr "Dodaj novo polje" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Ime ključa :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" mora biti ime samo primarnog ključa!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Tip ključa :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj u ključ  %s kolona(e)" @@ -11928,276 +11972,276 @@ msgstr "Tabela %s je pomjerena u %s." msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Promijeni redoslijed u tabeli" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(po jednom polju)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Pomjeri tabelu u (baza.tabela):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Opcije tabele" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Promjeni ime tabele u" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopiraj tabelu u (baza.tabela):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Pređi na kopiranu tabelu" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Radnje na tabeli" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s je osvežena" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Osvježi tabelu (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Prikaz podataka tabele" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Baza ne postoji" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Radnje na tabeli" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 #, fuzzy msgid "Check" msgstr "Češki" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "Popravi tabelu" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Prikaži tabele" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Zauzeće" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efektivne" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Statistike reda" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamički" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Dužina reda" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Veličina reda" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy msgid "Internal relation" msgstr "Opšte osobine relacija" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy msgid "Distinct values" msgstr "Pregledaj strane vrijednosti" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add new field" msgid "Add SPATIAL index" msgstr "Dodaj novo polje" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "nema" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabela %s je odbačena" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Osnovni ključ je upravo dodan %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Ključ je upravo dodan %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Prikaži informacije o PHP-u" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy msgid "Move columns" msgstr "Dodaj novo polje" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Za štampu" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Relacioni pogled" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Predloži strukturu tabele" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy msgid "Add column" msgstr "Dodaj novo polje" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Na kraju tabele" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Na početku tabele" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Poslije %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12353,73 +12397,40 @@ msgstr "" msgid "Create version" msgstr "Verzija servera" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Napravi \"upit po primjeru\" (džoker: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "SQL upit" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Resetuj" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Dostupni MIME-tipovi" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-tipovi prikazani u kursivu nemaju odvojene funkcije transformacije." -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Dostupne transformacije" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nije Vam dozvoljeno da budete ovdje!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profil je promjenjen." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/ca.po b/po/ca.po index 6f52b24e02..2a343edcfe 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-03-28 14:16+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: catalan \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 0.8\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Mostra tot" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Número de pàgina:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "la finestra \"pare\" o bé el teu navegador bloqueja actualitzacions entre " "finestres per la teva configuració de seguretat." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Executa" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Nom de clau" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Descripció" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Fes servir aquest valor" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "S'ha creat la base de dades %1$s." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Comentaris de la base de dades: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Comentaris de la taula" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Columna" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Nul" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Defecte" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Enllaços a" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Comentaris" @@ -197,14 +198,14 @@ msgstr "Comentaris" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "No" @@ -217,122 +218,122 @@ msgstr "No" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Si" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Veure el bolcat (esquema) de la base de dades" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Base de dades sense taules." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Tria Tot" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Desmarca tot" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "El nom de la base de dades és buit!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Base de dades %s reanomenada a %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "La base de dades %s s'ha copiat a %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Reanomena base de dades a" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Elimina la base de dades" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "La base de dades %s s'ha eliminat." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Esborra la base de dades (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Còpia base de dades a" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Només l'estructura" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Estructura i dades" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Només dades" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Inclou CREATE DATABASE abans de copiar" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Afegeix %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Afegeix valor AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Afegeix restriccions" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Canvia a la base de dades copiada" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Ordenació" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -341,59 +342,59 @@ msgstr "" "S'ha desactivat l' emmagatzemament de la configuració de phpMyAdmin. Per " "veure el motiu, clica %saqui%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Edita o exporta l'esquema relacional" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Taula" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Fila" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Mida" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "en ús" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Creació" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Darrera actualització" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Darrera comprovació" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -404,117 +405,117 @@ msgstr[1] "%s taules" msgid "You have to choose at least one column to display" msgstr "Has de triar al menys una columna per mostrar" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Canviar al %sconstructor visual%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Classificació" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Ascendent" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Descendent" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Mostra" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Criteris" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "I" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Sup" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "O" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Modificar" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Afegeix/esborra criteris de files" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Afegeix/esborra columnes" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Actualitza consulta" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Usa Taules" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Consulta SQL a la base de dades %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Executa consulta" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Accés denegat" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "al menys una d'aquestes paraules" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "totes les paraules" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "la frase exacta" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "com a expressió regular" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultats de la recerca per a \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -523,93 +524,93 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultat" msgstr[1] "Total: %s resultats" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Cerca a la base de dades" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Paraules o valors a cercar (comodí: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Trobat:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Paraules separades per un espai (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Dins les taules:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Dins la columna:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Base de dades sense taules" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "desconegut" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "S'ha buidat la taula %s" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Vista %s esborrada" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "S'ha esborrat la taula %s" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "El seguiment està actiu." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "El seguiment no està actiu." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -617,185 +618,186 @@ msgid "" msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replicació" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Suma" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Amb marca:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Marcar-ho tot" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporta" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Imprimeix vista" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Buida" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Elimina" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Verifica la taula" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimitza la taula" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Repara la taula" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analitza la taula" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Afegeix un prefix a la taula" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Canvia el prefix de la taula" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copia la taula amb prefix" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Diccionari de Dades" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Taules seguides" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Base de dades" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Darrera versió" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Creat" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Actualitzat" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Estat" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Acció" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Esborra les dades de seguiment per aquesta taula" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "actiu" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "no actiu" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versions" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Informe de seguiment" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Instantània de l'estructura" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Taules no seguides" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Segueix taula" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Registre de la base de dades" @@ -807,16 +809,16 @@ msgstr "Tipus incorrecte!" msgid "Selected export type has to be saved in file!" msgstr "El tipus d'exportació triat s'ha de desar en un arxiu!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Paràmetres incorrectes!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "No hi ha prou espai per desar l'arxiu %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -824,12 +826,12 @@ msgstr "" "L'arxiu %s ja existeix al servidor, canvia el nom o marca l'opció de " "sobreescriure." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "El servidor web no té permisos per a desar l'arxiu %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." @@ -838,86 +840,86 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." msgid "Invalid export type" msgstr "Tipus d'exportació incorrecte" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Valor per la columna \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utilitzar OpenStreetMaps com a capa base" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Punt" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punt %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Afegir un punt" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Cadena de línies" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Cercle exterior" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Cercle interior" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Afegeix una cadena de línies" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Afegeix un cercle interior" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Polígon" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Afegeix un polígon" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Afegir geometria" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Sortida" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -925,7 +927,7 @@ msgstr "" "Tria «GeomFromText» de la columna \"Funció\" i enganxa la cadena següent al " "camp \"Valor\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -934,21 +936,21 @@ msgstr "" "Probablement has triat d'enviar un arxiu massa gran. Consulta la " "%sdocumentació%s per trobar formes de modificar aquest límit." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Mostrant consultes desades" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "S'ha esborrat la consulta desada." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "No es pot llegir l'arxiu" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -957,7 +959,7 @@ msgstr "" "S'intenta carregar un arxiu amb una compresió no suportada (%s). O bé aquest " "suport no s'ha implementat encara o bé el teniu desactivat a la configuració." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -967,29 +969,29 @@ msgstr "" "o el tamany de l'arxiu es més gran que el permès per la configuració del " "vostre PHP. Veieu [a@./Documentation.html#faq1_16]PFC(FAQ) 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "No es pot convertir el joc de caracters de l'arxivu sense la biblioteca " "corresponent" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "No es poden carregar les extensions d'importació, comprova l'instal.lació!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "%s creat com a Consulta desada" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importació finalitzada correctament, %d consultes executades." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -997,7 +999,7 @@ msgstr "" "Temps exaurit de l'arxiu d'ordres, si voleu finalitzar l'importació, torneu " "a enviar el mateix arxiu a importar i el procés continuarà." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1006,24 +1008,24 @@ msgstr "" "indica que phpMyAdmin no ha pogut finalitzar aquesta importació a menys que " "incrementeu els límits de temps de php." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Enrere" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin és més fàcil amb un navegador que suporti marcs -frames-." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrucció \"DROP DATABASE\" desactivada." @@ -1033,7 +1035,7 @@ msgstr "Instrucció \"DROP DATABASE\" desactivada." msgid "Do you really want to execute \"%s\"?" msgstr "Realment vols fer?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Ets a punt de DESTRUIR completament una base de dades!" @@ -1073,7 +1075,7 @@ msgstr "Afegir Index" msgid "Edit Index" msgstr "Editar índex" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Afegeix %d columna(es) a l'index" @@ -1091,16 +1093,16 @@ msgstr "El nom del servidor és buit!" msgid "The user name is empty!" msgstr "El nom d'usuari és buit!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "La contrasenya és buida!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Les contrasenyes no coincideixen!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Afegirl usuari" @@ -1117,23 +1119,24 @@ msgstr "Treu els usuaris triats" msgid "Close" msgstr "Tanca" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Edita" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Gràfic de tràfic en viu" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Gràfic de conexions/processos en viu" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Gràfic de consultes en viu" @@ -1143,24 +1146,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Altre" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1180,7 +1183,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Processos" @@ -1198,7 +1201,7 @@ msgstr "Consultes des de la darrera actualització" msgid "Questions (executed statements by the server)" msgstr "Consultes (sentències executades pel servidor)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Consulta d'estadístiques" @@ -1244,14 +1247,14 @@ msgid "System swap" msgstr "Intercanvi del sistema" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1303,32 +1306,32 @@ msgstr "Bytes enviats" msgid "Bytes received" msgstr "Bytes rebuts" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Connexions" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1342,11 +1345,11 @@ msgstr "%d taula(es)" msgid "Questions" msgstr "Consultes" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Tràfic" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Configuració" @@ -1366,11 +1369,11 @@ msgstr "Afegeix gràfic a a la graella" msgid "Please add at least one variable to the series" msgstr "Afegeix al menys una variable a la serie" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Res" @@ -1470,7 +1473,7 @@ msgstr "Canviar configuracions" msgid "Current settings" msgstr "Configuracions actuals" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Títol del gràfic" @@ -1561,7 +1564,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Temps" @@ -1660,10 +1663,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:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" @@ -1715,9 +1718,9 @@ msgstr "" msgid "Test" msgstr "Prova" -#: 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 +#: 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 msgid "Cancel" msgstr "Cancel.lar" @@ -1729,11 +1732,11 @@ msgstr "Carregar" msgid "Processing Request" msgstr "Petició de procés" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Error a la petició de procés" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "No s'han triat bases de dades." @@ -1745,9 +1748,9 @@ msgstr "Eliminació de columna" msgid "Adding Primary Key" msgstr "Afegir clau principal" -#: 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 +#: 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 msgid "OK" msgstr "Correcte" @@ -1787,19 +1790,19 @@ msgstr "Amagar índex" msgid "Show indexes" msgstr "Mostra índex" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Desactiva les comprovacions de claus externes" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Activat" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1829,7 +1832,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "editor de ENUM/SET" @@ -1868,8 +1871,8 @@ msgstr "Mostrar quadre de consultes" msgid "No rows selected" msgstr "No s'han triat arxius" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Canvi" @@ -1877,18 +1880,18 @@ msgstr "Canvi" msgid "Query execution time" msgstr "Temps d'execució de la consulta" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Desa" @@ -1900,7 +1903,7 @@ msgstr "Amaga el criteri de cerca" msgid "Show search criteria" msgstr "Mostrar criteri de cerca" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Cerca de zoom" @@ -1944,12 +1947,12 @@ msgstr "Resultats de consultes" msgid "Data point content" msgstr "Contingut del punter de dades" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Còpia" @@ -1969,7 +1972,7 @@ msgstr "Tria una clau externa" msgid "Please select the primary key or a unique key" msgstr "Tria la clau principal o una clau única" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Tria la columna a mostrar" @@ -2056,7 +2059,7 @@ msgstr "Genera" msgid "Change Password" msgstr "Canvi de contrasenya" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Més" @@ -2147,63 +2150,63 @@ msgid "December" msgstr "Desembre" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Des" @@ -2241,32 +2244,32 @@ msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Dis" @@ -2380,16 +2383,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "per segon" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "per minut" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "per hora" @@ -2410,20 +2413,205 @@ msgstr "" msgid "Font size" msgstr "Tamany de lletra" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Desar dades editades" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Reataurar ordre de columnes" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Inici" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Pàgina anterior" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Pàgina següent" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Darrera pàgina" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Fila d'inici" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Nombre de files" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Mode" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horitzontal" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horitzontal (capçaleres rotades)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertical" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Classifica per la clau" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Opcions" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Textos parcials" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Textos sencers" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Clau relacional" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Columna relacional a mostrar" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Mostra continguts binaris" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Mostra contingut BLOB" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Mostra el contingut binari com HEX" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Amagar transformació del navegador" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Finalitzar" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Pot ser aproximat. Veieu [a@./Documentation.html#faq3_11@Documentation]PCF -" +"FAQ- 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "en consulta" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Mostrant registres" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "total" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "La consulta tarda %01.4f seg" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operacions de resultats de consultes" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Vista d'impresió (amb texts sencers)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Mostra el gràfic" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Crea una vista" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "No s'ha trobat l'enllaç" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "El tamany d'arxiu pujat supera la directiva upload_max_filesize de php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2431,27 +2619,27 @@ msgstr "" "El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al " "formulari HTML." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Només s'ha pujat parcialment l'arxiu." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "No es troba la carpeta temporal." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Error en gravar l'arxiu al disc." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Pujada de l'arxiu aturada per l'extensió." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Error desconegut al pujar l'arxiu." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2459,26 +2647,43 @@ msgstr "" "Error movent l'arxiu pujat, consulta la [a@./Documentation." "html#faq1_11@Documentation]PCF -FAQ- 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Obrir nova finestra de phpMyAdmin" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" +"A partir d'aquest punt és necessari tenir les galetes -cookies- activades." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indexos" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Única" @@ -2491,8 +2696,8 @@ msgstr "Comprimit" msgid "Cardinality" msgstr "Cardinalitat" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Comentari" @@ -2515,128 +2720,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Bases de dades" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Servidor" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Estructura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Insereix" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacions" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Seguiment" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "La taula sembla buida!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "La base de dades sembla buida!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Consulta segons exemple" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Permisos" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutines" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Esdeveniments" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Dissenyador" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Usuaris" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sincronitza" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Registre binari" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variables" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Jocs de caràcters" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Motors" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Error" @@ -2661,7 +2866,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d fila inserida." msgstr[1] "%1$d files inserides." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Error creant PDF:" @@ -2753,16 +2958,100 @@ 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 +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 +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 +msgid "Value" +msgstr "Valor" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Cerca de taules" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Edita/Insereix" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Tria les columnes (una com a mínim):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Afegeix condicions de recerca (cos de la clàusula \"where\" ):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Número de registres per pàgina" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Ordre del llistat:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Màxim nombre de files a dibuixar" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Navega valors externs" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Criteri de cerca addicionals" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Fer una \"consulta segons exemple\" (comodí: \"%\") per a dos columnes " +"diferents" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Fer una \"petició segons exemple\" (comodí: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Cóm utilitzar" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Reinicia" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "El camí de les imatges del tema %s és incorrecte!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "No hi ha vista prèvia disponible." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "agafa" @@ -2781,7 +3070,7 @@ msgstr "Tema %s no trobat!" msgid "Theme path not found for theme %s!" msgstr "No s'ha trobat el camí de les imatges del tema %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3080,13 +3369,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "No puc connectar: paràmetres incorrectes." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Benvingut a %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3095,7 +3384,7 @@ 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." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3111,44 +3400,36 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." msgstr "" -"A partir d'aquest punt és necessari tenir les galetes -cookies- activades." -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Identificació" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Pots entrar un nom d'amfitrió/adreça IP i port separat per espai." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Servidor:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Nom d'usuari:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Contrasenya:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Elecció de Servidor" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" -"A partir d'aquest punt és necessari tenir les galetes -cookies- activades." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3156,19 +3437,19 @@ msgstr "" "La configuració prohibeix la connexió sense contrasenya (veure " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Sense activitat des de fa %s segons o més, entra de nou" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "No podem connectar amb el servidor MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Usuari i/o clau erronis. Accés denegat." @@ -3200,7 +3481,7 @@ msgstr "compartit" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Taules" @@ -3212,13 +3493,13 @@ msgstr "Taules" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Dades" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Defragmentat" @@ -3243,30 +3524,22 @@ msgstr "Comprova els permisos per la base de dades "%s"." msgid "Check Privileges" msgstr "Comprova els permisos" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "No es pot llegir l'arxiu de configuració" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "No es pot carregar la configuració per defecte des de: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3278,206 +3551,192 @@ msgstr "" "La directiva $cfg['PmaAbsoluteUri'] HA d'estar establerta a " "l'arxiu de configuració!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Index de servidor invàlid: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Mètode d'identificació incorrecte establert a la configuració:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Es necessari actualitzar a %s %s o posterior." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Màx: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Documentació" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "Consulta SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL diu: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "No es pot connectar al validador SQL!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explica SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Salta l'explicació de l'SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Sense codi PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Crea codi PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Refresca" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Salta la Validació de l'SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valida l'SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Editar aquesta consulta en línia" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "En línia" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Perfils" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Diu" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a les %H:%M:%S" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dies, %s hores, %s minuts i %s segons" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Falta paràmetre:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Inici" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Pàgina anterior" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Pàgina següent" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Darrera pàgina" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Vés a la base de dades "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Prem per canviar" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Navega al teu ordinador:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format 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:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "No està disponible el directori indicat per pujar arxius" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "No hi ha cap arxiu per pujar" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Imprimeix" @@ -3507,8 +3766,8 @@ msgid "Closed" msgstr "Tancat" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Desactivat" @@ -3649,9 +3908,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Reinicia" @@ -3872,10 +4131,6 @@ msgstr "Proposa una estructura de taula" msgid "Show binary contents as HEX by default" msgstr "Mostra el contingut binari com HEX per defecte" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Mostra el contingut binari com HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Mostra les bases de dades com a llista en lloc de llista desplegable" @@ -3930,7 +4185,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Màxim temps d'execució" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Desa com a arxiu" @@ -3939,7 +4194,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4043,7 +4298,7 @@ msgid "MIME type" msgstr "Tipus MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relacions" @@ -5651,9 +5906,9 @@ msgstr "Necessita activar el SQL Validator" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Contrasenya" @@ -5941,14 +6196,6 @@ msgstr "" msgid "Details..." msgstr "Detalls..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Pot ser aproximat. Veieu [a@./Documentation.html#faq3_11@Documentation]PCF -" -"FAQ- 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -5957,18 +6204,18 @@ msgstr "" "configuració." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Canvi de contrasenya" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Sense contrasenya" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Reescriu" @@ -5989,22 +6236,22 @@ msgstr "Crear base de dades" msgid "Create" msgstr "Crea" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Sense permisos" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nom" @@ -6162,26 +6409,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Conversió de codificació:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "Crea versió %s de %s.%s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -6303,173 +6550,28 @@ msgstr "Opcions específiques de format:" msgid "Language" msgstr "Idioma" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Desar dades editades" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Reataurar ordre de columnes" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Fila d'inici" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Nombre de files" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Mode" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horitzontal" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horitzontal (capçaleres rotades)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertical" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Classifica per la clau" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Opcions" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Textos parcials" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Textos sencers" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Clau relacional" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Columna relacional a mostrar" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Mostra continguts binaris" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Mostra contingut BLOB" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Amagar transformació del navegador" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "S'ha esborrat la fila" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Finalitzar" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "en consulta" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Mostrant registres" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "total" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "La consulta tarda %01.4f seg" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operacions de resultats de consultes" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Vista d'impresió (amb texts sencers)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Mostra el gràfic" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Crea una vista" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "No s'ha trobat l'enllaç" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Informació de versió" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Directori local de dades" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "La part comuna de la ruta al directori per tots els arxius de dades InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Arxius de dades" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Increment d'autoextensió" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6477,11 +6579,11 @@ msgstr "" " La quantitat a incrementar per ampliar el tamany d'una taula autoextensible " "quan estigui a punt d'omplir-se." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Tamany de la memòria cau" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6489,79 +6591,79 @@ msgstr "" "El tamany de memòria cau que InnoDB fa servir per desar les dades i indexs " "de les seves taules." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Grup de memòries intermitges" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Estat InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Ús del grup de memòries intermitges" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "pàgines" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Pàgines lliures" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Pàgines brutes" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Pàgines contenint dades" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Pàgines per a purgar" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Pàgines ocupades" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Pàgines inalterables" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Activitat de la Memòria intermitja" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Peticions de lectura" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Peticions d'escriptura" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Lectures omeses" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Esperes d'escriptura" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Lectures omeses en %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Esperes d'escriptura en %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Tamany del punter de dades" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6569,11 +6671,11 @@ msgstr "" "El tamany per defecte del punter en bytes, usat en CREATE TABLE per a taules " "MyISAM quan no s'especifica l'opció MAX_ROWS." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Modus de recuperació automàtic" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6581,11 +6683,11 @@ msgstr "" "El modus per a recuperació automàtica en taules MyISAM corruptes, com " "s'estableix via l'opció d'inici del servidor --myisam-recover." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Tamany màxim per arxius temporals de classificació" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6595,11 +6697,11 @@ msgstr "" "torna acrear un índex MyISAM (mentre es fa un REPAIR TABLE, ALTER TABLE, o " "LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Màxim tamany per arxius temporals en creació d'índex" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6609,11 +6711,11 @@ msgstr "" "gran que usant el cau principal per la quantitat especificada aquí, es " "recomana fer servir el cau principal." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Repara fils" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6622,11 +6724,11 @@ msgstr "" "paralel (cada índex en el seu propi fil) mentre s'executa el procés de " "reparació per classificació." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Tamany de l'àrea de classificació" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6634,11 +6736,11 @@ msgstr "" "Ârea assignada per classificar índexos MyISAM mentre es fa un REPAIR TABLE o " "mentre es creen índexs amb CREATE INDEX o ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Tamany del cau d'índex" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6647,11 +6749,11 @@ msgstr "" "defecte és 32MB. La memòria assignada aquí només s'utilitza per cau de " "pàgines d'índex." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Tamany del cau de registre" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6662,11 +6764,11 @@ msgstr "" "com a cau de canvis dels arxius del gestor de dades (.xtd) i indicadors de " "fila (.xtr) ." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Tamany del registre del cau -log-" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6674,11 +6776,11 @@ msgstr "" "La quantitat de memòria assignada al cau del registre de transaccions usat " "en registres de transacció de dades. El valor per defecte és 16MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Llindar de l'arxiu de Registre -log-" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6686,11 +6788,11 @@ msgstr "" "El tamany del registre de transaccions abans d'un ajornament, i un nou " "registre es crea. El valor per defecte és 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Tamany de la memòria cau de transaccions" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6698,11 +6800,11 @@ msgstr "" "El tamany de la memòria cau global del registre de transaccions (el motor " "assigna 2 memòries intermèdies d'aquest tamany). El valor per defecte és 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Freqüència dels controls" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6710,11 +6812,11 @@ msgstr "" "La quantitat de dades escrites al registre de transaccions abans de executar " "un control. El valor per defecte és 24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Llindar del registre de dades -data log-" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6727,11 +6829,11 @@ msgstr "" "augmentar la quantitat total de dades que es poden emmagatzemar en la base " "de dades." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Llindar de les escombraries" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6739,11 +6841,11 @@ msgstr "" "El percentatge d'escombraries en un registre de dades abans de compactar. És " "un valor entre 1 i 99. El valor per defecte és 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Tamany de la memòria cau del registre" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6753,27 +6855,27 @@ msgstr "" "valor per defecte és 256MB. El motor assigna una memòria intermèdia per fil, " "però només si es requereix el fil per escriure un registre de dades." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Tamany de creixement de l'arxiu de dades" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "El tamany de creixement dels arxius del gestor de dades (.xtd) ." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Tamany de creixement de l'arxiu de files" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "El tamany de creixement dels arxius d'indicadors de fila (.xtr) ." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Comptador de l'arxiu de registre" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6785,7 +6887,7 @@ msgstr "" "llavors els registres vells s'esborraràn, altrament es reanomenaràn i es " "donarà el pròxim número més alt." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6794,11 +6896,11 @@ msgstr "" "Pots trobar la documentació i més informació sobre PBXT a la pàgina " "principal de %sPrimeBase XT%s." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Enllaços relacionats" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "El Blog de PrimeBase XT per Paul McCullagh" @@ -6845,14 +6947,14 @@ msgstr "Bolcant dades de la taula" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Esdeveniment" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definició" @@ -6910,14 +7012,14 @@ msgstr "Mostra tipus MIME" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Servidor" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Temps de generació" @@ -7130,21 +7232,12 @@ msgstr "Vistes" msgid "Export contents" msgstr "Exporta contingut" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Obrir nova finestra de phpMyAdmin" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "No s'han trobat dades per a visualització GIS." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7246,12 +7339,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Nom de taula" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Nom de les columnes" @@ -7320,94 +7413,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funció" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Amaga" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binari" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binari - no editeu" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "directori de pujada d'arxius del servidor web" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Edita/Insereix" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Continua l'inserció amb %s files" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "i llavors" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Insereix com a nova fila" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Insereix com a nova fila i ignora els errors" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Mostra la consulta d'inserció" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Torna" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Insereix un nou registre" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Torna a aquesta pàgina" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Edita el següent registre" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Valor" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" @@ -7422,34 +7499,34 @@ msgstr "Cap" msgid "Convert to Kana" msgstr "Converteix a Kana" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "De" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Envia" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Afegir prefix" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Realment vols fer?" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Sense canvis" @@ -7659,85 +7736,85 @@ msgstr "Recarrega el marc de navegació" msgid "This format has no options" msgstr "Aquest format no té opcions" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Incorrecte" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "Correcte" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Activat" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Característiques generals de relacions" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Mostra les característiques" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Creació de PDFs" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Mostrant comentaris de les columnes" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Transformació del navegador" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Mira a la documentació cóm actualitzar la teva taula de comentaris de les " "columnes" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Consulta SQL desada" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Historial SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Taules persistents usades recentment" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Preferències d'usuari" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Passos ràpids per a activar les característiques avançades:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Crea les taules necessàries amb examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Crea un usuari pma i dona-li accés a aquestes taules." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7746,12 +7823,12 @@ msgstr "" "(config.inc.php), partint, per exemple, de l'arxiu config." "sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-entra a phpMyAdmin per a carregar l'arxiu de configuració actualitzat." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "sense descripció" @@ -7759,7 +7836,7 @@ msgstr "sense descripció" msgid "Slave configuration" msgstr "Configració de l'esclau" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Canvia o reconfigura el servidor mestre" @@ -7773,13 +7850,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Nom d'usuari" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -7792,7 +7869,7 @@ msgid "Slave status" msgstr "Estat de l'esclau" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variable" @@ -7808,38 +7885,38 @@ msgstr "" "Només els servidors iniciats amb l'opció --report-host=nom_de_servidor es " "mostren en aquesta llista." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Afegeix l'usuari esclau de replicació" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Qualsevol usuari" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Usa camp de text" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Qualsevol servidor" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Aquest Host" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Utilitza la Taula de Hosts" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7855,7 +7932,7 @@ msgstr "Genera una Contrasenya" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7886,88 +7963,89 @@ msgstr "S'ha creat l'esdeveniment %1$s." msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Editar esdeveniment" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Error processant a la petició" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detalls" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Nom d'esdeveniment" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Tipus d'event" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Canviar a %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Inici" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Final" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Preservar al completar" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7996,7 +8074,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "tipus de rutina invàlid: \"%s\"" @@ -8015,105 +8093,105 @@ msgstr "S'ha modificat la rutina %1$s." msgid "Routine %1$s has been created." msgstr "S'ha creat la rutina %1$s." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Editar rutina" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Nom de rutina" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Direcció" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Longitud/Valors*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Afegir paràmetre" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Elimina el darrer paràmetre" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Tipus de retorn" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Retornar Longitud/Valors" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Retornar opcions" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Tipus de seguretat" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Resultats de l'execució de la rutina %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Paràmetres de rutina" @@ -8131,36 +8209,36 @@ msgstr "S'ha modificat el disparador %1$s." msgid "Trigger %1$s has been created." msgstr "Disparador %1$s creat." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Editar disparador" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Nom del disparador" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Temps" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Has de donar un nom de taula vàlid" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8244,7 +8322,7 @@ msgstr "No hi ha esdeveniments per mostrar." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8253,7 +8331,7 @@ msgstr "La taula %s no existeix!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8261,7 +8339,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Configura les coordinades per la taula %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8272,27 +8350,27 @@ msgstr "Esquema de la base de dades %s - Pàgina %s" msgid "This page does not contain any tables!" msgstr "Aquesta pàgina no conté taules!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "ERROR D'ESQUEMA: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Esquema relacional" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Taula de continguts" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atributs" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8400,7 +8478,7 @@ msgstr "Idioma desconegut: %1$s." msgid "Current Server" msgstr "Servidor actual" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Base de dades origen" @@ -8418,7 +8496,7 @@ msgstr "Servidor remot" msgid "Difference" msgstr "Diferència" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Base de dades destinació" @@ -8437,7 +8515,7 @@ msgstr "Executar consulta/es SQL al servidor %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Neteja" @@ -8446,11 +8524,11 @@ msgstr "Neteja" msgid "Columns" msgstr "Columnes" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Deixa accedir a cada usuari a aquesta consulta desada" @@ -8547,7 +8625,7 @@ msgstr "" "instal·lats els mòduls de PHP necessaris tal i com s'indica a la " "%sdocumentació%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." @@ -8574,8 +8652,8 @@ msgstr "" "cometes, fent servir aquest format: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Índex" @@ -8627,13 +8705,13 @@ msgstr "Cap" msgid "As defined:" msgstr "Com definit:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Principal" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Text sencer" @@ -8647,17 +8725,17 @@ msgstr "" msgid "after %s" msgstr "Darrere de %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Afegeix %s columna(es)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Has d'afegir al menys una columna." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Motor d'emmagatzematge" @@ -8665,41 +8743,6 @@ msgstr "Motor d'emmagatzematge" msgid "PARTITION definition" msgstr "Definició de PARTICIÓ" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Cerca de taules" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Tria les columnes (una com a mínim):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Afegeix condicions de recerca (cos de la clàusula \"where\" ):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Número de registres per pàgina" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Ordre del llistat:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Navega valors externs" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Fer una \"petició segons exemple\" (comodí: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8850,11 +8893,11 @@ msgstr "" msgid "Manage your settings" msgstr "Gestiona els teus paràmetres" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "S'a desat la configuració" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8868,7 +8911,7 @@ msgstr "" msgid "Could not save configuration" msgstr "No es pot desar la configuració" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8897,7 +8940,7 @@ msgstr "Ordenació de la connexió del servidor" msgid "Appearance Settings" msgstr "Paràmetres d'aparença" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Més paràmetres" @@ -8917,9 +8960,9 @@ msgstr "Versió de programari" msgid "Protocol version" msgstr "Versió del protocol" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Usuari" @@ -9057,128 +9100,128 @@ msgstr "" "Servidor executant-se amb Suhosin. Si us plau, consulta %sdocumentation%s " "per a possibles assumptes." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "No hi ha bases de dades" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "filtrar taules pel nom" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "filtrar taules pel nom" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Crea una taula" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Tria una base de dades" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Menú esquerre Mostra/Amaga" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Desa la posició" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Crea una relació" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Recarrega" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Ajuda" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Enllaços angulars" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Enllaços directes" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Alinia a la graella" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Tot Petit/Gran" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Canviar petit/gran" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Canviar línies de relació" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Importa/Exporta coordenades per a esquema PDF" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Construeix una consulta" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Menú Mou" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Amaga/Mostra tot" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Amaga/Mostra taules sense relacions" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Nombre de taules" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Esborra la relació" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Operador de relació" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Excepte" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "subconsulta" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Reanomena a" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Nou nom" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Agrega" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Opcions actives" @@ -9190,51 +9233,51 @@ msgstr "S'ha creat una pàgina" msgid "Page creation failed" msgstr "Ha fallat la creació de pàgina" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "pàgina" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Importar des de la pàgina seleccionada" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Exporta a la pàgina seleccionada" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Crea una pàgina i exporta en ella" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Nou nom de pàgina: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Exporta/Importa a escala" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "recomanat" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Error: la relació ja existeix." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Error: La relació no s'ha afegit." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Afegida relació de FOREIGN KEY" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Afegida relació interna" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relació esborrada" @@ -9246,52 +9289,52 @@ msgstr "Error desant coordenades per al Dissenyador." msgid "Modifications have been saved" msgstr "Les modificacions han estat desades" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "No es poden desar els paràmetres, el formulari enviat conté errors" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "No es pot importar la configuració" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "La configuració conté dades incorrectes per a alguns camps." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Vols importar la resta de paràmetres?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Desat en: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importar des de arxiu" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Importar des de l'emmagatzemament del navegador" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" "Els paràmetres s'importaran des del emmagatzemament local del teu navegador." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "No has desat els paràmetres!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Aquesta característica no està suportada pel teu navegador" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Fusiona amb la configuració actual" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9300,36 +9343,36 @@ msgstr "" "Pots establir més paràmetres modificant l'arxiu config.inc.php, ex. by usant " "%sSetup script%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Desar a l'emmagatzemament del navegador" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Els paràmetres es desaran al emmagatzemament local del teu navegador." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Els paràmetres existents es sobreescriuran!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "Pots restablir tots els teus paràmetres als valors per defecte." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importa arxius" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Tot" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "taula %s no trobada o no definida a %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "L'arxiu no existeix" @@ -9337,17 +9380,17 @@ msgstr "L'arxiu no existeix" msgid "Select binary log to view" msgstr "Tria el registre binari per veure" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Arxius" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Talla les consultes mostrades" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Mostra Consultes completes" @@ -9363,7 +9406,7 @@ msgstr "Posició" msgid "Original position" msgstr "Posició original" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informació" @@ -9371,7 +9414,7 @@ msgstr "Informació" msgid "Character Sets and Collations" msgstr "Jocs de Caràcters i ordenacions" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9379,24 +9422,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s bases de dades s'han esborrat correctament." msgstr[1] "%s bases de dades s'han esborrat correctament." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Estadístiques de les bases de dades" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Replicació del mestre" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Replicació de l'esclau" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Activa Estadístiques" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9408,154 +9451,154 @@ msgstr "" msgid "Storage Engines" msgstr "Motors d'emmagatzematge" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Veure volcat (esquema) de les bases de dades" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Inici" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Versió" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "desactivat" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Inclou tots els permisos excepte GRANT -atorgar-." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Permet alterar l'estructura de taules existents." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Permet alterar i esborrar rutines enmagatzemades." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Permet crear noves bases de dades i taules." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Permet crear rutines enmgatzemades." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Permet crear noves taules." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Permet crear taules temporals." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permet crear, esborrar i reanomenar comptes d'usuari." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Permet crear noves vistes." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Permet esborrar dades." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Permet eliminar bases de dades i taules." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Permet eliminar taules." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Permet establir events per al planificador d'events" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Permet executar rutines enmagatzemades." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Permet importar i exportar dades amb arxius externs." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permet afegir usuaris i permisos sense tenir que recarregar les taules de " "permisos." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Permet crear i eliminar indexs." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Permet inserir i modificar dades." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Permet bloquejar taules per l'actual fil d'execució." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita el numero de noves connexions que pot obrir l'usuari per hora." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el numero de consultes que pot enviar l'usuari al servidor per hora." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9563,61 +9606,61 @@ msgstr "" "Limita el numero d'ordres que pot executar l'usuari canviant qualsevol taula " "o base de dades per hora." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Límita el nombre de connexions simultànies que l'usuari pot tenir." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Permet veure processos de tots els usuaris" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "No té efecte en aquesta versió de MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permet recarregar les configuracions del servidor i buidar les seves " "memòries cau." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dona el dret a l'usuari de preguntar quins servidors mestres / esclaus hi ha." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Es necessari per a la replicació en servidors esclaus." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Permet llegir dades." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Dona accés a la llista completa de bases de dades." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permet fer consultes de tipus SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Permet parar el servidor." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9627,167 +9670,167 @@ msgstr "" "permès; es necessari per moltes operacions d'administració com ara establir " "variables globals o bé cancel.lar fils d'execució d'altres usuaris." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Permet crear i eliminar disparadors -triggers-" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Permet canviar dades." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Sense permisos." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Cap" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Permisos especifics de taula" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: Els noms dels privilegis del MySQL són en idioma anglès" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administració" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Permisos generals" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Permisos específics de base de dades" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Limit de recursos" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Es treu el limit establint aquestes opcions a 0 (zero) ." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Informació d'Identificació" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "No canviïs la contrasenya" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "No s'han trobat usuaris." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "L'usuari %s ja existeix!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Has afegit un usuari nou." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Heu actualitzat els permisos de %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Has tret els permisos per %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "La contrasenya per %s s'ha canviat correctament." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Esborrant %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "No s'han triat usuaris per esborrar!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Recarregant permisos" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "S'han esborrat correctament els usuaris triats." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Els permisos s'han recarregat correctament." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Edita permisos" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Treu" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Exporta" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Qualsevol" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Permisos" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Permisos" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Vista global d'usuaris" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Atorga" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Treu els usuaris triats" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9800,49 +9843,49 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Permisos específics de columna" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Afegeix permisos a la següent base de dades" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Afegeix permisos a la següent taula" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Canvi d'Informació de Connexió / Copia d'Usuari" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nou usuari amb els mateixos permisos i ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... respecta l'antic." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... esborra l'antic de les taules d'usuaris." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9850,83 +9893,83 @@ msgstr "" " ... esborra l'antic de les taules d'usuaris i recarrega els permisos " "després." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Base de dades per usuari" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Atorga tots els permisos en un nom comodí (nomusuari\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Atorga tots els permisos a la base de dades "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Usuaris amb accés a "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "específic de la base de dades" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "comodins" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Usuari afegit." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Error desconegut" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Incapaços de connectar amb el mestre %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Incapaços de llegir la posició del registre mestre. Posible problema de " "permissos en el mestre." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "No es pot canviar el mestre" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "S'ha canviat correctament el servidor mestre a %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" "Aquest servidor s'ha configurat com a mestre en un procés de replicació." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Mostra l'estat del mestre -show master status-" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Mostra els esclaus connectats" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9935,11 +9978,11 @@ msgstr "" "Aquest servidor no està configurat com a mestre en un procés de replicació. " "Vols configurar-lo ?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Configuració del mestre" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9953,19 +9996,19 @@ msgstr "" "optar per ignorar totes les bases de dades per defecte i permetre que només " "determinades bases de dades es repliquin. Si us plau, selecciona l'opció:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Replica totes les bases de dades; Ignora:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Ignora totes les bases de dades; Replica:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Selecciona bases de dades:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -9973,7 +10016,7 @@ msgstr "" "Ara, afegeix les següents línies al final de la secció [mysqld] del teu " "arxiu -my.cnf- i després reinicia el servidor MySQL." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -9983,82 +10026,82 @@ msgstr "" "de veure un missatge que t'informi que aquest servidor està " "configurat com a mestre" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "El fil SQL de l'esclau SQL no va!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "El fil IO de l'esclau IO no va!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Servidor configurat com a esclau en un procés de replicació. Vols:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Veure la taula d'estat de l'esclau" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Sincronitza les bases de dades amb el mestre" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Control esclau:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Inici total" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Parada total" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Reinicia l'esclau" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Inicia només el fil SQL" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Atura només el fil SQL" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Inicia només el fil IO" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Atura només el fil IO" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Gestió d'errors:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Saltar errors podria donar lloc a falta de sincronització entre mestre i " "esclau!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Salta l'error actual" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Salta el següent" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "errors." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10067,146 +10110,146 @@ msgstr "" "Aquest servidor no està configurat com a esclau en un procés de replicació. " "Vols configurar-lo ?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Fil %s cancel.lat correctament." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin no pot cancel.lar el fil %s. Probablement, ja és tancat." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Gestor" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Memòria cau de consultes" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Fils" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Dades temporals" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Insercions demorades" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Memòria cau de claus" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Unions" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Classificant" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Coordinador de transaccions" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Sincronitza (tanca) totes les taules" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Mostra taules obertes" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Mostra servidors esclaus" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Mostra l'estat d'esclaus" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Buida la memòria cau de consultes" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Informació d'execució" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Totes les variables d'estat" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Velocitat de refresc: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filtres" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Incloent la paraula:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Mostra només valors d'alerta" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Mostra valors sense format" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Enllaços relacionats:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Executar analitzador" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Instruccions" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10214,31 +10257,31 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Consultes des de l'inici: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Sentències" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10246,19 +10289,19 @@ msgstr "" "Aquest servidor MySQL treballa com a mestre i esclau en un " "procés de replicació ." -#: server_status.php:1078 +#: server_status.php:1077 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:1080 +#: server_status.php:1079 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:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10266,11 +10309,11 @@ msgstr "" "Per obtenir més informació sobre l'estat de replicació al servidor, visita " "la secció de replicació." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Estat de la replicació" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10278,45 +10321,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Rebut" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Enviat" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "max. connexions a la vegada" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Intents erronis" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Avortat" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Ordre" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 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:1322 +#: server_status.php:1321 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 " @@ -10326,17 +10369,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:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10348,11 +10391,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Arxius temporals creats per mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10360,7 +10403,7 @@ msgstr "" "El nombre de taules temporals creades en memòria per el servidor mentre " "executa instruccions." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10368,7 +10411,7 @@ msgstr "" "El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat " "quelcom error (possile clau duplicada)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10376,23 +10419,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "El nombre de files escrites amb INSERT DELAYED." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "El nombre d'instruccions FLUSH executades." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "El nombre d'instruccions COMMIT internes." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10402,7 +10445,7 @@ msgstr "" "coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. " "Handler_discover indica el nombre de taules descobertes." -#: server_status.php:1335 +#: 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, " @@ -10412,7 +10455,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:1336 +#: server_status.php:1335 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." @@ -10421,7 +10464,7 @@ msgstr "" "és una bona indicació de que les consultes i taules estàn indexades " "acuradament." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10431,7 +10474,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:1338 +#: server_status.php:1337 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,7 +10483,7 @@ msgstr "" "Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... " "DESC." -#: server_status.php:1339 +#: 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 " @@ -10452,7 +10495,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:1340 +#: server_status.php:1339 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 " @@ -10464,37 +10507,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:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "El nombre d'instruccions ROLLBACK." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "El nombre de pàgines contenint dades (brutes o netes)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "El nombre de pàgines actualment brutes." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "El nombre de pàgines lliures." -#: server_status.php:1348 +#: 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 " @@ -10504,7 +10547,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:1349 +#: server_status.php:1348 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 " @@ -10516,11 +10559,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:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Tamany total de la memòria cau, en pàgines." -#: server_status.php:1351 +#: 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." @@ -10528,7 +10571,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:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10536,11 +10579,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:1353 +#: server_status.php:1352 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:1354 +#: 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." @@ -10548,7 +10591,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:1355 +#: server_status.php:1354 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 " @@ -10562,55 +10605,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:1356 +#: server_status.php:1355 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:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "El nombre d'operacions fsync() aproximades." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "El nombre actual d'operacions fsync() pendents." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "El nombre actual de lectures pendents." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "El nombre actual d'escritures pendents." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "La quantitat aproximada de dades llegides, en bytes." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "El nombre total de dades llegides." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "El nombre total de dades escrites." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "La quantitat aproximada de dades escrites, en bytes." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -10618,35 +10661,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "El nombre de peticions d'escriptura al registre." -#: server_status.php:1369 +#: server_status.php:1368 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:1370 +#: server_status.php:1369 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Escriptures pendents a l'arxiu de registre." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "El nombre de bytes escrits a l'arxiu de registre." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "El nombre de pàgines creades." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10655,51 +10698,51 @@ msgstr "" "comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment " "a bytes." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "El nombre de pàgines llegides." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "El nombre de pàgines escrites." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "El nombre de bloquejos de files actualment en espera." -#: server_status.php:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "El nombre de files esborrades de taules InnoDB." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "El nombre de files afegides a taules InnoDB." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "El nombre de files llegides de taules InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "El nombre de files actualitzades en taules InnoDB." -#: server_status.php:1387 +#: 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." @@ -10708,7 +10751,7 @@ msgstr "" "però que encara no han estat actualitzades a disc. Es coneix com a " "Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -10716,7 +10759,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:1389 +#: server_status.php:1388 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 " @@ -10725,17 +10768,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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Format de l'arxiu importat" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10745,27 +10788,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:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -10776,17 +10819,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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10794,39 +10837,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "El nombre d'arxius que estàn oberts." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "El nombre de taules que estàn obertes." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 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:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "El nombre d'encerts a memòria cau." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "El nombre de consultes afegides a la memòria cau." -#: server_status.php:1408 +#: 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 " @@ -10839,7 +10882,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:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10847,19 +10890,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:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "El nombre de consultes registrades a la memòria cau." -#: server_status.php:1411 +#: server_status.php:1410 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:1412 +#: server_status.php:1411 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:1413 +#: server_status.php:1412 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." @@ -10867,12 +10910,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10881,7 +10924,7 @@ msgstr "" "cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els " "indexs de les taules.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10889,16 +10932,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10906,25 +10949,25 @@ msgstr "" "Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació " "de SQL ha recuperat transaccions." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 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:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -10934,23 +10977,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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "El nombre de classificacions fetes amb rangs." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "El nombre de files classificades." -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "El nombre de classificacions fetes cercant la taula." -#: server_status.php:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -10963,7 +11006,7 @@ msgstr "" "consultes, o també dividir la taula o taules en vàries o bé utilitzar la " "replicació." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -10973,11 +11016,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "El nombre de connexions obertes simultàniament." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10988,63 +11031,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:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "El seguiment no està actiu." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "El nombre de fils que no estàn dormint." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Començar monitorització" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Afegir gràfic" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Velocitat de refresc" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Columnes del gràfic" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Ordenació del gràfic" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Restaura el valor per defecte" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Instruccions de Monitorització" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11053,7 +11096,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11061,18 +11104,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11080,11 +11123,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11092,199 +11135,199 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Gràfic predefinit" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Variable(s) d'estat" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Seleccionar series:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "o escriu el nom de variable:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Afegir aquesta serie" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Series al gràfic:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Estadístiques del registre" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Rang de temps seleccionat:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Analitzador de consultes" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d segon" msgstr[1] "%d segons" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minuts" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "No s'ha pogut connectar a l'origen" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "No s'ha pogut connectar a la destinació" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "la base de dades '%s' no existeix." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Sincronització d'estructura" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Sincronizació de dades" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "no present" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Diferència d'estructura" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Diferència de dades" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Afegeix columna(es)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Treu columna(es)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Canvia columna(es)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Treu index(s)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Aplica index(s)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Actualitza fila(es)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Afegeix fila(es)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Vols eliminar totes les files anteriors de les taules de destinació?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Aplica els canvis seleccionats" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Sincronitza Based de dades" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Les taules de destinació seleccionades s'han sincronitzat amb les taules " "d'origen." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" "La base de dades destinació s'ha sincronitzat amb la base de dades origen" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Consultes executades" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Entrada manual" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Connexió actual" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Configuració: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Sòcol" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11292,19 +11335,19 @@ msgstr "" "La base de dades destinació s'ha sincronitzat completament amb la base de " "dades origen. L'origen restarà sense canvis." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Variables i configuracions del servidor" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Valor de sessió" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Valor global" @@ -11641,157 +11684,157 @@ msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials." msgid "Wrong data" msgstr "Dades incorrectes" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usar el preferit \"%s\" com a pàgina de cerca per defecte." -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Realment vols fer?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Mostrant com a codi PHP" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "SQL validat" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Resultat SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Generat per" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemes amb els indexs de la taula `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Etiqueta" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "S'ha modificat la taula %1$s correctament" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "S'han esborrat correctament els usuaris triats." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Barra" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Columna" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Línia" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Ranures" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Pastis" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Apilat" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Títol del gràfic" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Series:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Etiqueta de l'eix X:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "Valors X" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Etiqueta de l'eix Y:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Valors Y" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "La taula %s ja existeix!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "S'ha creat la taula %1$s." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Veure un bolcat (esquema) de la taula" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Mostra visualització GIS" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Ample" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Alt" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Etiqueta de columna" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- cap --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Columna espacial" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Redibuixa" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Desa a un arxiu" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Nom de l'arxiu" @@ -11807,30 +11850,30 @@ msgstr "No pots canviar el nom d'un índex a PRIMARY!" msgid "No index parts defined!" msgstr "No s'han definit parts de l'índex!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Afegir índex" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Editar índex" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Nom d'índex:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" ha de ser el nom i només el nom de la clau " "principal!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Tipus d'índex:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Afegeix a l'índex %s columna(es)  " @@ -11853,151 +11896,151 @@ msgstr "Taula %s moguda a %s." msgid "Table %s has been copied to %s." msgstr "La taula %s s'ha copiat a %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "El nom de la taula és buit!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Altera la taula i ordena per" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(només)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Mou la taula a (base-de-dades.taula):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Opcions de taula" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Reanomena les taules a" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Còpia taula a (base-de-dades.taula):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Canvia a una taula copiada" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Manteniment de la taula" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Desfragmenta la taula" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "S'ha buidat la memòria cau de la taula %s" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Buida la memòria cau de la taula (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Esborra les dades o la taula" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Buida la taula (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Esborra la taula (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Manteniment de particions" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partició %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analitza" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Comprova" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimitza" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Reconstrueix" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Repara" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Elimina particionament" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Comprova la integritat referencial:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Mostrant taules" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Utilització d'espai" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efectiu" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Estadística de files" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "estàtic" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinàmic" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Tamany de fila" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Mida de fila" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Error creant clau externa -foreign key- a %1$s (comprovar tipus de dades)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Relació interna" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12005,107 +12048,107 @@ msgstr "" "No es necessita una relació interna quan existeix una relació corresponent " "de FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Límit de clau externa" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Navega per valors diferents" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Afegir clau principal" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Afegir índex únic" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Afegir índex espacial (SPATIAL)" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Afegir índex FULLTEXT" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Cap" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "S'ha esborrat la columna %s" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "S'ha afegit una clau principal a %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "S'ha afegit un índex a %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Mostra més accions" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Treu columna(es)" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Editar vista" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Vista de relacions" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Proposa una estructura de taula" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Afegeix columna(es)" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Al final de la taula" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Al principi de la taula" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Darrere de %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Crea un índex de %s columnes" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "particionat" @@ -12262,69 +12305,37 @@ msgstr "Segueix aquestes declaracions de manipulació de dades:" msgid "Create version" msgstr "Crea versió" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Fer una \"consulta segons exemple\" (comodí: \"%\") per a dos columnes " -"diferents" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Criteri de cerca addicionals" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Màxim nombre de files a dibuixar" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Cóm utilitzar" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Reinicia" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Obtenir més temes!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Tipus MIME disponibles" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "Els tipus MIME en cursiva no tenen funcions de transformació a part" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Transformacions disponibles" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Descripció" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "No tens prou permisos per visualitzar aquesta informació!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "S'ha actualitzat el perfil." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Nom de VISTA" diff --git a/po/ckb.po b/po/ckb.po index cf6f3a81e4..b08e007ffb 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,7 +7,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-26 20:03+0200\n" "Last-Translator: Aso Naderi \n" "Language-Team: none\n" @@ -18,79 +18,79 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "پیشاندانی هەموو" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "ژمارەی پەڕە:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "بڕۆ" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "کلیلەناو" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "پێناسە" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "ئەم نرخە هەڵبژێرە" @@ -108,88 +108,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "بنکەی دراوەی %1$s درووستکرا." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr ":تێبینی بنکەی دراوە" -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "تێبینیەکانی خشتە" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "ستون" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "بەتاڵ" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "بنەڕەت" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "بەستەر دەکات بۆ" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "بۆچوون" @@ -198,14 +199,14 @@ msgstr "بۆچوون" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "نەخێر" @@ -218,120 +219,120 @@ msgstr "نەخێر" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "بەڵێ" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "نیشاندانى بۆشایى (هێڵکارى) لە بنکەى دراوە" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr ".هیج خشتەیەک بوونی نیە لە نێو بنکەی دراو" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "هەڵبژاردنی هەموو" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "هەلنەبژاردنی هەموو" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "ناوی بنکەی دراوە بەتاڵە!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "ناوی بنکەی دراوەی %1$s گۆڕدرا بۆ %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "بنکەی دراوەی %1$s ڕوونووس کرا بۆ بنکەی دراوەی %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "ناوی بنکەی دراوە بگۆڕە بۆ" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "سڕینەوەی بنکەی دراوە" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "بنکەی دراوەی %s سڕایەوە." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "سڕینەوەی بنکەی دراوە (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "لە ڕوونووسینەوەی بنکەی دراوە بۆ" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "تەنیا بنچینە" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "بنچینە و زانیاری" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "تەنیا زانیاری" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "بنکەی دراوە درووست بکە پێش ڕوونووسکردن" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "زیادکردن %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "زیادکردنی مەرج" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "بڕۆ بۆ بنکەی دراوەی ڕوونووس کراو" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "ڕێکخستن" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -339,59 +340,59 @@ msgid "" msgstr "" "شێوەی بیرگەی phpMyAdmin ناچالاک کراوە. بۆ دۆزینەوەی کلیک لەمە بکە %shere%s" -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "خشتە" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "خانە" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "قەبارە" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "بەکار دەبرێت" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "درووستکردن" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "دواترین نوێکردنەوە" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "دواترین پشکنین" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -402,396 +403,397 @@ msgstr[1] "%s خشتەکان" msgid "You have to choose at least one column to display" msgstr "دەبێت لانیکەم ١ خانە هەڵبژێریت بۆ پیشاندان" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "ڕیزکردن" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "لە سەرەتاوە بۆ کۆتایی" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "لە کۆتایی بۆ سەرەتا" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "پیشاندان" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "مەرج" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "و" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "سڕینەوە" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "یان" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "دەستکاری" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "زۆرکردن/سڕینەوەی خانەی مەرج" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "زۆرکردن/سڕینەوەی خانە" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "نوێکردنەوەی پرس" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "خشتە بەکار ببە" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "پرسی SQL لەسەر بنکەی دراوەی %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "ناردنی پرس" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "ڕێگەنەدرا بە بینین" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "لانیکەم یەکێک لە وشەکان" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "هەموو وشەکان" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "دەقاودەقی ڕستە" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "ئەنجامی گەڕان بۆ \"%s\" %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "گەڕان لە بنکەی دراو" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "دۆزینەوە:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "وشەکان بە هێمای بۆشایی جیا دەکرێنەوە (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy msgid "Inside tables:" msgstr "لەناو خشتە:\n" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "لە نێو خشتەی:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "هیچ خشتەیەک نەدۆزرایەوە لە بنکەی دراو" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "نەناسراوە" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "خشتەی %s خاڵی کرا" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "%s سڕایەوە" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "خشتەی %s سڕایەوە" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "بەدواچوونەوە چالاکە." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "بەدواچوونەوە ناچالاکە." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "دووپاتکاری" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "سەرجەم" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "لەگەڵ پەڕگەی دەستنیشانکراو:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "پشکنینی هەموو" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "هەناردن" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "پارچەیەک بۆ چاپکردن" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "بەتاڵ" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "پشکنینی خشتە" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "چاکردنی خشتە" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "شیکردنەوەى خشتە" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "زیادکردنی پێشگر بۆ خشتە" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "گۆڕینی پێشگری خشتە" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "لەبەرگرتنەوەی خشتە لەگەڵ پێشگر" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "فەرهەنگی زانیاریەکان" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "بنکەی دراو" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "وەشانی کۆتا" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "دروستکراوە" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "بارکراوە" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "ڕەوش" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "کردار" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "چالاک" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "ناچالاکە" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "وەشانەکان" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "" @@ -803,27 +805,27 @@ msgstr "" msgid "Selected export type has to be saved in file!" msgstr "دەستنیشانکردنی جۆری هەناردن بۆ پاشەکەوتکردنی لە پەڕگە!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -832,174 +834,174 @@ msgstr "" msgid "Invalid export type" msgstr "" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "خاڵ" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "زیادکردنی خاڵ" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "زیادکردنی ئەندازەگەری" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "بەرهەم" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "ناتوانیت پەڕگە بخوێنیتەوە" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "گەڕانەوە" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -1008,7 +1010,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1048,7 +1050,7 @@ msgstr "زیادکردنی نیشاندەر" msgid "Edit Index" msgstr "چاکردنی نیشاندەر" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "" @@ -1066,16 +1068,16 @@ msgstr "ناوی خانەخوێ بەتاڵە!" msgid "The user name is empty!" msgstr "ناوی بەکارهێنانی خانەخوێ بەتاڵە!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "وشەی نهێنی بەتاڵە!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "زیادکردنی بەکارهێنەر" @@ -1092,23 +1094,24 @@ msgstr "" msgid "Close" msgstr "داخستن" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "چاکردن" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "" @@ -1118,24 +1121,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "سەرجەم" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1155,7 +1158,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "" @@ -1173,7 +1176,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "" @@ -1214,14 +1217,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "" @@ -1273,32 +1276,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "" @@ -1312,11 +1315,11 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "" @@ -1336,11 +1339,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "هیچ" @@ -1433,7 +1436,7 @@ msgstr "" msgid "Current settings" msgstr "ڕێکخستنەکانی هەنووکە" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "" @@ -1511,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "کات" @@ -1599,10 +1602,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "هێنان" @@ -1650,9 +1653,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "لابردن" @@ -1664,11 +1667,11 @@ msgstr "ئامادەکردن" msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1680,9 +1683,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "باشە" @@ -1722,15 +1725,15 @@ msgstr "" msgid "Show indexes" msgstr "" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(چالاکە)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(ناچالاکە)" @@ -1758,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1797,8 +1800,8 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "گۆڕین" @@ -1806,18 +1809,18 @@ msgstr "گۆڕین" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "پاشەکەوتکردن" @@ -1829,7 +1832,7 @@ msgstr "" msgid "Show search criteria" msgstr "" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "" @@ -1873,12 +1876,12 @@ msgstr "" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -1898,7 +1901,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "" @@ -1981,7 +1984,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "" @@ -2070,63 +2073,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "" @@ -2164,32 +2167,32 @@ msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "" @@ -2302,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "" @@ -2332,70 +2335,266 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "" @@ -2408,8 +2607,8 @@ msgstr "" msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "" @@ -2430,128 +2629,128 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "" @@ -2576,7 +2775,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2663,16 +2862,96 @@ 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 +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 +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 +msgid "Value" +msgstr "" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2691,7 +2970,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -2980,20 +3259,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3005,58 +3284,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "" @@ -3088,7 +3363,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "" @@ -3100,13 +3375,13 @@ msgstr "" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "" @@ -3131,233 +3406,211 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "" @@ -3387,8 +3640,8 @@ msgid "Closed" msgstr "" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "" @@ -3529,9 +3782,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "" @@ -3733,10 +3986,6 @@ msgstr "" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3789,7 +4038,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "" @@ -3798,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "" @@ -3902,7 +4151,7 @@ msgid "MIME type" msgstr "" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "" @@ -5353,9 +5602,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "وشەی نهێنی" @@ -5622,30 +5871,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "" @@ -5666,22 +5909,22 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -5832,25 +6075,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -5957,383 +6200,238 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6341,48 +6439,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6390,18 +6488,18 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6448,14 +6546,14 @@ msgstr "" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6513,14 +6611,14 @@ msgstr "" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "" @@ -6705,21 +6803,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6811,12 +6900,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "" @@ -6881,91 +6970,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6980,32 +7053,32 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "" @@ -7215,90 +7288,90 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "" @@ -7306,7 +7379,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7318,13 +7391,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7337,7 +7410,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "" @@ -7351,38 +7424,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7396,7 +7469,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7427,88 +7500,89 @@ msgstr "" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7537,7 +7611,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7556,105 +7630,105 @@ msgstr "" msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -7672,36 +7746,36 @@ msgstr "" msgid "Trigger %1$s has been created." msgstr "" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -7785,7 +7859,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -7794,7 +7868,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -7802,7 +7876,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -7813,27 +7887,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "" @@ -7939,7 +8013,7 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -7957,7 +8031,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -7976,7 +8050,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -7985,11 +8059,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8071,7 +8145,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8091,8 +8165,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "" @@ -8136,13 +8210,13 @@ msgstr "" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "" @@ -8155,17 +8229,17 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8173,41 +8247,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8315,11 +8354,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8330,7 +8369,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8357,7 +8396,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "" @@ -8377,9 +8416,9 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "" @@ -8487,126 +8526,126 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "" @@ -8618,51 +8657,51 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "" @@ -8674,87 +8713,87 @@ msgstr "" msgid "Modifications have been saved" msgstr "" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "" @@ -8762,17 +8801,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -8788,7 +8827,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "" @@ -8796,31 +8835,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -8830,369 +8869,369 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9201,138 +9240,138 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9341,251 +9380,251 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -9593,115 +9632,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -9709,78 +9748,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -9788,7 +9827,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -9796,42 +9835,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -9839,33 +9878,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -9874,242 +9913,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10117,99 +10156,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10217,18 +10256,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10236,61 +10275,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10299,7 +10338,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10307,18 +10346,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10326,11 +10365,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10338,214 +10377,214 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -10829,153 +10868,153 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "" -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "" @@ -10991,28 +11030,28 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11035,252 +11074,252 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -11428,65 +11467,37 @@ msgstr "" msgid "Create version" msgstr "" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/cs.po b/po/cs.po index c578378818..c25893ce80 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,8 +5,8 @@ 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-04 13:49+0200\n" -"PO-Revision-Date: 2012-06-04 15:36+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"PO-Revision-Date: 2012-06-19 10:44+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -16,21 +16,21 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Zobrazit vše" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Strana číslo:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,58 +40,58 @@ msgstr "" "rodičovské okno, nebo prohlížeč blokuje operace mezi okny z důvodu " "bezpečnostních nastavení." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Proveď" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Název klíče" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Popis" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Použít tuto hodnotu" @@ -109,88 +109,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Byla vytvořena databáze %1$s." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Komentář k databázi: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Komentář k tabulce" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Pole" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Nulový" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Výchozí" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Odkazuje na" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Komentáře" @@ -199,14 +200,14 @@ msgstr "Komentáře" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ne" @@ -219,120 +220,120 @@ msgstr "Ne" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ano" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Zobrazit výpis (schéma) databáze" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "V databázi nebyla nalezena žádná tabulka." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Vybrat vše" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Odznačit vše" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Jméno databáze je prázdné!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Databáze %1$s byla přejmenována na %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databáze %1$s byla zkopírována do %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Přejmenovat databázi na" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Odstranit databázi" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Databáze %s byla zrušena." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Odstranit databázi (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Zkopírovat databázi na" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Pouze strukturu" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Strukturu a data" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Jen data" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Vytvořit databázi před kopírováním (CREATE DATABASE)" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Přidat %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Přidat hodnotu AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Přidat integritní omezení" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Přepnout na zkopírovanou databázi" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Porovnávání" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -341,59 +342,59 @@ msgstr "" "Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte " "proč." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Upravit nebo exportovat relační schéma" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabulka" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Řádků" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Velikost" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "právě se používá" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Vytvořeno" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Poslední změna" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Poslední kontrola" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -405,117 +406,117 @@ msgstr[2] "%s tabulek" msgid "You have to choose at least one column to display" msgstr "Musíte zvolit alespoň jedno pole, které chcete zobrazit" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Přepnout na %svizuálního návrháře%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Řadit" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Vzestupně" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Sestupně" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Zobrazit" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Podmínka" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Přidat" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "a" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Smazat" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Nebo" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Úpravy" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Přidat nebo odebrat řádek" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Přidat nebo odebrat pole" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Aktualizovat dotaz" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Použít tabulky" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL dotaz na databázi %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Provést dotaz" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Přístup odepřen" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "alespoň jedno ze slov" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "všechna slova" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "přesnou frázi" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "jako regulární výraz" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Výsledky vyhledávání pro „%s“ %s:" -#: db_search.php:239 +#: db_search.php:242 #, php-format msgid "%1$s match inside table %2$s" msgid_plural "%1$s matches inside table %2$s" @@ -523,30 +524,30 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -554,63 +555,63 @@ 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:289 +#: db_search.php:292 msgid "Search in database" msgstr "Vyhledávání v databázi" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Slova nebo hodnoty, které chcete vyhledat (zástupný znak: „%“):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Najít:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Slova jsou oddělena mezerou („ “)." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "V tabulkách:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Uvnitř pole:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "V databázi nebyly nalezeny žádné tabulky" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "neznámý" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabulka %s byla vyprázdněna" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Pohled %s byl odstraněn" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabulka %s byla odstraněna" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Sledování je zapnuté." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Sledování není zapnuté." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -618,185 +619,186 @@ msgid "" msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Pohled" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikace" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Celkem" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Zaškrtnuté:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Zaškrtnout vše" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Náhled pro tisk" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Vyprázdnit" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Odstranit" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Zkontrolovat tabulku" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimalizovat tabulku" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Opravit tabulku" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyzovat tabulku" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Přidat tabulce předponu" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Změnit tabulce předponu" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Zkopírovat tabulku s předponou" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Datový slovník" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Sledované tabulky" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Databáze" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Poslední verze" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Vytvořeno" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Aktualizováno" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Stav" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Operace" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Odstranit všechny informace o sledování této tabulky" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "zapnuté" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "není zapnuté" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Verze" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Informace o sledování" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Snímek struktury" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Nesledované tabulky" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Sledovat tabulku" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Záznam databáze" @@ -808,16 +810,16 @@ msgstr "Chybný typ!" msgid "Selected export type has to be saved in file!" msgstr "Zvolený export musí být uložen do souboru!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Chybné parametry!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedostatek místa pro uložení souboru %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -825,12 +827,12 @@ msgstr "" "Soubor %s již na serveru existuje, změňte jméno souboru, nebo zvolte " "přepsání souboru." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web server nemá oprávnění uložit výpis do souboru %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Výpis byl uložen do souboru %s." @@ -839,92 +841,92 @@ msgstr "Výpis byl uložen do souboru %s." msgid "Invalid export type" msgstr "Chybný typ exportu" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Hodnota pro sloupec „%s“" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Použít OpenStreetMap jako základní vrstvu" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometrie" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Bod" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Bod %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Přidat bod" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Linka" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Vnější obrys" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Vnitřní obrys" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Přidat linku" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Přidat vnitřní obrys" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Mnohoúhelník" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Přidat mnohoúhelník" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Přidat geometrii" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Výstup" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "Z funkcí zvolte „GeomFromText“ a vložte níže uvedený text jako hodnotu" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -933,21 +935,21 @@ msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Zobrazuji oblíbený dotaz" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Položka byla smazána z oblíbených." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Soubor nelze přečíst" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -956,7 +958,7 @@ msgstr "" "Pokusili jste se importovat soubor s nepodporovanou kompresí (%s). Buďto " "podpora není implementována nebo je vypnuta ve vaší konfiguraci." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -966,27 +968,27 @@ msgstr "" "nebo jeho velikost překročila velikost povolenou v nastavení PHP. Viz [a@./" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Bez potřebné knihovny nelze převést znakovou sadu" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nepodařilo se nahrát pluginy pro import, zkontrolujte prosím vaší instalaci!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Vytvořen oblíbený dotaz %s" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import byl úspěšně dokončen, bylo provedeno %d dotazů." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -994,7 +996,7 @@ msgstr "" "Limit pro běh importu vypršel, prosím odešlete formulář znovu se stejným " "souborem a import bude pokračovat." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1003,23 +1005,23 @@ msgstr "" "znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte " "časové limity v PHP." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Zpět" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin se lépe používá v prohlížeči podporujícím rámce." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Příkaz „DROP DATABASE“ je vypnutý." @@ -1028,7 +1030,7 @@ msgstr "Příkaz „DROP DATABASE“ je vypnutý." msgid "Do you really want to execute \"%s\"?" msgstr "Opravdu si přejete provést „%s“?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte se ZRUŠIT celou databázi!" @@ -1068,7 +1070,7 @@ msgstr "Přidat klíč" msgid "Edit Index" msgstr "Upravit klíč" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Přidat %d polí do klíče" @@ -1086,16 +1088,16 @@ msgstr "Jméno počítače je prázdné!" msgid "The user name is empty!" msgstr "Jméno uživatele je prázdné!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Heslo je prázdné!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Hesla nejsou stejná!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Přidat uživatele" @@ -1112,23 +1114,24 @@ msgstr "Odstraňuji vybrané uživatele" msgid "Close" msgstr "Ukončit" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Upravit" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Živý graf provozu" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Živý graf připojení a procesů" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Živý graf dotazů" @@ -1138,24 +1141,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Celkem" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Ostatní" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1175,7 +1178,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Procesy" @@ -1193,7 +1196,7 @@ msgstr "Dotazů od poslední aktualizace" msgid "Questions (executed statements by the server)" msgstr "Dotazy (příkazy spuštěné na serveru)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Statistika dotazů" @@ -1237,14 +1240,14 @@ msgid "System swap" msgstr "Odkládací oblast" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1296,32 +1299,32 @@ msgstr "Odesláno bajtů" msgid "Bytes received" msgstr "Přijato bajtů" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Připojení" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1335,11 +1338,11 @@ msgstr "%d tabulek" msgid "Questions" msgstr "Dotazy" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Provoz" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Nastavení" @@ -1359,11 +1362,11 @@ msgstr "Přidat graf do mřížky" msgid "Please add at least one variable to the series" msgstr "Prosím přidejte do série alespoň jednu hodnotu" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Žádná" @@ -1462,7 +1465,7 @@ msgstr "Změnit nastavení" msgid "Current settings" msgstr "Aktuální nastavení" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Název grafu" @@ -1549,7 +1552,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Čas" @@ -1643,10 +1646,10 @@ msgstr "" "Selhalo vytvoření grafu z importovaného nastavení. Používám výchozí " "nastavení..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1694,9 +1697,9 @@ msgstr "Použitá proměnná / vzorec" msgid "Test" msgstr "Kontrola" -#: 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 +#: 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 msgid "Cancel" msgstr "Zrušit" @@ -1708,11 +1711,11 @@ msgstr "Nahrávám" msgid "Processing Request" msgstr "Probíhá zpracování požadavku" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Chyba při zpracování požadavku" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Nebyla vybrána žádná databáze." @@ -1724,9 +1727,9 @@ msgstr "Odstraňuji sloupec" msgid "Adding Primary Key" msgstr "Přidávám primární klíč" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1766,15 +1769,15 @@ msgstr "Skrýt klíče" msgid "Show indexes" msgstr "Zobrazit klíče" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Kontrola cizích klíčů:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Zapnutá)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Vypnutá)" @@ -1802,7 +1805,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "Upravit ENUM/SET" @@ -1841,8 +1844,8 @@ msgstr "Zobrazit pole pro dotaz" msgid "No rows selected" msgstr "Nebyl vybrán žádný řádek" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Změnit" @@ -1850,18 +1853,18 @@ msgstr "Změnit" msgid "Query execution time" msgstr "Doba běhu dotazu" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Uložit" @@ -1873,7 +1876,7 @@ msgstr "Skrýt parametry vyhledávání" msgid "Show search criteria" msgstr "Zobrazit parametry vyhledávání" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Zoomovací vyhledávání" @@ -1890,7 +1893,6 @@ msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pro přiblížení označte oblast grafu myší." #: 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 "Klikněte na tlačítko pro návrat do původního stavu." @@ -1918,12 +1920,12 @@ msgstr "Výsledky dotazu" msgid "Data point content" msgstr "Obsah datového bodu" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignorovat" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Kopírovat" @@ -1943,7 +1945,7 @@ msgstr "Zvolte cizí klíč" msgid "Please select the primary key or a unique key" msgstr "Zvolte, prosím, primární nebo unikátní klíč" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Zvolte která pole zobrazit" @@ -2032,7 +2034,7 @@ msgstr "Vytvořit" msgid "Change Password" msgstr "Změnit heslo" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Více" @@ -2123,63 +2125,63 @@ msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "pro" @@ -2217,32 +2219,32 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sob" @@ -2358,16 +2360,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "za sekundu" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "za minutu" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "za hodinu" @@ -2390,20 +2392,205 @@ msgstr "" msgid "Font size" msgstr "Velikost písma" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Uložit upravovaná data" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Obnovit pořadí sloupců" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "První" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Předchozí" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Následující" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Poslední" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Počáteční řádek" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Počet řádků" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Režim" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "vodorovném" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "vodorovném (otočené hlavičky)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "svislém" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "Záhlaví opakovat každých %s řádek" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Seřadit podle klíče" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Nastavení" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Zkrácené texty" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Celé texty" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Relační klíč" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Pole pro zobrazení v relacích" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Zobrazit binární obsah" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Zobrazit obsah BLOBu" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Zobrazit binární obsah šestnáctkově (HEX)" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Nepoužít při prohlížení transformace" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Text (WKT)" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Binární (WKB)" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Ukončit" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Počet nemusí být přesný, viz [a@./Documentation.html#faq3_11@Documentation]" +"FAQ 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "v dotazu" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Zobrazeny záznamy" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "celkem" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Dotaz trval %01.4f sekund" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operace s výsledky dotazu" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Náhled pro tisk (s kompletními texty)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Zobrazit graf" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Zobrazit data GIS" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Vytvořit pohled" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Odkaz nenalezen" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Příliš mnoho chyb, některé nebudou zobrazeny." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Soubor nebyl nahrán." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Velikost nahraného souboru přesahuje nastavení upload_max_filesize v php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2411,27 +2598,27 @@ msgstr "" "Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla " "zadána v HTML formuláři." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Soubor byl nahrán jen částečně." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Chybějící adresář pro dočasné soubory." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Chyba při zapisování souboru na disk." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Nahrávání souboru zastaveno rozšířením." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Neznámá chyba při nahrávání souboru." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2439,26 +2626,39 @@ msgstr "" "Chyba při přejmenování nahraného soubory, viz [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Chyba při přesouvání nahraného souboru." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Nahraný soubor nelze přečíst (přesunout)." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Otevřít nové okno phpMyAdmina" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Přihlášení vyžaduje povolené cookies." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Klíče" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikátní" @@ -2471,8 +2671,8 @@ msgstr "Zabaleno" msgid "Cardinality" msgstr "Mohutnost" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Komentář" @@ -2495,128 +2695,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Databáze" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Vložit" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Úpravy" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Sledování" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tabulka se zdá být prázdná!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Databáze se zdá být prázdná!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Dotaz" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Oprávnění" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutiny" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Události" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Návrhář" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Uživatelé" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synchronizace" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binární log" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Proměnné" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Znakové sady" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Rozšíření" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Úložiště" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Chyba" @@ -2644,7 +2844,7 @@ msgstr[0] "Vložen %1$d řádek." msgstr[1] "Vloženy %1$d řádky." msgstr[2] "Vloženo %1$d řádek." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Chyba při vytváření PDF:" @@ -2735,16 +2935,97 @@ 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 +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 +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 +msgid "Value" +msgstr "Hodnota" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Vyhledávání v tabulce" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Upravit/Vložit" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Zvolte pole (alespoň jedno):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Přidat vyhledávací parametry (část dotazu po příkazu „WHERE“):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Záznamů na stránku" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Seřadit podle:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Použít tento sloupec pro přiřazení názvu každému bodu" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Nejvyšší počet vykreslených řádků" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Projít hodnoty cizích klíčů" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Další parametr vyhledávání" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Provést „dotaz podle příkladu“ (zástupný znak: „%“) pro dva různé sloupce" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Provést „dotaz podle příkladu“ (zástupný znak: „%“)" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Projít/Upravit body" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Návod k použití" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "Obnovit zvětšení" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Náhled není k dispozici." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "zvolit" @@ -2763,7 +3044,7 @@ msgstr "Vzhled %s nebyl nalezen!" msgid "Theme path not found for theme %s!" msgstr "Nebyla nalezena platná cesta k vzhledu %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Vzhled" @@ -3053,7 +3334,8 @@ msgstr "Čtyřbajtové číslo v rozsahu -2147483648 až 2147483647" msgid "" "An 8-byte integer, range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807" -msgstr "Osmibajtové číslo v rozsahu -9223372036854775808 až 9223372036854775807" +msgstr "" +"Osmibajtové číslo v rozsahu -9223372036854775808 až 9223372036854775807" #: libraries/Types.class.php:713 msgid "A system's default double-precision floating-point number" @@ -3101,13 +3383,13 @@ msgstr "Výčtový typ, umožňující výběr ze zadaných hodnot" msgid "Cannot connect: invalid settings." msgstr "Nepodařilo se připojit: chybné nastavení." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Vítejte v %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3116,7 +3398,7 @@ msgstr "" "Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "vytvoření by se vám mohl hodit %1$snastavovací skript%2$s." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3132,46 +3414,42 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Při použití funkce Blowfish z knihovny mcrypt došlo k chybě!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Pro použití phpMyAdmina musíte mít zapnutý Javascript" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "Vaše sezení vypršelo, prosím přihlaste se znovu." -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Přihlášení" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Můžete zadat jméno počítače nebo IP adresu a port oddělené mezerou." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Jméno:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Heslo:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Přihlášení vyžaduje povolené cookies." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Přihlášení bez hesla je zakázáno v konfiguraci (viz AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" @@ -3179,13 +3457,13 @@ msgstr "" "Nebyla zaznamenána žádná aktivita po dobu %s sekund, prosím přihlaste se " "znovu" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Nepodařilo se přihlášení k MySQL serveru" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Špatné uživatelské jméno nebo heslo. Přístup odepřen." @@ -3217,7 +3495,7 @@ msgstr "sdílený" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabulky" @@ -3229,13 +3507,13 @@ msgstr "Tabulky" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Navíc" @@ -3260,19 +3538,11 @@ msgstr "Zkontrolovat oprávnění pro databázi „%s“." msgid "Check Privileges" msgstr "Zkontrolovat oprávnění" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "možný pokus o exploit" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "detekován číselný klíč" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Nepodařilo se načíst konfigurační soubor" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3280,12 +3550,12 @@ msgstr "" "Obvykle to je způsobenou chybou v tomto souboru, prosím opravte jakékoliv " "chyby vypsané níže." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepodařilo se nahrát výchozí konfiguraci ze souboru: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3293,204 +3563,190 @@ msgstr "" "V konfiguračním souboru musí být nastaven parametr [code]$cfg" "['PmaAbsoluteUri'][/code]!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Chybné číslo serveru: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "V konfiguraci máte špatnou přihlašovací metodu:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "Pokus o přepsání GLOBALS" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "možný pokus o exploit" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "detekován číselný klíč" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Maximální velikost: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentace" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-dotaz" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL hlásí: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Nepodařilo se připojit k serveru kontrolujícímu SQL!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Vysvětlit SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Bez vysvětlení SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Vytvořit PHP kód" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Obnovit" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Bez kontroly SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Zkontrolovat SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Upravit tento dotaz na této stránce" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Upravit zde" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profilování" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d. %b %Y, %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dnů, %s hodin, %s minut a %s sekund" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Chybějící parametr:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "První" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Předchozí" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Následující" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Poslední" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Přejít na databázi „%s“." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnost %s je omezena známou chybou, viz %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Klikněte pro přepnutí" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Procházet váš počítač:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zvolte soubor z adresáře pro upload na serveru %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Adresář určený pro upload souborů nemohl být otevřen" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Nebyl zvolen žádný soubor pro nahrání" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Spustit" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Vytisknout" @@ -3520,8 +3776,8 @@ msgid "Closed" msgstr "Uzavřené" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Vypnuto" @@ -3662,9 +3918,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Původní" @@ -3884,10 +4140,6 @@ msgstr "Schovat akce při zobrazení struktury tabulky" msgid "Show binary contents as HEX by default" msgstr "Zobrazení binárního obsah šestnáctkově (HEX) jako výchozí" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Zobrazit binární obsah šestnáctkově (HEX)" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Zobrazit přehled databází jako seznam namísto rozbalovacího menu" @@ -3944,7 +4196,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Časový limit běhu skriptu" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Uložit jako soubor" @@ -3953,7 +4205,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formát" @@ -4057,7 +4309,7 @@ msgid "MIME type" msgstr "MIME typ" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relace" @@ -5638,9 +5890,9 @@ msgstr "Vyžaduje povolené kontrolování SQL" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Heslo" @@ -5926,14 +6178,6 @@ msgstr "" msgid "Details..." msgstr "Podrobnosti..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Počet nemusí být přesný, viz [a@./Documentation.html#faq3_11@Documentation]" -"FAQ 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -5941,18 +6185,18 @@ msgstr "" "Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Změnit heslo" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Žádné heslo" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Heslo znovu" @@ -5973,22 +6217,22 @@ msgstr "Vytvořit databázi" msgid "Create" msgstr "Vytvořit" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Nemáte oprávnění" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Název" @@ -6146,25 +6390,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Převod znakové sady:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s z větve %2$s" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "žádná větev" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Revize Gitu" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "zapsal %2$s dne %1$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "vytvořil %2$s dne %1$s" @@ -6283,182 +6527,37 @@ msgstr "Parametry pro výstupní formát:" msgid "Language" msgstr "Jazyk" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Uložit upravovaná data" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Obnovit pořadí sloupců" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Počáteční řádek" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Počet řádků" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Režim" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "vodorovném" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "vodorovném (otočené hlavičky)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "svislém" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "Záhlaví opakovat každých %s řádek" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Seřadit podle klíče" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Nastavení" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Zkrácené texty" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Celé texty" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Relační klíč" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Pole pro zobrazení v relacích" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Zobrazit binární obsah" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Zobrazit obsah BLOBu" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Nepoužít při prohlížení transformace" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Text (WKT)" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Binární (WKB)" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Řádek byl smazán" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Ukončit" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "v dotazu" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Zobrazeny záznamy" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "celkem" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Dotaz trval %01.4f sekund" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operace s výsledky dotazu" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Náhled pro tisk (s kompletními texty)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Zobrazit graf" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Zobrazit data GIS" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Vytvořit pohled" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Odkaz nenalezen" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Informace o verzi" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Domovský adresář pro data" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Společná část cesty pro všechny soubory obsahující data InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Soubor s daty" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Krok automatického zvětšování" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "Velikost o kterou je zvětšen soubor s daty, pokud je zaplněný." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Velikost vyrovnávací paměti" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6466,79 +6565,79 @@ msgstr "" "Velikost vyrovnávací paměti, kterou InnoDB používá pro vyrovnávací paměť dat " "a klíčů tabulek." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Vyrovnávací paměť" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Stav InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Využití vyrovnávací paměti" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "stránek" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Volných stránek" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Změněných stránek" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Stránek obsahujících data" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Stránek určených k uvolnění" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Zpracovávaných stránek" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Zamčených stránek" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Aktivita vyrovnávací paměti" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Požadavků na zápis" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Požadavků na čtení" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Výpadků při čtení" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Čekání na zápis" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Výpadků při čtení v %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Čekání na zápis v %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Velikost ukazatele na data" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6546,11 +6645,11 @@ msgstr "" "Výchozí velikost ukazatele v bajtech, která bude použita pro vytváření " "MyISAM tabulek příkazem CREATE TABLE, pokud není uvedeno MAX_ROWS." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Automatický režim obnovy" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6558,11 +6657,11 @@ msgstr "" "Režim automatické obnovy poškozených MyISAM tabulek. Nastavuje se parametrem " "--myisam-recover při spouštění serveru." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Maximální velikost dočasných souborů pro řazení" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6571,11 +6670,11 @@ msgstr "" "Maximální velikost dočasných souborů, které smí MySQL použít při obnově " "klíčů (při REPAIR TABLE, ALTER TABLE nebo LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Maximální velikost dočasných souborů při vytváření klíčů" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6584,11 +6683,11 @@ msgstr "" "Pokud by byl soubor pro vytváření MyISAM klíče byl větší než zde uvedená " "hodnota, použije se pomalejší metoda vyrovnávací paměti klíčů." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Vláken pro opravování" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6596,11 +6695,11 @@ msgstr "" "Pokud je tato hodnota větší než 1, jsou při obnově nebo řazení klíčů " "v MyISAM tabulkách klíče vytvářeny paralelně (každý klíč vlastním vláknem)." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Velikost paměti pro řazení" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6608,11 +6707,11 @@ msgstr "" "Paměť, která je alokována při řazení MyISAM klíčů během jejich vytváření " "příkazem CREATE INDEX nebo ALTER TABLE nebo opravování příkazem REPAIR TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Velikost vyrovnávací paměti klíčů" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6621,11 +6720,11 @@ msgstr "" "velikost je 32MB. Zde alokovaná paměť se používá pouze pro vyrovnávací paměť " "stránek klíčů." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Velikost vyrovnávací paměti záznamu" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6635,11 +6734,11 @@ msgstr "" "ukládání dat tabulky. Výchozí velikost je 32MB. Tato pamět se používá k " "ukládání změn souborů zpracovávaných dat (.xtd) a ukazatelů řádků (.xtr)." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Velikost vyrovnávací paměti logů" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6647,11 +6746,11 @@ msgstr "" "Množství paměti alokované pro vyrovnávací pamět transakčního logu, která se " "využívá pro dočasné ukládání dat transakčního logu. Výchozí velikost je 16MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Hranice záznamového souboru" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6659,11 +6758,11 @@ msgstr "" "Velikost, jaké musí transakční log dosáhnout předtím, než je vytvořen nový " "soubor. Východzí velikost je 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Velikost vyrovnávací paměti transakcí" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6671,11 +6770,11 @@ msgstr "" "Velikost vyrovnávací paměti logu souhrných transakcí (vytváří se 2 " "vyrovnávací paměti). Výchozí velikost je 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Četnost vytváření kontrolních bodů" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6683,11 +6782,11 @@ msgstr "" "Množství dat zapsaných do logu transakcí předtím, než dojde k vytvoření " "kontrolního bodu. Výchozí velikost je 24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Hranice datového záznamu" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6699,11 +6798,11 @@ msgstr "" "proměnné tedy může být zvýšena, aby se zvýšilo celkové množství dat, které " "může být uloženo v databázi." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Hranice odpadu" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6711,11 +6810,11 @@ msgstr "" "Procentuální podíl odpadu v souboru datového logu předtím, než je soubor " "zhuštěn. Tato hodnota se může pohybovat mezi 1 a 99. Výchozí hodnota je 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Velikost vyrovnávací paměti logu" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6725,27 +6824,27 @@ msgstr "" "velikost je 256MB. Vyrovnávací paměť se alokuje pro každé vlákno, ale pouze " "pokud toto vlákno potřebuje zapsat datový log." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Velikost nárůstu souboru s daty" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Velikost nárůstu souborů se zpracovávanými daty (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Velikost nárůstu souboru řádků" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Velikost nárůstu souboru ukazatelů řádku (.xtr)." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Počet souborů s logy" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6756,7 +6855,7 @@ msgstr "" "systém udržovat. Pokud množství logů překročí tuto hodnotu, budou staré " "soubory vymazány. Jinak jsou soubory přejmenovány a označeny vyšším číslem." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6765,11 +6864,11 @@ msgstr "" "Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase " "XT%s." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Související odkazy" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "Blog PrimeBase XT, který píše Paul McCullagh" @@ -6816,14 +6915,14 @@ msgstr "Vypisuji data pro tabulku" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Událost" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definice" @@ -6881,14 +6980,14 @@ msgstr "Zobrazit MIME typy" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Počítač" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Vygenerováno" @@ -7093,21 +7192,12 @@ msgstr "Pohledy" msgid "Export contents" msgstr "Exportovat obsah" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Otevřít nové okno phpMyAdmina" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Nebyla nalezena žádná data zobrazení GIS." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "Pokus o přepsání GLOBALS" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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ů)." @@ -7206,12 +7296,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Jméno tabulky" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Názvy polí" @@ -7279,93 +7369,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funkce" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Skrýt" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binární" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binární - neupravujte" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "soubor z adresáře pro upload" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Upravit/Vložit" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Pokračovat ve vkládání s %s řádky" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "a poté" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Vložit jako nový řádek" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Vložit jako nový řádek a ignorovat chyby" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Zobrazit dotaz pro vložení" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Návrat na předchozí stránku" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Vložit další řádek" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Návrat na tuto stránku" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Upravit následující řádek" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Hodnota" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" @@ -7380,32 +7454,32 @@ msgstr "Žádná" msgid "Convert to Kana" msgstr "Převést na Kanu" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Z" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Na" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Provést" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Přidat tabulce předponu" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Přidat předponu" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 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:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Žádná změna" @@ -7615,84 +7689,84 @@ msgstr "Znovu nahrát navigační rám" msgid "This format has no options" msgstr "Tento formát nemá žádná nastavení" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "není v pořádku" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Zapnuto" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Obecné funkce relací" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Zobrazení funkcí" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Vytváření PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Zobrazuji komentáře polí" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Transformace při prohlížení" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Podívejte se prosím do dokumentace, jak aktualizovat informace o polích v " "tabulce column_comments" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Oblíbený SQL dotaz" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL historie" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Trvalé nedávné tabulky" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Trvalé nastavení procházení" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Uživatelská nastavení" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Stručný návod pro zapnutí rozšířených funkcí:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Vytvořte potřebné tabulky pomocí skriptu examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Vytvořte uživatele pma a přidělte mu oprávnění na tyto tabulky." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7700,12 +7774,12 @@ msgstr "" "Zapněte rozšířené funkce v konfiguračním souboru (config.inc.php), můžete se inspirovat v config.sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Prosím přihlašte se znovu , aby se projevily změny v konfiguračním souboru." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "žádný popisek" @@ -7713,7 +7787,7 @@ msgstr "žádný popisek" msgid "Slave configuration" msgstr "Nastavení podřízeného" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Změnit nebo přenastavit nadřízený server" @@ -7727,13 +7801,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Jméno uživatele" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -7746,7 +7820,7 @@ msgid "Slave status" msgstr "Stav podřízeného" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Proměnná" @@ -7762,38 +7836,38 @@ msgstr "" "V tomto seznamu jsou zobrazeny jen podřízené servery spuštěné s parametrem --" "report-host=host_name." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Přidat replikačního uživatele pro podřízený server" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Použít textové pole" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Jakýkoliv počítač" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokální" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Použít tabulku Host" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7809,7 +7883,7 @@ msgstr "Vytvořit heslo" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7840,88 +7914,89 @@ msgstr "Byla vytvořena událost %1$s." 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:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Upravit událost" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Chyba při zpracování požadavku" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Podrobnosti" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Název události" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Typ události" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Změnit na %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Spustit v" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Spustit každých" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Počátek" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Konec" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Při dokončení zachovat" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Zadavatel" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: 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č\"" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Musíte zadat jméno události" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Musíte zadat platný interval pro událost." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Musíte zadat platnou dobu spuštění události." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Musíte zadat správný typ události." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "Musíte zadat definici události." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Nová" @@ -7954,7 +8029,7 @@ msgstr "" "„mysqli“." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Chybný typ rutiny: „%s“" @@ -7973,69 +8048,69 @@ msgstr "Byla změněna rutina %1$s." msgid "Routine %1$s has been created." msgstr "Byla vytvořena rutina %1$s." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Upravit rutinu" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Jméno rutiny" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parametry" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Směr" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Délka/Množina" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Přidat parametr" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Odstranit poslední parametr" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Návratový typ" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Návratová délka/hodnoty" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Možnosti návratové hodnoty" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Je deterministická" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Typ zabezpečení" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "Přístup k SQL datům" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Musíte zadat jméno rutiny" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "„%s“ je chybný směr parametru." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8043,19 +8118,19 @@ msgstr "" "Musíte zadat parametr „Délka/Hodnoty“ pro parametry typu ENUM, SET, VARCHAR " "nebo VARBINARY." -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Musíte zadat definici rutiny." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8063,18 +8138,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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Výsledek spuštění rutiny %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Spustit rutinu" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Parametry rutiny" @@ -8092,36 +8167,36 @@ msgstr "Byla změněna spoušť %1$s." msgid "Trigger %1$s has been created." msgstr "Byla vytvořena spoušť %1$s." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Upravit spoušť" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Název spouště" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Spouštění" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Musíte zadat jméno spouště" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Musíte zadat platné časování spouště" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Musíte zadat platnou událost pro spoušť" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Musíte zadat platné jméno tabulky" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Musíte zadat definici spouště." @@ -8205,7 +8280,7 @@ msgstr "Nejsou zde žádné události k zobrazení." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8214,7 +8289,7 @@ msgstr "Tabulka %s neexistuje!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8222,7 +8297,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Prosím, nastavte souřadnice pro tabulku %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8233,27 +8308,27 @@ msgstr "Schéma databáze %s - Strana %s" msgid "This page does not contain any tables!" msgstr "Tato stránka neobsahuje žádné tabulky!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "Chyba při vytváření schématu: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Relační schéma" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Obsah" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Vlastnosti" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Další" @@ -8361,7 +8436,7 @@ msgstr "Neznámý jazyk: %1$s." msgid "Current Server" msgstr "Aktuální server" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Zdrojová databáze" @@ -8379,7 +8454,7 @@ msgstr "Vzdálený server" msgid "Difference" msgstr "Rozdíly" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Cílová databáze" @@ -8398,7 +8473,7 @@ msgstr "Spustit SQL dotaz(y) na serveru %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Vyčistit" @@ -8407,11 +8482,11 @@ msgstr "Vyčistit" msgid "Columns" msgstr "Pole" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 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" @@ -8506,7 +8581,7 @@ msgstr "" "Kontrolování SQL nemohlo být spušteno. Prosím ověřte, jestli máte požadovaná " "rozšíření PHP, jak je popsáno v %sdokumentaci%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "Je zapnuté sledování %s." @@ -8532,8 +8607,8 @@ msgstr "" "například: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Klíč" @@ -8583,13 +8658,13 @@ msgstr "Žádná" msgid "As defined:" msgstr "Dle zadání:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primární" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Fulltext" @@ -8602,17 +8677,17 @@ msgstr "první" msgid "after %s" msgstr "po %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Přidat %s polí" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Musíte přidat alespoň jedno pole." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Úložiště" @@ -8620,41 +8695,6 @@ msgstr "Úložiště" msgid "PARTITION definition" msgstr "Definice PARTITION" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Vyhledávání v tabulce" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Zvolte pole (alespoň jedno):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Přidat vyhledávací parametry (část dotazu po příkazu „WHERE“):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Záznamů na stránku" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Seřadit podle:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Projít hodnoty cizích klíčů" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Provést „dotaz podle příkladu“ (zástupný znak: „%“)" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8803,11 +8843,11 @@ msgstr "" msgid "Manage your settings" msgstr "Spravujte svoje nastavení" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Nastavení bylo uloženo" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8820,7 +8860,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Nepodařilo se uložit nastavení" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8849,7 +8889,7 @@ msgstr "Porovnávání pro toto připojení k serveru" msgid "Appearance Settings" msgstr "Nastavení vzhledu" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Více nastavení" @@ -8869,9 +8909,9 @@ msgstr "Verze software" msgid "Protocol version" msgstr "Verze protokolu" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Uživatel" @@ -9005,126 +9045,126 @@ 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:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Žádné databáze" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "Filtrovat databáze podle jména" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Filtrovat tabulky podle jména" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Nová tabulka" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Prosím vyberte databázi" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Zobrazit/Skrýt levé menu" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Uložit rozmístění" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Vytvořit relaci" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Znovu načíst" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Nápověda" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Pravoúhlé spoje" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Přímé spoje" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Zachytávat na mřížku" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Vše malé/velké" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Přepnout malé/velké" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Přepnout zobrazení relací" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export souřadnic pro PDF schéma" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Vytvořit dotaz" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Přesun menu" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Skrýt/Zobrazit vše" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Skrýt/Zobrazit tabulky bez relací" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Počet tabulek" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Odstranit relaci" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Relační operátor" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Kromě" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "poddotaz" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Přejmenovat na" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Nové jméno" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Sloučit" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Zapnuté parametry" @@ -9136,51 +9176,51 @@ msgstr "Stránka byla vytvořena" msgid "Page creation failed" msgstr "Vytvoření stránky selhalo" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Stránka" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Importovat ze zvolené stránky" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Exportovat na zvolenou stránku" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Vytvořit novou stránku a exportovat na ní" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Název nové stránky: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Exportovat/Importovat v měřítku" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "doporučené" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Chyba: relace již existuje." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Chyba: relace nebyla přidána." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Relace FOREIGN KEY byla vytvořena" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Interní relace vytvořena" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relace smazána" @@ -9192,51 +9232,51 @@ msgstr "Chyba při ukládání souřadnic pro Návrháře." msgid "Modifications have been saved" msgstr "Změny byly uloženy" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Nepodařilo se uložit nastavení, odeslaný formulář obsahuje chyby" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Nepodařilo se nahrát konfiguraci" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Nastavení obsahuje neplatná data pro některé položky." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Přejete si načíst zbývající nastavení?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Uloženo: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importovat ze souboru" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Načíst z úložiště v prohlížeči" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Nastavení bude načteno z lokálního úložiště ve vašem prohlížeči." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Nemáte žádná uložená nastavení!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Tato funkce není vaším prohlížečem podporována" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Sloučit se současným nastavením" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9245,36 +9285,36 @@ msgstr "" "Více věcí můžete nastavit úpravou config.inc.php, např. použitím " "%sNastavovacího skriptu%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Uložit do úložiště prohlížeče" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Nastavení bude uloženo do lokálního úložiště prohlížeče." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Již uložené nastavení bude přepsáno!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "Můžete vymazat vaše nastavení a vrátit se k výchozím hodnotám." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importovat soubory" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Všechno" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabulka nenalezena nebo není nastavena v %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Soubor neexistuje" @@ -9282,17 +9322,17 @@ msgstr "Soubor neexistuje" msgid "Select binary log to view" msgstr "Zvolte binární log pro zobrazení" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Soubory" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Zobrazit zkrácené dotazy" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Zobrazit celé dotazy" @@ -9308,7 +9348,7 @@ msgstr "Pozice" msgid "Original position" msgstr "Původní pozice" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informace" @@ -9316,7 +9356,7 @@ msgstr "Informace" msgid "Character Sets and Collations" msgstr "Znakové sady a porovnávání" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -9324,24 +9364,24 @@ msgstr[0] "%1$d databáze byla úspěšně zrušena." msgstr[1] "%1$d databáze byly úspěšně zrušena." msgstr[2] "%1$d databází bylo úspěšně zrušeno." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statistiky databází" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Replikace nadřízeného" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Replikace podřízeného" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Zobrazit podrobnosti" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9353,154 +9393,154 @@ msgstr "" msgid "Storage Engines" msgstr "Úložiště" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Export databází" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Moduly" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Začátek" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Rozšíření" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Modul" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Knihovna" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Verze" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Autor" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Licence" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "vypnuto" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Všechna oprávnění kromě GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Umožňuje měnit strukturu existujících tabulek." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje měnit a rušit uložené procedury." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Umožňuje vytvářet nové databáze a tabulky." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Umožňuje vytvářet uložené procedury." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Umožňuje vytvářet nové tabulky." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Umožňuje vytvářet dočasné tabulky." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvářet, rušit a přejmenovávat účty uživatelů." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Umožňuje vytvářet nové pohledy." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Umožňuje mazat data." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Umožňuje odstranit databáze a tabulky." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Umožňuje odstranit tabulky." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Umožňuje plánovat úlohy pomocí plánovače" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Umožňuje spouštět uložené procedury." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Umožňuje importovat a exportovat data z/do souborů na serveru." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Umožňuje přidávat uživatele a oprávnění bez znovunačítání tabulek " "s oprávněními." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Umožňuje vytvářet a odstraňovat klíče." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Umožňuje vkládat a přepisovat data." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Umožňuje zamknout tabulku pro aktuální vlákno." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Omezuje počet nových připojení, která může uživatel vytvořit za hodinu." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Omezuje, kolik dotazů může uživatel odeslat serveru za hodinu." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9508,60 +9548,60 @@ msgstr "" "Omezuje, kolik dotazů měnících nějakou tabulku nebo databázi může uživatel " "spustit za hodinu." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omezuje počet současných připojení uživatele." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Umožňuje prohlížet procesy všech uživatelů" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Nemá žádný vliv v této verzi MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Umožňuje znovu načíst nastavení a vyprázdnění vyrovnávacích pamětí MySQL " "serveru." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Umožní uživateli zjistit, kde je hlavní / pomocný server." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Potřebné pro replikaci pomocných serverů." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Umožňuje vybírat data." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Umožňuje přístup k úplnému seznamu databází." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spuštění dotazu SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Umožňuje vypnout server." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9571,161 +9611,161 @@ msgstr "" "pro většinu operací pro správu serveru jako nastavování globálních " "proměnných a zabíjení vláken jiných uživatelů." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Umožňuje vytváření a mazání spouští" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Umožňuje měnit data." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Žádná oprávnění." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Žádná" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Oprávnění pro jednotlivé tabulky" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Poznámka: názvy oprávnění MySQL jsou uváděny anglicky" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Správa" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globální oprávnění" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Oprávnění pro jednotlivé databáze" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Omezení zdrojů" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Poznámka: Nastavení těchto parametrů na 0 (nulu) odstraní omezení." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Přihlašování" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Neměnit heslo" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Nebyl nalezen žádný uživatel." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Uživatel %s již existuje!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Uživatel byl přidán." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Byla aktualizována oprávnění pro %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Byla zrušena práva pro %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pro %s bylo úspěšně změněno." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Odstraňuji %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Musíte vybrat uživatele, které chcete odstranit!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Načítám oprávnění" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Vybraní uživatelé byli úspěšně odstraněni." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Oprávnění byla načtena úspěšně." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Upravit oprávnění" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Zrušit" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Exportovat vše" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Jakýkoliv" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Oprávnění pro všechny uživatele" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Oprávnění pro %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Přehled uživatelů" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Přidělování" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Odstranit vybrané uživatele" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9738,131 +9778,131 @@ 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:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Oprávnění pro jednotlivá pole" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Přidat oprávnění pro databázi" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Přidat oprávnění pro tabulku" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Změnit informace o uživateli / Kopírovat uživatele" -#: server_privileges.php:2363 +#: server_privileges.php:2371 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:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... zachovat původního uživatele." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... smazat původního uživatele ze všech tabulek." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Databáze pro uživatele" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 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:2399 +#: server_privileges.php:2407 #, 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:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Uživatelé mající přístup k „%s“" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "globální" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "závislé na databázi" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "maska" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Uživatel byl přidán." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Neznámá chyba" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Nepodařilo se připojit k nadřízenému %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nepodařilo se zjistit pozici v logu na nadřízeném serveru. Pravděpodobně je " "na něm problém s přístupovými právy." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Nepodařilo se změnit nadřízeného" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Nadřízený server bych úspěšně změněn na %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Tento server je v replikačním procesu nastavený jako nadřízený." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Zobrazit stav nadřízeného" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Zobrazit připojené podřízené" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9871,11 +9911,11 @@ msgstr "" "Tento server není nastaven jako nadřízený v replikačním procesu. Přejete si " "ho nastavit?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Nastavení nadřízeného" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9888,19 +9928,19 @@ msgstr "" "chcete replikovat většinu databází) nebo můžete zvolit opačný přístup - jen " "vybrat databáze, které chcete synchronizovat. Prosím zvolte požadovaný režim:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Replikovat všechny databáze s výjimkou:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Nereplikovat databáze s výjimkou:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Prosím vyberte databáze:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -9908,7 +9948,7 @@ msgstr "" "Nyní, prosím, přidejte následující řádky na konec sekce [mysqld] ve vašem " "souboru my.cnf a poté restartutje MySQL server." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -9917,82 +9957,82 @@ msgstr "" "Prosím klikněte na tlačítko po restartování MySQL serveru. Poté byste měli " "vidět zprávu informující vás že server je nastaven jako nadřízený" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "SQL vlákno pro podřízený server neběží!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "IO vlákno pro podřízený server neběží!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Server je nastaven jako podřízený v replikačním procesu. Přejete si:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Zobrazit tabulku se stavem podřízených" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Synchronizovat databáze s nadřízeným" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Ovládání podřízeného:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Kompletně spustit" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Kompletně zastavit" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Resetovat podřízený server" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Spustit jen SQL vlákno" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Zastavit jen SQL vlákno" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Spustit jen IO vlákno" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Zastavit jen IO vlákno" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Práce s chybami:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Přeskakování chyb může vést k rozdílným datům na nadřízeném a podřízeném " "serveru!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Přeskočit současnou chybu" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Přeskočit dalších" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "chyb." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10001,12 +10041,12 @@ msgstr "" "Tento server není nastaven jako podřízený v replikačním procesu. Přejete si " "ho nastavit?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Vlákno %s bylo úspěšně zabito." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10014,115 +10054,115 @@ msgstr "" "phpMyAdminovi se nepodařilo ukončit vlákno %s. Pravděpodobně jeho běh již " "skončil." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Obslužné rutiny" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Vyrovnávací paměť dotazů" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Počet vláken" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Dočasná data" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Odložené inserty" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Vyrovnávací paměť klíčů" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Použité výběry" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Řazení" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Koordinátor transakcí" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Zavřít všechny tabulky" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Zobrazit otevřené tabulky" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Zobrazit podřízené servery" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Zobrazit stav podřízených serverů" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Vyprázdnit vyrovnávací paměť dotazů" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Stav serveru" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Všechny stavové proměnné" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Monitor" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Poradce" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Obnovovací frekvence: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filtry" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Obsahující slovo:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Zobrazit jen hodnoty s upozorněním" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filtrovat podle kategorie..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Zobrazit neformátované hodnoty" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Související odkazy:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Spustit analýzu" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Návod" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10130,7 +10170,7 @@ msgstr "" "Poradce vám může doporučit změny v nastavení serveru analýzou stavových " "proměnných." -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10140,7 +10180,7 @@ msgstr "" "jednoduchých výpočtů a základních pravidel, která nemusí nutně platit pro " "váš systém." -#: server_status.php:920 +#: server_status.php:919 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 " @@ -10150,7 +10190,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:922 +#: server_status.php:921 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 " @@ -10161,31 +10201,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:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Dotazů od spuštění: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Údaj" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Síťový provoz od spuštění: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10193,17 +10233,17 @@ msgstr "" "Tento server pracuje jako nadřízený i podřízený v " "replikačním procesu." -#: server_status.php:1078 +#: server_status.php:1077 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:1080 +#: server_status.php:1079 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:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10211,11 +10251,11 @@ msgstr "" "Pro více informací o stavu replikace se podívejte do sekce replikace." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Stav replikace" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10223,46 +10263,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Přijato" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Odesláno" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "maximum současných připojení" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Nepovedených pokusů" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Přerušené" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Příkaz" -#: server_status.php:1320 +#: server_status.php:1319 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:1321 +#: server_status.php:1320 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:1322 +#: server_status.php:1321 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 " @@ -10272,16 +10312,16 @@ msgstr "" "binlog_cache_size a musely použít dočasný soubor pro uložení příkazů " "transakce." -#: server_status.php:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 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:1325 +#: server_status.php:1324 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 " @@ -10292,18 +10332,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Počet vytvořených dočasných souborů." -#: server_status.php:1327 +#: server_status.php:1326 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:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10311,7 +10351,7 @@ msgstr "" "Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba " "(pravděpodobně duplicitní klíč)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10319,23 +10359,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Počet řádků zapsaných pomocí INSERT DELAYED." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Počet provedených příkazů FLUSH." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Počet interních příkazů COMMIT." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Počet požadavků na smazání řádku." -#: server_status.php:1334 +#: 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 " @@ -10344,7 +10384,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:1335 +#: 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, " @@ -10354,7 +10394,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:1336 +#: server_status.php:1335 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." @@ -10362,7 +10402,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:1337 +#: server_status.php:1336 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 " @@ -10372,7 +10412,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:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10380,7 +10420,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:1339 +#: 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 " @@ -10392,7 +10432,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:1340 +#: server_status.php:1339 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 " @@ -10402,35 +10442,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:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Počet interních příkazů ROLLBACK." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Počet požadavků na aktualizaci řádku." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Počet požadavků na vložení řádku." -#: server_status.php:1344 +#: server_status.php:1343 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:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Počet změněných stránek." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Počet volných stránek." -#: server_status.php:1348 +#: 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 " @@ -10439,7 +10479,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:1349 +#: server_status.php:1348 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 " @@ -10451,11 +10491,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Celková velikost InnoDB bufferů, ve stránkách." -#: server_status.php:1351 +#: 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." @@ -10463,7 +10503,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:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10471,11 +10511,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:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Počet provedených logických čtení." -#: server_status.php:1354 +#: 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." @@ -10483,7 +10523,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:1355 +#: server_status.php:1354 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 " @@ -10496,55 +10536,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:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisů provedených do InnoDB bufferu." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Počet provedených synchronizací fsync()." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Počet nevyřízených synchronizací fsync()." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Počet nevyřízených čtení." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Počet nevyřízených zápisů." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Velikost přečtených dat, v bajtech." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Počet provedených čtení dat." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Počet provedených zápisů dat." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Velikost zapsaných dat, v bajtech." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -10552,35 +10592,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Počet požadavků na zápis do logovacího souboru." -#: server_status.php:1369 +#: server_status.php:1368 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:1370 +#: server_status.php:1369 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Počet nevyřízených synchronizací logovacích souborů." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Počet nevyřízených zápisů do logovacích souborů." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Počet bajtů zapsaných do logovacího souboru." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Počet vytvořených stránek." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10588,51 +10628,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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Počet přečtených stránek." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Počet zapsaných stránek." -#: server_status.php:1378 +#: server_status.php:1377 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:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet řádků odstraněných z InnoDB tabulek." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet řádků vložených do InnoDB tabulek." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Počet řádků přečtených z InnoDB tabulek." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Počet řádků aktualizovaných v InnoDB tabulkách." -#: server_status.php:1387 +#: 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." @@ -10640,7 +10680,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:1388 +#: 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." @@ -10648,7 +10688,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:1389 +#: server_status.php:1388 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 " @@ -10657,15 +10697,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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "Procento využití vyrovnávací paměti klíčů (vypočítaná hodnota)" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10675,7 +10715,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:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10683,22 +10723,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:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 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:1397 +#: server_status.php:1396 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 " @@ -10708,17 +10748,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:1398 +#: server_status.php:1397 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:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10726,19 +10766,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Počet otevřených souborů." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Počet aktuálně otevřených tabulek." -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10748,19 +10788,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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Velikost volné paměti ve vyrovnávací paměti dotazů." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Počet zásahů vyrovnávací paměti dotazů." -#: server_status.php:1407 +#: server_status.php:1406 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:1408 +#: 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 " @@ -10772,7 +10812,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:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10780,19 +10820,19 @@ msgstr "" "Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli " "nastavení query_cache_type)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Počet dotazů ve vyrovnávací paměti dotazů." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Celkový počet bloků ve vyrovnávací paměti dotazů." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikace." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10800,12 +10840,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10813,7 +10853,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:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10821,38 +10861,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 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:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 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:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -10861,23 +10901,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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Počet řazení, které byly omezeny rozsahem." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Počet řazených řádek." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -10888,7 +10928,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:1429 +#: server_status.php:1428 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 " @@ -10898,11 +10938,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Počet aktuálně otevřených připojení." -#: server_status.php:1431 +#: server_status.php:1430 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,47 +10953,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:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "Úspěšnost vyrovnávací paměti vláken (vypočítaná hodnota)" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Počet vláken, která nespí." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Spustit monitor" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Návod/Nastavení" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Ukončit upravování grafů" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Přidat graf" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Upravit/Uspořádat grafy" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Obnovovací frekvence" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Sloupce grafu" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Uspořádání grafů" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -10961,15 +11001,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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Obnovit na výchozí hodnotu" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Instrukce monitoru" -#: server_status.php:1633 +#: server_status.php:1632 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 +11022,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:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10994,11 +11034,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:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Používání monitoru:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11008,7 +11048,7 @@ msgstr "" "můžete přidat další grafy, změnit obnovovací frekvenci nebo přesunout či " "odstranit grafy." -#: server_status.php:1655 +#: server_status.php:1654 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 " @@ -11020,11 +11060,11 @@ msgstr "" "nahrána tabulka sloučených dotazů, kde můžete zvolit libovolný dotaz k další " "analýze." -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Poznámka:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11036,79 +11076,79 @@ msgstr "" "vybírat krátké časové období a záznam vypnout poté co již monitorování " "nebudete potřebovat." -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Předdefinované grafy" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Stavové proměnné" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Vyberte série:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Obvykle monitorované" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "nebo zadejte jméno proměnné:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Zobrazit jako rozdíl" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Vynásobit" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Přidat jednoty" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Přidat tuto sérii" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Odstranit série" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Série v grafu:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Statistiky záznamů" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Zvolený časový rozsah:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Stáhnout jen příkazy SELECT, INSERT, UPDATE a DELETE" -#: server_status.php:1747 +#: server_status.php:1746 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:1752 +#: server_status.php:1751 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:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Výsledky jsou sloučeny podle textu dotazu." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Analýza dotazu" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11116,7 +11156,7 @@ msgstr[0] "%d sekunda" msgstr[1] "%d sekundy" msgstr[2] "%d sekund" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11124,110 +11164,110 @@ msgstr[0] "%d minuta" msgstr[1] "%d minuty" msgstr[2] "%d minut" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Nepodařilo se připojit ke zdrojové databázi" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Nepodařilo se připojit k cílové databázi" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Databáze '%s' neexistuje." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Synchronizace struktury" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Synchronizace dat" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "zde není" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Rozdíly ve struktuře" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Rozdíl mezi daty" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Přidat pole" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Odstranit pole" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Změnit pole" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Odstranit klíče" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Aplikovat klíče" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Aktualizovat řádky" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Vložit řádky" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Chcete odstranit všechny stávající řídky z cílových tabulek?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Provést vybrané změny" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Synchronizovat databáze" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Vybrané cílové tabulky byly synchronizovány se zdrojovými." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Cílová databáze byla synchronizována se zdrojovou" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Spuštěné dotazy" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Zadat ručně" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Současné připojení" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Z nastavení: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11235,19 +11275,19 @@ msgstr "" "Cílová databáze bude kompletně synchronizována se zdrojovou. Zdrojová nebude " "nijak změněna." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Nastavení proměnné selhalo" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Proměnné a nastavení serveru" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Hodnota sezení" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Globální hodnota" @@ -11587,153 +11627,153 @@ msgstr "" msgid "Wrong data" msgstr "Chybná data" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Pro procházení databáze je použit oblíbený dotaz „%s\"." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Opravdu si přejete vykonat následující příkaz?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Zobrazuji jako PHP kód" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Proběhlo zkontrolování SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Výsledek SQL dotazu" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Vygeneroval" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s klíči v tabulce „%s\"" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Název" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabulka %1$s byla úspěšně změněna" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "Vybraná pole byla úspěšně přesunuta." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Pruhový" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Sloupcový" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Čárový" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Křivkový" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Koláčový" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Složený" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Název grafu" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "Osa X:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Série:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Popis osy X:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "Hodnoty X" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Popis osy Y:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Hodnoty Y" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Tabulka %s již existuje!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Byla vytvořena tabulka %1$s." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Export tabulky" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Zobrazit GIS data" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Šířka" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Výška" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Název sloupce" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Žádný --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Prostorový sloupec" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Znovu vykreslit" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Uložit do souboru" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Jméno souboru" @@ -11749,28 +11789,28 @@ msgstr "Klíč nelze přejmenovat na „PRIMARY“!" msgid "No index parts defined!" msgstr "Nebyla zadána žádná část klíče!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Přidat klíč" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Upravit klíč" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Jméno klíče:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(„PRIMARY“ musí být jméno pouze primárního klíče!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Typ klíče:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Přidat %s polí do klíče" @@ -11793,253 +11833,253 @@ msgstr "Tabulka %s byla přesunuta do %s." msgid "Table %s has been copied to %s." msgstr "Tabulka %s byla zkopírována do %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Jméno tabulky je prázdné!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Změnit pořadí tabulky podle" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(po jednom)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Přesunout tabulku do (databáze.tabulka):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Parametry tabulky" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Přejmenovat tabulku na" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopírovat tabulku do (databáze.tabulka):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Přepnout na zkopírovanou tabulku" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Údržba tabulky" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmentovat tabulku" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Vyrovnávací paměť pro tabulku %s byla vyprázdněna" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Vyprázdnit vyrovnávací paměť pro tabulku („FLUSH“)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Odstranit data nebo tabulku" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Vyprázdnit tabulku (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Odstranit tabulku (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Údržba oddílů" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Oddíl %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analyzovat" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Zkontrolovat" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimalizovat" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Přestavět" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Opravit" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Zrušit dělení" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Zkontrolovat integritu odkazů:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Zobrazuji tabulky" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Využití místa" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efektivní" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Statistika řádků" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "statický" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dynamický" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Délka řádku" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Velikost řádku" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Další automatický klíč" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Chyba při vytváření cizího klíče na %1$s (zkotrolujte typ pole)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Interní relace" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Interní relace není potřebná pokud existuje stejná relace pomocí FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Omezení cizího klíče" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Prostorový" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Odlišné hodnoty" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Přidat primární klíč" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Přidat unikátní klíč" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Přidat prostorový klíč" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Přidat fulltextový klíč" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Žádná" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Pole %s byla odstraněno" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "V tabulce %s byl vytvořen primární klíč" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Na poli %s byl vytvořen klíč" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Zobrazit více operací" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "Přesunout pole" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "Přesuňte sloupce tažením nahoru nebo dolů." -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Upravit pohled" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Zobrazit relace" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Navrhnout strukturu tabulky" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Přidat sloupec" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Na konci tabulky" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Na začátku tabulky" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Vytvořit klíč na  %s polích" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "používá oddíly" @@ -12190,66 +12230,37 @@ msgstr "Sledovat tyto příkazy pro úpravu dat:" msgid "Create version" msgstr "Vytvořit verzi" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Provést „dotaz podle příkladu“ (zástupný znak: „%“) pro dva různé sloupce" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Další parametr vyhledávání" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Použít tento sloupec pro přiřazení názvu každému bodu" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Nejvyšší počet vykreslených řádků" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Projít/Upravit body" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Návod k použití" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "Obnovit zvětšení" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Získejte další témata vzhledu!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Dostupné MIME typy" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME typy zobrazené kurzívou nemají vlastní transformační funkci" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Dostupné transformace" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Popis" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nemáte dostatečná práva na provedení této akce!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Přístup byl změněn." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Jméno pohledu" @@ -13165,7 +13176,7 @@ msgid "" "MySQL." msgstr "" "Vyrovnávací paměť vláken je vypnutá, což způsobuje větší zátěž při nových " -"připojení k MySQL." +"připojeních k MySQL." #: libraries/advisory_rules.txt:359 msgid "Enable the thread cache by setting {thread_cache_size} > 0." @@ -13372,13 +13383,13 @@ msgid "" "fine. See also this blog entry" msgstr "" -"Obzvláště na systémech s hodně zápisy do InnoDB je vhodne nastavit " -"innodb_log_file_size na 25%% {innodb_buffer_pool_size}. Na druhou stranu čím " -"větší je hodnota, tím déle bude trvat obnova databáze v případě problému, " -"takže není vhodné mít tuto hodnotu nastaveno na více než 256 MiB. Prosím " -"uvědomte si, že tato hodnota nemůže být přímo změněna. Musí být ukončen " -"server, odstraněny záznamy Inno DB a až poté změněna hodnota v my.cnf a " -"znovu spuštěn server. Poté zkontrolujte chybové záznamy MySQL, jestli " +"Obzvláště na systémech s hodně zápisy do InnoDB je vhodné nastavit " +"innodb_log_file_size na 25%% {innodb_buffer_pool_size}. Na druhou stranu, " +"čím větší je hodnota, tím déle bude trvat obnova databáze v případě " +"problému, takže není vhodné mít tuto hodnotu nastaveno na více než 256 MiB. " +"Prosím uvědomte si, že tato hodnota nemůže být přímo změněna. Musí být " +"ukončen server, odstraněny záznamy InnoDB a až poté změněna hodnota v my.cnf " +"a znovu spuštěn server. Poté zkontrolujte chybové záznamy MySQL, jestli " "všechno proběhlo v pořádku. Více viz zápisek v blogu" @@ -13419,8 +13430,8 @@ msgstr "" "informací naleznete v tomto článku. " "Prosím uvědomte si, že tato hodnota nemůže být přímo změněna. Musí být " -"ukončen server, odstraněny záznamy Inno DB a až poté změněna hodnota v my." -"cnf a znovu spuštěn server. Poté zkontrolujte chybové záznamy MySQL, jestli " +"ukončen server, odstraněny záznamy InnoDB a až poté změněna hodnota v my.cnf " +"a znovu spuštěn server. Poté zkontrolujte chybové záznamy MySQL, jestli " "všechno proběhlo v pořádku. Více viz zápisek v blogu" diff --git a/po/cy.po b/po/cy.po index 356d8e2436..2afe30f8b9 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh \n" @@ -17,21 +17,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Dangos pob" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Rhif tudalen:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -41,58 +41,58 @@ msgstr "" "ffenest y rhiant, neu bod gosodiadau diogelwch eich porwr yn gwrthod " "caniatáu diweddariadau traws-ffenest." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Ewch" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Enw allweddol" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Disgrifiad" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Defnyddiwch y gwerth hwn" @@ -110,88 +110,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Sylw cronfa ddata: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Sylwadau tabl" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Colofn" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Diofyn" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Cysylltu i" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Sylwadau" @@ -200,14 +201,14 @@ msgstr "Sylwadau" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Na" @@ -220,122 +221,122 @@ msgstr "Na" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ie" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Dangos dadlwythiad (sgema) y gronfa ddata" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Dewis Pob" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Dad-ddewis Pob" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Mae enw'r gronfa ddata'n wag!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Cafodd cronfa ddata %s ei hailenwi i %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Cafodd y gronfa ddata %s ei chopïo i %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Ailenwch y gronfa ddata i" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Tynnwch y gronfa ddata" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Cafodd cronfa ddata %s ei gollwng." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Dilëwch y gronfa ddata (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Copïwch y gronfa ddata i" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Strwythur yn unig" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Strwythur a data" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Data yn unig" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Defnyddiwch CREATE DATABASE cyn copïo" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Ychwanegwch %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Ychwanegwch cyfyngiadau" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Newidiwch i'r gronfa ddata a gopïwyd" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Coladiad" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -344,59 +345,59 @@ msgstr "" "Cafodd storfa ffurfwedd phpMyAdmin ei dadweithredu. Pwyswch %syma%s i " "ddarganfod pam." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Golygu neu allforio sgema perthynol" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabl" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Rhesi" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Maint" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "ar ddefnydd" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Cread" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Diweddariad diwethaf" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Gwiriad diwethaf" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -407,118 +408,118 @@ msgstr[1] "%s tabl" msgid "You have to choose at least one column to display" msgstr "Mae'n rhaid dewis o leiaf un golofn i'w dangos" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" msgstr "adeiladwr gweledol" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Trefnu" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Esgynnol" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Disgynnol" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Dangos" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Meini prawf" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "And" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Or" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Addasu" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Ychwanegu/Dileu rhesi meini prawf" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Ychwanegu/Dileu colofnau" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Ymholiad Diweddaru" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Defnyddiwch Dablau" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Ymholiad SQL ar gronfa ddata %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Cyflwyno Ymholiad" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Mynediad wedi'i wrthod" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "o leiaf un o'r geiriau" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "pob gair" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "y cymal union" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "fel mynegiad arferol (regular expression)" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Canlyniadau chwilio am \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -526,97 +527,97 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Cyfanswm: %s cydwedd" msgstr[1] "Cyfanswm: %s cydwedd" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Chwilio yn y gronfa ddata" -#: db_search.php:292 +#: db_search.php:295 #, 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:297 +#: db_search.php:300 msgid "Find:" msgstr "Darganfod:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Caiff geiriau eu gwahanu gan nod bwlch (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Tu fewn tabl(au):" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Tu fewn colofn:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "anhysbys" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Cafodd tabl %s ei wagu" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Cafodd golwg %s ei ollwng" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Cafodd tabl %s ei ollwng" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Mae tracio'n weithredol" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Nid yw tracio'n weithredol" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -624,187 +625,188 @@ msgid "" msgstr "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Dangos" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Dyblygiad" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Swm" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Gyda'r dewis:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Dewis Pob" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Gwiriwch dablau â gorbenion" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Allforio" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Argraffu golwg" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Gwagu" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Gollwng" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Gwirio tabl" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimeiddio tabl" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Trwsio tabl" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Dadansoddi tabl" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Rename table to" msgid "Replace table prefix" msgstr "Ailenwi tabl i" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Geiriadur Data" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Tablau a draciwyd" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Cronfa ddata" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Fersiwn diweddaraf" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Crëwyd" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Diweddarwyd" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Statws" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Gweithred" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "gweithredol" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "ddim yn weithredol" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Fersiynau" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Adroddiad tracio" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Ciplun strwythur" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Tablau heb dracio" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Tracio tabl" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Log cronfa ddata" @@ -818,18 +820,18 @@ msgstr "Allforio" msgid "Selected export type has to be saved in file!" msgstr "Mae'n rhaid cadw math yr allbwn hwn mewn ffeil!" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Routines" msgid "Bad parameters!" msgstr "Rheolweithiau" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Lle annigonol i gadw'r ffeil %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -837,12 +839,12 @@ msgstr "" "Mae'r ffeil %s yn bodoli ar y gweinydd yn barod. Newidiwch enw'r ffeil neu " "gwiriwch yr opsiwn trosysgrifo." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Nid oes gan y gweinydd gwe yr hawl i gadw'r ffeil %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." @@ -853,102 +855,102 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." msgid "Invalid export type" msgstr "Allforio" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Routines" msgid "Add a point" msgstr "Rheolweithiau" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Terfynwyd llinellau gan" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "Ychwanegwch cyfyngiadau" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new server" msgid "Add an inner ring" msgstr "Ychwanegwch weinydd newydd" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add a new server" msgid "Add geometry" msgstr "Ychwanegwch weinydd newydd" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -957,21 +959,21 @@ msgstr "" "Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth" "%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Dangos clustnod" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Cafodd y clustnod ei ddileu." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Nid oedd modd darllen y ffeil hon." -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -980,7 +982,7 @@ msgstr "" "Fe geisioch lwytho ffeil gyda chywasgiad sydd heb ei gynnal (%s). Naill ai " "bod dim cynhaliaeth ar gyfer hwn neu mae eich ffurfwedd wedi ei analluogi." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -991,55 +993,55 @@ msgstr "" "ganiatáu gan eich ffurfwedd PHP. Gweler See [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Nid oedd modd llwytho ategynnau mewnforio, gwiriwch eich arsefydliad!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Clustnodi %s a grëwyd" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" "Gorffennodd y mewnforiad yn llwyddiannus, gyda %d ymholiad wedi'u gweithredu." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Nôl" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi." @@ -1049,7 +1051,7 @@ msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi." msgid "Do you really want to execute \"%s\"?" msgstr "A ydych chi wir am" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Rydych am DINISTRIO cronfa ddata gyfan!" @@ -1099,7 +1101,7 @@ msgstr "Indecs" msgid "Edit Index" msgstr "Golygu'r rhes nesaf" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s column(s)" msgid "Add %d column(s) to index" @@ -1120,16 +1122,16 @@ msgstr "Mae enw'r gwesteiwr yn wag!" msgid "The user name is empty!" msgstr "Mae enw'r defnyddiwr yn wag!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Mae'r cyfrinair yn wag!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Nid yw'r cyfrineiriau'n debyg!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1150,25 +1152,26 @@ msgstr "" msgid "Close" msgstr "Cau" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Golygu" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Dewis Gweinydd" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy #| msgid "Show insert query" msgid "Live query chart" @@ -1180,24 +1183,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Cyfanswm" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1219,7 +1222,7 @@ msgstr "Dewis Gweinydd" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Prosesau" @@ -1237,7 +1240,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -1288,14 +1291,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1355,32 +1358,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1398,11 +1401,11 @@ msgstr "%s tabl" msgid "Questions" msgstr "Fersiynau" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1428,11 +1431,11 @@ msgstr "Snap i'r grid" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Dim" @@ -1533,7 +1536,7 @@ msgstr "Nodweddion perthynas cyffredinol" msgid "Current settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1627,7 +1630,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Amser" @@ -1737,10 +1740,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Mewnforio" @@ -1798,9 +1801,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "Diddymu" @@ -1816,11 +1819,11 @@ msgstr "llwytho" msgid "Processing Request" msgstr "Prosesau" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Dim cronfeydd data wedi'u dewis." @@ -1832,9 +1835,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "" @@ -1890,18 +1893,18 @@ msgstr "Indecsau" msgid "Show indexes" msgstr "Dangos grid" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgctxt "BLOB repository" #| msgid "Enabled" msgid "(Enabled)" msgstr "Galluogwyd" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1941,7 +1944,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1986,8 +1989,8 @@ msgstr "Dangos ymholiad mewnosod" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Newid" @@ -1997,18 +2000,18 @@ msgstr "Newid" msgid "Query execution time" msgstr "Gweithrediad SQL" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Cadw" @@ -2024,7 +2027,7 @@ msgstr "mewn ymholiad" msgid "Show search criteria" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2076,12 +2079,12 @@ msgstr "Gweithrediadau canlyniadau ymholiad" msgid "Data point content" msgstr "Datganiad diffiniad data" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Anwybyddu" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2103,7 +2106,7 @@ msgstr "Dewis Allwedd Estron" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Dewis colofn i'w dangos" @@ -2196,7 +2199,7 @@ msgstr "Generadu" msgid "Change Password" msgstr "Newid cyfrinair" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mo" msgid "More" @@ -2295,63 +2298,63 @@ msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Rhag" @@ -2392,32 +2395,32 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sad" @@ -2533,16 +2536,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "" @@ -2563,70 +2566,293 @@ msgstr "" msgid "Font size" msgstr "Maint ffont" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete columns" +msgid "Restore column order" +msgstr "Ychwanegu/Dileu colofnau" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Dechrau" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Cynt" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Nesaf" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Diwedd" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of columns" +msgid "Number of rows" +msgstr "Nifer y colofnau" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mo" +msgid "Mode" +msgstr "Llu" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "llorweddol" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "llorweddol (penawdau wedi cylchdroi)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "fertigol" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Gweithredu ymholiad a glustnodwyd" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Trefnu gan allwedd" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Opsiynau" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Testunau Rhannol" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Testunau Llawn" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Allwedd perthynol" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Colofn dangosydd perthynol" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Dangos cynnwys deuaidd" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Dangos cynnwys BLOB" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Dangos cynnwys deuaidd fel HEX" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Trawsffurfiad porwr" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Lladd" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "mewn ymholiad" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Yn dangos rhesi" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "cyfanswm" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Cymerodd yr ymholiad %01.4f eiliad" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Gweithrediadau canlyniadau ymholiad" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Argraffu golwg (gyda thestunau llawn)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Dangos sgema PDF" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +#| msgid "Create version" +msgid "Create view" +msgstr "Crëwch fersiwn" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Methu â darganfod y cysylltiad" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Ffolder dros dro ar goll." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Methu ag ysgrifennu i'r ddisg." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Cafodd y lanlwythiad ei atal gan estyniad." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Gwall anhysbys wrth lanlwytho ffeil." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Mae'n rhaid bod cwcis wedi'u galluogi heibio'r pwynt hwn." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indecsau" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unigryw" @@ -2639,8 +2865,8 @@ msgstr "Paciwyd" msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Sylw" @@ -2663,130 +2889,130 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Cronfeydd Data" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Gweinydd" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Strwythur" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Mewnosod" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Gweithrediadau" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Tracio" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Mae'r gronfa ddata yn ymddangos yn wag!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Ymholiad" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Breintiau" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rheolweithiau" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Digwyddiadau" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Dyluniwr" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Defnyddiwr" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Cydamseru" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Log deuaidd" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Newidynnau" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Setiau nod" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Peiriannau" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Gwall" @@ -2811,7 +3037,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rhes wedi'i hychwanegu." msgstr[1] "%1$d rhes wedi'u hychwanegu." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2906,16 +3132,106 @@ 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 +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 +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 +msgid "Value" +msgstr "Gwerth" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Chwilio" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Mewnosod" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "in query" +msgid "Additional search criteria" +msgstr "mewn ymholiad" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +#| msgid "PHP extension to use" +msgid "How to use" +msgstr "Estyniad PHP i'w ddefnyddio" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Ailosod" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Dim llwybr delwedd dilys ar gael ar gyfer thema %s." -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Dim rhagolwg ar gael" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "cymerwch e" @@ -2934,7 +3250,7 @@ msgstr "Heb ddarganfod thema ddiofyn %s!" msgid "Theme path not found for theme %s!" msgstr "Heb ddarganfod llwybr thema ar gyfer thema %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3231,13 +3547,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Methu â chysylltu: gosodiadau annilys" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Croeso i %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3246,7 +3562,7 @@ msgstr "" "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:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3262,44 +3578,38 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Mae'n rhaid bod cwcis wedi'u galluogi heibio'r pwynt hwn." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Mewngofnodwch" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Gallwch gyflwyno enw'r gwesteiwr / cyfeiriad IP a'r porth gan eu gwahanu gan " "fwlch." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Gweinydd:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Enw defnyddiwr:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Cyfrinair:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Dewis Gweinydd" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Mae'n rhaid bod cwcis wedi'u galluogi heibio'r pwynt hwn." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3307,19 +3617,19 @@ msgstr "" "Nid oes hawl mewngofnodi heb gyfrinair. Dyma'r gosodiad yn eich ffurfwedd " "(gweler AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Dim gweithredoedd o fewn %s eiliad; mewngofnodwch eto." -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Methu â mewngofnodi i'r gweinydd MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Enw defnyddiwr/cyfrinair anghywir. Mynediad wedi'i wrthod." @@ -3353,7 +3663,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tablau" @@ -3365,13 +3675,13 @@ msgstr "Tablau" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Gorbenion" @@ -3398,253 +3708,223 @@ msgstr "" msgid "Check Privileges" msgstr "Gwirio Breintiau" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Failed to write file to disk." msgid "Failed to read configuration file" msgstr "Methu ag ysgrifennu i'r ddisg." -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Indecs gweinydd annilys: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Dylech uwchraddio i %s %s neu'n well." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Uchaf: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dogfennaeth" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "Ymholiad SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "Dywedodd MySQL: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Methu â chysylltu i'r gweinydd MySQL" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Esbonio SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Sgipio Esbonio SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Heb God PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Creu Cod PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Adfywio" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Sgipio Dilysu SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Dilysu SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Golygu mewnol yr ymholiad hwn" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Mewnol" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Proffilio" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Sul" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y am %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s diwrnod, %s awr, %s munud a %s eiliad" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rheolweithiau" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Dechrau" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Cynt" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Nesaf" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Diwedd" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Neidio i gronfa ddata "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Pwyso i ddewis" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 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 " "lanwlythwyd" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Argraffu" @@ -3676,8 +3956,8 @@ msgid "Closed" msgstr "Cau" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Analluogwyd" @@ -3826,9 +4106,9 @@ msgstr "Adfer gwerth diofyn" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Ailosod" @@ -4042,10 +4322,6 @@ msgstr "Cynnwys pennawd y tabl" msgid "Show binary contents as HEX by default" msgstr "Dangos cynnwys deuaidd fel HEX" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Dangos cynnwys deuaidd fel HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4104,7 +4380,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Cadw fel ffeil" @@ -4113,7 +4389,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Fformat" @@ -4226,7 +4502,7 @@ msgid "MIME type" msgstr "Math MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Perthnasau" @@ -5741,9 +6017,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Cyfrinair" @@ -6030,30 +6306,24 @@ msgstr "" msgid "Details..." msgstr "Manylion..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Newid cyfrinair" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Dim Cyfrinair" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Ail-deipiwch" @@ -6076,22 +6346,22 @@ msgstr "Creu cronfa ddata newydd" msgid "Create" msgstr "Creu" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Dim Breintiau" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Enw" @@ -6275,26 +6545,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "Crëwch fersiwn %s o %s.%s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -6416,400 +6686,238 @@ msgstr "" msgid "Language" msgstr "iaith" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete columns" -msgid "Restore column order" -msgstr "Ychwanegu/Dileu colofnau" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of columns" -msgid "Number of rows" -msgstr "Nifer y colofnau" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mo" -msgid "Mode" -msgstr "Llu" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "llorweddol" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "llorweddol (penawdau wedi cylchdroi)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "fertigol" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Gweithredu ymholiad a glustnodwyd" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Trefnu gan allwedd" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Opsiynau" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Testunau Rhannol" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Testunau Llawn" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Allwedd perthynol" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Colofn dangosydd perthynol" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Dangos cynnwys deuaidd" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Dangos cynnwys BLOB" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Trawsffurfiad porwr" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Cafodd y rhes ei dileu" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Lladd" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "mewn ymholiad" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Yn dangos rhesi" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "cyfanswm" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Cymerodd yr ymholiad %01.4f eiliad" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Gweithrediadau canlyniadau ymholiad" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Argraffu golwg (gyda thestunau llawn)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Dangos sgema PDF" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -#| msgid "Create version" -msgid "Create view" -msgstr "Crëwch fersiwn" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Methu â darganfod y cysylltiad" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Gwybodaeth y fersiwn" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Cyfeiriadur hafan data" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Y rhan gyffredin o lwybr y cyfeiriadur ar gyfer pob ffeil data InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Ffeiliau data" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Cynyddiad awtoestyn" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Maint y pwll byffer" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Pwll Byffer" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Statws InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Defnydd Pwll Byffer" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "tudalennau" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Tudalennau rhydd" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Tudalennau brwnt" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Tudalennau sy'n cynnwys data" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Tudalennau i'w gwacáu" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Tudalennau prysur" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Tudalennau" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Gweithgaredd Pwll Byffer" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Ceisiadau darllen" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Ceisiadau ysgrifennu" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Colledion darllen" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Arosiadau ysgrifennu" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Colledion darllen mewn %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Arosiadau ysgrifennu mewn %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Modd adferiad awtomatig" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Trwsio edafedd" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Trefnu maint y byffer" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Maint yr ystorfa indecs" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Maint yr ystorfa cofnod" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Maint yr ystorfa log" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Trothwy'r ffeil log" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6817,48 +6925,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Maint log y byffer" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Maint tyfu'r ffeil ddata" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Maint tyfu'r ffeil rhes" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Cyfrif ffeiliau log" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6866,20 +6974,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Perthnasau" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6940,14 +7048,14 @@ msgstr "Dadlwytho data ar gyfer y tabl" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Digwyddiad" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7015,14 +7123,14 @@ msgstr "Mathau MIME ar gael" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Gwesteiwr" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Amser Generadu" @@ -7217,21 +7325,12 @@ msgstr "Dangos" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7329,12 +7428,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "" @@ -7403,95 +7502,77 @@ msgstr "Modd cytunedd SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Swyddogaeth" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Cuddio" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Deuaidd" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Deuaidd - peidiwch â golygu" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Mewnosod" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "ac yna" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Mewnosod fel rhes newydd" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Dangos ymholiad mewnosod" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Dychwelyd i'r dudalen flaenorol" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Mewnosod rhes newydd arall" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Dychwelyd i'r dudalen hon" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Golygu'r rhes nesaf" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Gwerth" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7506,36 +7587,36 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fr" msgid "From" msgstr "Gw" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Gyrru" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "A ydych chi wir am" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Dim newid" @@ -7745,90 +7826,90 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Nodweddion perthynas cyffredinol" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Trawsffurfiad porwr" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "" @@ -7836,7 +7917,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7848,13 +7929,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7867,7 +7948,7 @@ msgid "Slave status" msgstr "Statws y caeth" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Newidyn" @@ -7881,38 +7962,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Unrhyw ddefnyddiwr" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Defnyddiwch faes testun" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Unrhyw westeiwr" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lleol" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Y Gwesteiwr Hwn" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Defnyddiwch Dabl Gwesteiwyr" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7926,7 +8007,7 @@ msgstr "Generadu Cyfrinair" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7959,101 +8040,102 @@ msgstr "Cafodd y gronfa ddata %1$s ei chreu." msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Edit server" msgid "Edit event" msgstr "Golygu gweinydd" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prosesau" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." msgid "Details" msgstr "Manylion..." -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Math y digwyddiad" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Math y digwyddiad" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Newid" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Gweithredu ymholiad a glustnodwyd" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Diwedd" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8084,7 +8166,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -8106,117 +8188,117 @@ msgstr "Cafodd golwg %s ei ollwng" msgid "Routine %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Edit server" msgid "Edit routine" msgstr "Golygu gweinydd" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rheolweithiau" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Cysylltiadau uniongyrchol" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Tynnwch y gronfa ddata" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Dychwelyd math" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Actions" msgid "Return options" msgstr "Gweithredoedd" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Return type" msgid "Security type" msgstr "Dychwelyd math" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8238,44 +8320,44 @@ msgstr "Cafodd golwg %s ei ollwng" msgid "Trigger %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new server" msgid "Edit trigger" msgstr "Ychwanegwch weinydd newydd" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "enw gweinydd" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Amser" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Enw tabl annilys" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8383,7 +8465,7 @@ msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8392,7 +8474,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8400,7 +8482,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8413,27 +8495,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "Nid yw ffeil %s yn cynnwys unrhyw id allwedd" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Sgema perthynol" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Tabl cynnwys" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Ychwanegol" @@ -8547,7 +8629,7 @@ msgstr "Iaith anhysbys: %1$s." msgid "Current Server" msgstr "Gweinydd cyfredol" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Cronfa ddata ffynhonnell" @@ -8565,7 +8647,7 @@ msgstr "Gweinydd pell" msgid "Difference" msgstr "Gwahaniaeth" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Cronfa ddata targed" @@ -8584,7 +8666,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Clirio" @@ -8593,11 +8675,11 @@ msgstr "Clirio" msgid "Columns" msgstr "Colofnau" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8679,7 +8761,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8700,8 +8782,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indecs" @@ -8747,13 +8829,13 @@ msgstr "Dim" msgid "As defined:" msgstr "Fel a ddiffiniwyd:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Cynradd" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Testunllawn" @@ -8766,17 +8848,17 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Ychwanegwch %s colofn" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Rydych chi wedi ychwanegu o leiaf un golofn." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Peiriant Storio" @@ -8784,43 +8866,6 @@ msgstr "Peiriant Storio" msgid "PARTITION definition" msgstr "Diffiniad PARTITION" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Chwilio" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8930,13 +8975,13 @@ msgstr "" msgid "Manage your settings" msgstr "Nodweddion perthynas cyffredinol" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Cafodd yr addasiadau eu cadw" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8947,7 +8992,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8978,7 +9023,7 @@ msgstr "Coladiad cysylltiad MySQL" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9004,9 +9049,9 @@ msgstr "Dangos fersiynau" msgid "Protocol version" msgstr "Fersiwn protocol" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Defnyddiwr" @@ -9125,146 +9170,146 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Dim cronfeydd data" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "enw tabl" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "enw tabl" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Crëwch dabl" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Dewiswch gronfa ddata" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Cadw safle" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Crëwch berthynas" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Ail-lwytho" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Cymorth" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Cysylltiadau onglog" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Cysylltiadau uniongyrchol" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Snap i'r grid" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Delete relation" msgid "Toggle relation lines" msgstr "Dilëwch berthynas" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Cyflwynwch yr Ymholiad" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Cuddio/Dangos pob" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Cuddio/Dangos Tablau heb berthynas" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Nifer y tablau" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Dilëwch berthynas" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Perthynas wedi'i ddileu" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Allforio" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "mewn ymholiad" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy #| msgid "Rename view to" msgid "Rename to" msgstr "Ailenwch golwg i" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "Page name" msgid "New name" msgstr "Enw'r dudalen" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Creu" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Actions" msgid "Active options" @@ -9278,59 +9323,59 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "tudalennau" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Mewnforiwch ffeiliau" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a page" msgid "Create a page and export to it" msgstr "Crëwch dudalen" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "Page name" msgid "New page name: " msgstr "Enw'r dudalen" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Gwall: perthynas yn bodoli yn barod." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Gwall: Perthynas heb ei ychwanegu." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Perthynas FOREIGN KEY wedi'i ychwanegu" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Perthynas mewnol wedi'i ychwanegu" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Perthynas wedi'i ddileu" @@ -9342,89 +9387,89 @@ msgstr "Gwall wrth gadw cyfesurynnau ar gyfer y Dyluniwr." msgid "Modifications have been saved" msgstr "Cafodd yr addasiadau eu cadw" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Mewnforiwch ffeiliau" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Mewnforiwch ffeiliau" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Pob" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabl %s heb ei ddarganfod neu heb ei osod mewn %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "" @@ -9432,17 +9477,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Ffeiliau" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -9458,7 +9503,7 @@ msgstr "Safle" msgid "Original position" msgstr "Safle gwreiddiol" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Gwybodaeth" @@ -9466,7 +9511,7 @@ msgstr "Gwybodaeth" msgid "Character Sets and Collations" msgstr "Setiau nod a Choladiadau" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -9474,24 +9519,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Cafodd cronfa ddata %s ei gollwng." msgstr[1] "Cafodd cronfa ddata %s ei gollwng." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Ystadegau cronfeydd data" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Galluogi Ystadegau" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9501,378 +9546,378 @@ msgstr "" msgid "Storage Engines" msgstr "Peiriannau Storio" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Gwylio dadlwythiad (sgema) cronfeydd data" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Dechrau" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Fersiwn" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Analluogwyd" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Dim" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Allforio" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Breintiau" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Breintiau" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "Overview" msgid "Users overview" msgstr "Gorolwg" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9881,140 +9926,140 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "Cafodd golwg %s ei ollwng" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10023,268 +10068,268 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Strwythur yn unig" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Strwythur yn unig" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Adfywio" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Hidlydd" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show only listed databases" msgid "Show only alert values" msgstr "Dangoswch gronfeydd data a restrir yn unig" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show only listed databases" msgid "Show unformatted values" msgstr "Dangoswch gronfeydd data a restrir yn unig" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Perthnasau" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query" msgid "Run analyzer" msgstr "Ymholiad" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Swyddogaethau" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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,117 +10337,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Gorchymyn" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10410,78 +10455,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10489,7 +10534,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10497,42 +10542,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10540,33 +10585,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10575,244 +10620,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Fformat y ffeil a mewnforiwyd" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10820,99 +10865,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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,18 +10965,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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,70 +10984,70 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Nid yw tracio'n weithredol" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Routines" msgid "Add chart" msgstr "Rheolweithiau" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Adfywio" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "Ychwanegu/Dileu colofnau" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Adfer gwerth diofyn" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11011,7 +11056,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11019,18 +11064,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11038,11 +11083,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11050,93 +11095,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Tynnwch y gronfa ddata" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Dewis Tablau" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Enw tabl annilys" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Ychwanegwch weinydd newydd" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Dangos ystadegau" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Dewis Tablau" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "Ymholiad" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11144,7 +11189,7 @@ msgid_plural "%d seconds" msgstr[0] "Eiliad" msgstr[1] "Eiliad" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11152,130 +11197,130 @@ msgid_plural "%d minutes" msgstr[0] "Munud" msgstr[1] "Munud" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy #| msgid "Execute bookmarked query" msgid "Executed queries" msgstr "Gweithredu ymholiad a glustnodwyd" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -11563,183 +11608,183 @@ msgstr "" msgid "Wrong data" msgstr "Dim cronfeydd data" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "A ydych chi wir am" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Dilysu SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "Cafodd cronfa ddata %s ei gollwng." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Maw" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Colofn" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Inline" msgctxt "Chart type" msgid "Spline" msgstr "Mewnol" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Paciwyd" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Teitl yr adroddiad" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Gwerth" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Gwerth" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete columns" msgid "Label column" msgstr "Ychwanegu/Dileu colofnau" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "-dim-" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Cyfrif ffeiliau log" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Cadw fel ffeil" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Page name" msgid "File name" @@ -11757,30 +11802,30 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Print view" msgid "Edit index" msgstr "Argraffu golwg" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11803,266 +11848,266 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Ailenwi tabl i" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy #| msgid "Copy database to" msgid "Delete the table (DROP)" msgstr "Copïwch y gronfa ddata i" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Cynhaliaeth ymraniadau" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Ymraniad %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Dadansoddi" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Gwirio" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimeiddio" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Ailadeiladu" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Trwsio" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Tynnu'r ymraniadu" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "No tables" msgid "Showing tables" msgstr "Dim tablau" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Use this value" msgid "Distinct values" msgstr "Defnyddiwch y gwerth hwn" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show versions" msgid "Show more actions" msgstr "Dangos fersiynau" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add %s column(s)" msgid "Move columns" msgstr "Ychwanegwch %s colofn" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Argraffu golwg" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12225,71 +12270,37 @@ msgstr "Traciwch y datganiadau trin data hyn:" msgid "Create version" msgstr "Crëwch fersiwn" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "in query" -msgid "Additional search criteria" -msgstr "mewn ymholiad" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -#| msgid "PHP extension to use" -msgid "How to use" -msgstr "Estyniad PHP i'w ddefnyddio" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Ailosod" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Cael gafael ar mwy o themâu" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Mathau MIME ar gael" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Disgrifiad" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Enw VIEW" diff --git a/po/da.po b/po/da.po index 73ec473d4c..455bb13cef 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\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" "Language-Team: danish \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Vis alle" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Side nummer:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "overliggende vindue eller din browser blokerer for tvær-vindue opdateringer " "i sikkerhedsindstillingerne." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Udfør" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Nøglenavn" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Beskrivelse" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Brug denne værdi" @@ -106,88 +106,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Database %1$s er oprettet." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Databasekommentar: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Tabel kommentarer" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Kolonnenavn" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Nulværdi" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Standardværdi" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Linker til" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Kommentarer" @@ -196,14 +197,14 @@ msgstr "Kommentarer" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nej" @@ -216,122 +217,122 @@ msgstr "Nej" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ja" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Vis dump (skema) af database" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Ingen tabeller fundet i databasen." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Vælg alle" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Fravælg alle" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Databasenavnet er tomt!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Database %s er blevet omdøbt til %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Database %s er blevet kopieret til %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Omdøb database til" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Fjern database" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Database %s er slettet." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Kopier database til" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Kun strukturen" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Kun data" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Tilføj %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Tilføj AUTO_INCREMENT værdi" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Tilføj begrænsninger" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Skift til den kopierede database" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Tegnsæt (sortering)" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -339,59 +340,59 @@ msgid "" msgstr "" "phpMyAdmin er ikke sat op til at gemme tabel-relationer. Se her %shvorfor%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Editer eller eksporter relations skema" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabel" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Rækker" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Størrelse" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "i brug" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Oprettelse" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Sidste opdatering" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Sidste check" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -402,117 +403,117 @@ msgstr[1] "%s tabeller" msgid "You have to choose at least one column to display" msgstr "Du skal vælge mindst en kolonne der skal vises" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Skift til %svisuel konstruktør%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sorter" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Stigende" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Faldende" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Vis" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriterier" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins (Indsæt)" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Og" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del (Slet)" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Eller" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Ret" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Tilføj/Slet kriterie-række" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Tilføj/Slet kolonner" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Opdater forespørgsel" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Benyt tabeller" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-forespørgsel til database %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Send forespørgsel" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Adgang nægtet" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "mindst et af ordene" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "alle ord" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "den nøjagtige sætning" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "som regulært udtryk" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Søgeresultater for \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -521,93 +522,93 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Slet sammenfald for %s tabellen?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, 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:289 +#: db_search.php:292 msgid "Search in database" msgstr "Søg i databasen" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Ord eller værdier til at søge efter (jokertegn: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Find:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Ord adskilles af mellemrumstegn (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Indeni tabel(ler):" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Indeni kolonne:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Ingen tabeller fundet i databasen" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "ukendt" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s blev tømt" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Visning %s er blevet slettet" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s blev slettet" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Sporing er aktiv." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Sporing er ikke aktiv." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -615,187 +616,188 @@ msgid "" msgstr "" "Viewet har som minimum dette antal rækker. Se venligst %sdokumentationen%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Visning" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikation" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Sum" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Med det markerede:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Vælg alle" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporter" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 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:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Tøm" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Slet" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Tjek tabel" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimer tabel" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Reparer tabel" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyser tabel" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Tilføj præfiks til tabel" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Erstat tabel præfiks" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopier tabel med præfiks" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Data Dictionary" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Sporede tabeller" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Database" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Seneste version" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Oprettet" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Opdateret" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Status" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Handling" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Slet sporingsdata for denne tabel" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "aktiv" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "ikke aktiv" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versioner" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Sporingsrapport" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Øjebliksbillede af struktur" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Ikke-sporede tabeller" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Sporingstabel" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Databaselog" @@ -807,16 +809,16 @@ msgstr "Forkert type!" msgid "Selected export type has to be saved in file!" msgstr "Valgte eksporttype skal gemmes som fil!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Forkerte parametre!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Utilstrækkelig plads til at gemme filen %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -824,12 +826,12 @@ msgstr "" "Filen %s findes allerede på serveren, lav filnavnet om eller tillad at der " "overskrives." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserveren har ikke tilladelse til at gemme filen %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump er blevet gemt i filen %s." @@ -838,86 +840,86 @@ msgstr "Dump er blevet gemt i filen %s." msgid "Invalid export type" msgstr "Ugyldig eksporttype" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Værdi for kolonnen \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Brug OpenStreetMaps som basislag" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Punkt" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Tilføj et punkt" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Linjestreng" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Ydre ring" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Indre ring" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Tilføj en linjestreng" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Tilføj en indre ring" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Polygon" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Tilføj polygon" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Tilføj geometri" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Output" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -925,7 +927,7 @@ msgstr "" "Vælg \"GeomFromText\" fra kolonnen \"Function\" og indsæt strengen nedenfor " "i feltet \"Value\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -935,21 +937,21 @@ msgstr "" "%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " "begrænsning." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Viser bogmærke" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Bogmærket er fjernet." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Filen kunne ikke læses" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -959,7 +961,7 @@ msgstr "" "Understøttelse af denne funktion er ikke implementeret eller ikke slået til " "for din konfiguration." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -970,27 +972,27 @@ msgstr "" "tilladt af din PHP-konfiguration. Se [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Kan ikke konvertere filens tegnsæt uden konverteringsbibliotek for tegnsæt" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Kunne ikke indlæse importplugins, check venligst din installation!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Bogmærke %s oprettet" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen er korrekt gennemført, %d forespørgsler udført." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -998,7 +1000,7 @@ msgstr "" "Script timeout nået, hvis du vil afslutte importen, indsend venligst samme " "fil igen og importen vil blive genoptaget." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1007,24 +1009,24 @@ msgstr "" "normalt at phpMyAdmin ikke vil være i stand til at gennemføre importen med " "mindre du forøger PHP-tidsbegrænsningerne." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Tilbage" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin er mere brugervenlig med en browser, der kan klare frames." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." @@ -1034,7 +1036,7 @@ msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." msgid "Do you really want to execute \"%s\"?" msgstr "Er du sikker på at du vil " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Du er ved at DESTRUERE en komplet database!" @@ -1078,7 +1080,7 @@ msgstr "Tilføj indeks" msgid "Edit Index" msgstr "Redigeringstilstand" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s column(s)" msgid "Add %d column(s) to index" @@ -1097,16 +1099,16 @@ msgstr "Der er intet værtsnavn!" msgid "The user name is empty!" msgstr "Intet brugernavn!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Der er ikke angivet nogen adgangskode" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "De to adgangskoder er ikke ens!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Opret bruger" @@ -1123,23 +1125,24 @@ msgstr "Fjerner valge brugere" msgid "Close" msgstr "Luk" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Ret" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Realtids trafikoversigt" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Realtids forbind./opgave-oversigt" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Realtid forespørgsels-oversigt" @@ -1149,24 +1152,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Andet" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1186,7 +1189,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Processer" @@ -1204,7 +1207,7 @@ msgstr "Spørgsmål siden sidste visning" msgid "Questions (executed statements by the server)" msgstr "Spørgsmål (eksekverede forespørgsler på serveren)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Statistik over forespørgsler" @@ -1249,14 +1252,14 @@ msgid "System swap" msgstr "System swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1308,32 +1311,32 @@ msgstr "Bytes sendt" msgid "Bytes received" msgstr "Bytes modtaget" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Forbindelser" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1349,11 +1352,11 @@ msgstr "%s tabel" msgid "Questions" msgstr "Spørgsmål" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Indstillinger" @@ -1373,11 +1376,11 @@ msgstr "Snap diagram til gitter" msgid "Please add at least one variable to the series" msgstr "Tilføj mindst en variabel til serien" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Ingen" @@ -1477,7 +1480,7 @@ msgstr "Ændre indstillinger" msgid "Current settings" msgstr "Aktuelle indstillinger" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Diagramtitel" @@ -1572,7 +1575,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Tid" @@ -1682,10 +1685,10 @@ msgstr "" "Kunne ikke bygge diagramgitter med den importerede konfiguration. Nulstiller " "til standard konfiguration..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" @@ -1737,9 +1740,9 @@ msgstr "Brugt variabel/formel" msgid "Test" msgstr "Test" -#: 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 +#: 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 msgid "Cancel" msgstr "Annuller" @@ -1751,11 +1754,11 @@ msgstr "Indlæser" msgid "Processing Request" msgstr "Udfører forespørgsel" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Felj i udførsel af forespørgsel" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Ingen databaser valgt." @@ -1767,9 +1770,9 @@ msgstr "Sletter kolonne" msgid "Adding Primary Key" msgstr "Tilføjer primær nøgle" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1809,19 +1812,19 @@ msgstr "Skjul indekser" msgid "Show indexes" msgstr "Vis indekser" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: 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" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Slået til" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1853,7 +1856,7 @@ msgstr "" "Ifølge definitionen på en stored function, skal denne indeholde et RETURN-" "udtryk!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1899,8 +1902,8 @@ msgstr "Vis forespørgselsbox" msgid "No rows selected" msgstr "Ingen rækker valgt" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Ret" @@ -1908,18 +1911,18 @@ msgstr "Ret" msgid "Query execution time" msgstr "Eksekveringstid for forespørgsel" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Gem" @@ -1931,7 +1934,7 @@ msgstr "Skjul søgekriterie" msgid "Show search criteria" msgstr "Vis søgekriterie" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Forstør søgning" @@ -1984,12 +1987,12 @@ msgstr "Forespørgselsresultat operationer" msgid "Data point content" msgstr "Data pointer-størrelse" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Kopi" @@ -2009,7 +2012,7 @@ msgstr "Vælg fremmednøgle" msgid "Please select the primary key or a unique key" msgstr "Vælg venligst den primære nøgle eller en unik nøgle" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Vælg kolonne til visning" @@ -2105,7 +2108,7 @@ msgstr "Generer" msgid "Change Password" msgstr "Ændre adgangskode" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Mere" @@ -2196,63 +2199,63 @@ msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "dec" @@ -2290,32 +2293,32 @@ msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "lør" @@ -2433,16 +2436,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "pr. sekund" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "pr. minut" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "pr. time" @@ -2464,19 +2467,207 @@ msgstr "" msgid "Font size" msgstr "Skriftstørrelse" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Gem redigerede data" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Gendan kolonneorden" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Start" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Forrige" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Næste" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Slut" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Startrække" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Antal rækker" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Tilstand" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "vandret" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "vandret (roterede overskrifter)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "lodret" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "Overskrifter for hver %s rows" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Sorteringsnøgle" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Indstillinger" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Delvise tekster" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Komplette tekster" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Relationel nøgle" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Relationel visningskolonne" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Vis binært indhold" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Vis indhold af BLOB" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Vis binært indhold som HEX" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Browser transformation" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Velkendt tekst" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Velkendt binær" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Dræb (Kill)" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Kan være anslået. Se [a@./Documentation.html#faq3_11@Documentation] FAQ 3.11" +"[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "i forespørgsel" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Viser poster" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "total" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "forepørgsel tog %01.4f sek" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Forespørgselsresultat operationer" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Udskriv (med fulde tekster)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Vis diagram" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Visualiser GIS data" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Opret view" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Link ikke fundet" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Filen var ikke en uploaded fil." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2484,27 +2675,27 @@ msgstr "" "Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-" "formularen." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Den uploadede fil blev kun delvist uploaded." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Mangler en midlertidig mappe." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Kunne ikke skrive fil til disk." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Filupload stoppet af udvidelse." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Ukendt fejl i filupload." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2512,26 +2703,41 @@ msgstr "" "Fejl ved flytning af den uploadede fil, se [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Fejl under flytning af uploaded fil." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Kan ikke læse (flyttet) uploaded fil." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Åbn nyt phpMyAdmin vindue" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Herefter skal cookies være slået til." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unik" @@ -2544,8 +2750,8 @@ msgstr "Pakket" msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kommentar" @@ -2568,130 +2774,130 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Databaser" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktur" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Indsæt" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operationer" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Sporing" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tabel ser ud til at være tom!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Database ser ud til at være tom!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Foresp. via eks" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilegier" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Hændelser" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Bruger" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synkroniser" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binær log" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variable" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Tegnsæt" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Udvidelsesmoduler" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Lagre" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Fejl" @@ -2716,7 +2922,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d række sat ind." msgstr[1] "%1$d rækker sat ind." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Fejl ved oprettelse af PDF:" @@ -2813,16 +3019,100 @@ 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 +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 +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 +msgid "Value" +msgstr "Værdi" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Tabelsøgning" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Rediger/Indsæt" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Vælg mindst een kolonne" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Tilføj søgekriterier (kroppen af \"where\" sætningen):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Rækker pr. side" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Rækkefølge af visning:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Brug denne kolonne til at navngive hvert punkt" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Maksimalt antal plottede rækker" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Bladre i fremmedværdier" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Ekstra søgekriterium" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Kør en \"forespørgsel ved eksempel\" (jokertegn: \"%\") for to forskellige " +"kolonner" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Kør en forespørgsel på felter (jokertegn: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Bladr gennem/rediger punkterne" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Hvordan man bruger" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Nulstil" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Ingen gyldig billedsti for tema %s fundet!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Intet billede til rådighed." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "vælg dette" @@ -2841,7 +3131,7 @@ msgstr "Tema %s ikke fundet!" msgid "Theme path not found for theme %s!" msgstr "Sti til tema ikke fundet for tema %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Tema" @@ -3140,13 +3430,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Kan ikke forbinde: ugyldige indstillinger." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Velkommen til %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3155,7 +3445,7 @@ 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." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3171,44 +3461,38 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Kunne ikke bruge Blowfish fra mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Herefter skal cookies være slået til." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Login" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Du kan angive værtsnavn/IP adresse og port ved at adskille dem med et " "mellemrum." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Brugernavn:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Adgangskode:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Servervalg" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Herefter skal cookies være slået til." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3216,20 +3500,20 @@ msgstr "" "Det er ifølge konfigurationen ikke tilladt at logge ind uden en adgangskode " "(se AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Ingen aktivitet i de seneste %s sekunder eller mere, log venligst ind igen" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Kan ikke logge ind på MySQL-serveren" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Forkert brugernavn/adgangskode. Adgang nægtet." @@ -3261,7 +3545,7 @@ msgstr "delt" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabeller" @@ -3273,13 +3557,13 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Overhead" @@ -3304,19 +3588,11 @@ msgstr "Check privilegier for database "%s"." msgid "Check Privileges" msgstr "Check privilegier" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "muligt sikkerhedshul" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "numerisk tast opfanget" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Kunne ikke indlæse konfigurationsfilen" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3324,12 +3600,12 @@ msgstr "" "Dette betyder ofte, at der er en eller flere syntaksmæssige fejl i den, " "kontroller venligst for fejlen(e) vist herunder." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Kunne ikke indlæse standardkonfiguration fra: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3341,205 +3617,191 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktivet SKAL være sat i din " "konfigurationsfil!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Server indekset %s er ugyldigt" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ugyldigt værtsnavn for server %1$s. Gennemgå venligst din konfiguration." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autorisationsmetode sat i konfiguration:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde opdatere til %s %s eller senere." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "forsøg på overskrivning af GLOBALS" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "muligt sikkerhedshul" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "numerisk tast opfanget" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentation" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-forespørgsel" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL returnerede: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Kunne ikke oprette forbindelse til SQL validator!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Spring over Forklar SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Uden PHP-kode" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Fremstil PHP-kode" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Opdater" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Spring over Valider SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valider SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Åben linje til redigering af forespørgslen" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "I linje" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profilering" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "søn" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %m %Y kl. %H:%M:%S" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dage, %s timer, %s minutter og %s sekunder" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Manglende parameter" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Start" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Forrige" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Næste" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Slut" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Hop til database "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Klik for at skifte" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Gennemse din computer:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vælg fra %s - webserverens upload-mappe:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Mappen du har sat til upload-arbejde kan ikke findes" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Der er ikke nogen filer at uploade" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Udfør" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Print" @@ -3569,8 +3831,8 @@ msgid "Closed" msgstr "Lukket" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Slået fra" @@ -3715,9 +3977,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Nulstil" @@ -3943,10 +4205,6 @@ msgstr "Foreslå tabelstruktur" msgid "Show binary contents as HEX by default" msgstr "Som standard vises binært indhold som HEX" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Vis binært indhold som HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Vis databaser på en liste i stedet for i en valgboks" @@ -4003,7 +4261,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Maksimal eksekveringstid" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Send (download)" @@ -4012,7 +4270,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4116,7 +4374,7 @@ msgid "MIME type" msgstr "MIME-type" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relationer" @@ -5706,9 +5964,9 @@ msgstr "Kræver SQL Validator bliver aktiveret" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Adgangskode" @@ -5997,14 +6255,6 @@ msgstr "" msgid "Details..." msgstr "Detaljer..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Kan være anslået. Se [a@./Documentation.html#faq3_11@Documentation] FAQ 3.11" -"[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6012,18 +6262,18 @@ msgstr "" "Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Ændre adgangskode" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Ingen adgangskode" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Skriv igen" @@ -6044,22 +6294,22 @@ msgstr "Opret ny database" msgid "Create" msgstr "Opret" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Ingen privilegier" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Navn" @@ -6215,26 +6465,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Inkodningskonvertering" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "Opret version %s af %s.%s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -6355,175 +6605,27 @@ msgstr "Formatspecifikke indstillinger:" msgid "Language" msgstr "Sprog" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Gem redigerede data" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Gendan kolonneorden" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Startrække" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Antal rækker" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Tilstand" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "vandret" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "vandret (roterede overskrifter)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "lodret" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Overskrifter for hver %s rows" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Sorteringsnøgle" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Indstillinger" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Delvise tekster" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Komplette tekster" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Relationel nøgle" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Relationel visningskolonne" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Vis binært indhold" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Vis indhold af BLOB" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Browser transformation" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Velkendt tekst" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Velkendt binær" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Rækken er slettet" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Dræb (Kill)" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "i forespørgsel" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Viser poster" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "total" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "forepørgsel tog %01.4f sek" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Forespørgselsresultat operationer" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Udskriv (med fulde tekster)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Vis diagram" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Visualiser GIS data" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Opret view" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Link ikke fundet" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Versionsinformation" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Data hovedmappe" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Den fælles del af stien til mappen med alle InnoDB datafiler." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Datafiler" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Autoextend forøgelse" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6531,11 +6633,11 @@ msgstr "" " Størrelsen på den udvidelse der vil forekomme, når pladsen i en " "autoudvidende tabel udvides fordi den løber fuld." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Buffer pool størrelse" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6543,79 +6645,79 @@ msgstr "" "Størrelse på memorybufferen InnoDB bruger til at mellemlagre data og indeks " "på dens tabeller." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Bufferpool" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB status" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Bufferpoolsforbrug" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "sider" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Frie sider" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Ændrede sider" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Sider med data" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Sider til udskrift" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Travle sider" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Eksklusivt låste (latched) sider" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Bufferpoolaktivitet" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Read-anmodninger" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Write-anmodninger" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Read misses i %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Write waits i %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Data pointer-størrelse" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6623,11 +6725,11 @@ msgstr "" "Standard pointerstørrelse i bytes, til brug ved CREATE TABLE for MyISAM " "tabeller når der ikke er specificeret nogen MAX_ROWS indstilling." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Automatisk genopretnings-modus" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6635,11 +6737,11 @@ msgstr "" "Modus for automatisk genetablering af crashede MyISAM tabeller, som sat via " "--myisam-recover server opstartsindstillingen." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Maksimal størrelse for midlertidige sorteringsfiler" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6649,11 +6751,11 @@ msgstr "" "genetablering af et MyISAM indeks (under REPAIR TABLE, ALTER TABLE, eller " "LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Maksimal størrelse for midlertidige filer ved oprettelse af indeks" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6663,11 +6765,11 @@ msgstr "" "ville være større end ved brug af key cache med størrelsen angivet her, " "foretræk key cache-metoden." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Reparer tråde" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6675,11 +6777,11 @@ msgstr "" "Hvis denne værdi er større end 1, oprettes MyISAM tabel-indeks parallelt " "(hvert indeks i dets egen tråd) under Reparation ved sortering-processen." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Sorteringsbufferstørrelse" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6687,11 +6789,11 @@ msgstr "" "Bufferen der allokeres ved sortering af MyISAM indeks under en REPAIR TABLE " "eller når indeks oprettes med CREATE INDEX eller ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Størrelse af indexcache" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6700,11 +6802,11 @@ msgstr "" "Standardværdien er 32MB. Hukommelsen allokeret her bruges kun til at cache " "indekssider." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Størrelse af postcache" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6714,11 +6816,11 @@ msgstr "" "til at cache tabeldata. Standardværdien er 32MB. Denne hukommelse bruges til " "at cache ændringer til handle data (.xtd) og rækkepointer (.xtr) filer." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Størrelse af logcache" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6726,11 +6828,11 @@ msgstr "" "Mængden af hukommelse allokeret til mellemlageret for transaktionslogdata. " "Standard er 16MB" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Tærskel for logfil" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6738,11 +6840,11 @@ msgstr "" "Størrelsen af en transajktionslog før den ruller over og en ny log oprettes. " "Standardværdien er 16MB" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Størrelse af transaktionsbuffer" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6750,11 +6852,11 @@ msgstr "" "Størrelsen af den globale transaktionslogbuffer (der allokeres 2 buffere af " "denne størrelse). Standard er 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Checkpoint frekvens" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6762,11 +6864,11 @@ msgstr "" "Mængden af data skrevet til transaktionsloggen før et checkpoint udføres. " "Standardværdien er 24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Tærskel for datalog" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6778,11 +6880,11 @@ msgstr "" "denne variabel kan øges for at øge den totale mængde af data, der kan lagres " "i databasen." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Tærskel for garbage" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6790,11 +6892,11 @@ msgstr "" "Procentdelen af utilgængelige data i en datalogfil før den komprimeres. " "Dette er en værdi mellem 1 og 99. Standard er 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Størrelse af logbuffer" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6803,27 +6905,27 @@ msgstr "" "Størrelsen af bufferen for en datalogfil. Standard er 256MB. Der allokeres " "en buffer per tråd, men kun hvis tråden skal skrive en datalog." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Voksestørrelse for datafil" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Voksestørrelsen af handle data filer (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Voksestørrelsen af rækkefil" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Voksestørrelsen af rækkepointerfiler (.xtr)" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Logfilantal" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6834,7 +6936,7 @@ msgstr "" "vedligeholder.Hvis antallet af logs overstiger denne værdi vil gamle logs " "blive slettede eller er de omdøbt og give det næste højere nummer." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6843,11 +6945,11 @@ msgstr "" "Dokumentation og yderliger information om PBXT kan findes på %sPrimeBase XT " "hjemmeside%s" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Relaterede links" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6894,14 +6996,14 @@ msgstr "Data dump for tabellen" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Hændelse" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definition" @@ -6959,14 +7061,14 @@ msgstr "Vis MIME-typer" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Vært" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Genereringstid" @@ -7179,21 +7281,12 @@ msgstr "Views" msgid "Export contents" msgstr "Eksport indhold" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Åbn nyt phpMyAdmin vindue" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Ingen data fundet for GIS visualization." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "forsøg på overskrivning af GLOBALS" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7296,12 +7389,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Tabelnavn" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Kolonnenavne" @@ -7371,93 +7464,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funktion" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Skjul" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binært" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binært - må ikke ændres" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "webserver upload-mappe" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Rediger/Indsæt" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsæt indsættelse med %s rækker" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "og derefter" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Indsæt som ny række" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Indsæt som ny række og ignorer fejl" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Vis indsættelsesforespørgsel" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Tilbage til foregående side" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Indsæt endnu en ny række" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Gå tilbage til denne side" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Rediger næste række" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Værdi" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Indsatte række id: %1$d" @@ -7472,34 +7549,34 @@ msgstr "Ingen" msgid "Convert to Kana" msgstr "Konverter til Kana" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Fra" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Til" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Send" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Tilføj tabelpræfiks" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Tilføj præfiks" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Er du sikker på at du vil " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Ingen ændring" @@ -7709,85 +7786,85 @@ msgstr "Genindlæs navigationsramme" msgid "This format has no options" msgstr "Dette format har ingen indstillinger" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "ikke OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Slået til" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Generelle relationsmuligheder" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Vis muligheder" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Oprettelse af PDFer" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Viser kolonne-kommentarer" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Se venligst dokumentationen for oplysninger om, hvordan du opdaterer din " "column_comments (kolonne-kommentarer) tabel" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "SQL-forespørgsel med bogmærke" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-historik" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Vedvarende senest brugte tabeller" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Vedvarende tabellers UI præference" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Brugerpræferencer" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Hurtige trin for at opsætte avancerede muligheder:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Opret de nødvendige tabeller med examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Opret en pma bruger og giv adgang til disse tabeller." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7795,12 +7872,12 @@ msgstr "" "Aktiver avancerede muligheder i konfigurationfilen (config.inc.php), fx ved at starte med config.sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-login til phpMyAdmin for at indlæse den opdaterede konfigurationsfil." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "ingen beskrivelse" @@ -7808,7 +7885,7 @@ msgstr "ingen beskrivelse" msgid "Slave configuration" msgstr "Slavekonfiguration" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Ændr eller rekonfigurer master server" @@ -7822,13 +7899,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Brugernavn" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -7841,7 +7918,7 @@ msgid "Slave status" msgstr "Slavestatus" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variabel" @@ -7855,38 +7932,38 @@ msgid "" "this list." msgstr "Kun slaver startet med --report-host=host_name er synlige i listen." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Tilføj slave replikationsbruger" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Enhver bruger" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Brug tekstfelt" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Enhver vært" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Denne vært" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Brug tabellen host" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7902,7 +7979,7 @@ msgstr "Generer adgangskode" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7933,88 +8010,89 @@ msgstr "Hændelse %1$s er oprettet." msgid "One or more errors have occured while processing your request:" msgstr "Der er opstået fejl under behandling af anmodningen:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Rediger hændelse" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fejl i udførsel af forespørgsel" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detaljer" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Hændelsesnavn" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Hændelsestype" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Ændr til %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Udfør kl. " -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Udfør hver" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Start" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Slut" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Efter udførsel bevar" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Opretter" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: 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\"" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Du skal angive et hændelsesnavn" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Du skal angive en gyldig intervalværdi for hændelsen." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Du skal angive et gyldigt kørselstidspunkt for hændelsen" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Du skal angive en gyldig type for hændelsen." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "Du skal angive en hændelsesdefinition." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Ny" @@ -8052,7 +8130,7 @@ msgstr "" "eventuelle problemer." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Invalid rutinetype: \"%s\"" @@ -8071,69 +8149,69 @@ msgstr "Rutine \"%1$s\" er blevet ændret." msgid "Routine %1$s has been created." msgstr "Rutine %1$s er oprettet." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Rediger rutine" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Rutinenavn" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parametre" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Retning" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Længde/Værdi*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Tilføj parameter" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Fjern den sidste parameter" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Retur type" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Retur-længde/-værdier" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Retur-indstillinger" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Er deterministisk" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Sikkerhedstype" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "SQL dataadgang" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Du skal angive et rutinenavn" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ugyldig retning \"%s\" givet for parameter." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8141,37 +8219,37 @@ msgstr "" "Du skal angive længde/værdier for rutineparametre af typen ENUM, SET, " "VARCHAR og VARBINARY." -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Du skal angive en rutinedefinition." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Udførelsesresultater af rutine %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Udfør rutine" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Rutineparametre" @@ -8189,38 +8267,38 @@ msgstr "Trigger \"%1$s\" er blevet ændret." msgid "Trigger %1$s has been created." msgstr "Trigger %1$s er oprettet." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Rediger trigger" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Triggernavn" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Tid" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Du skal angive et triggernavn" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Du skal angive et gyldig tidsinterval for denne trigger" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Du skal opgive en gyldig hændelse for denne trigger" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Du skal opgive et gyldigt tabelnavn" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Du skal opgive en triggerdefinition." @@ -8304,7 +8382,7 @@ msgstr "Der er ingen hændelser at vise." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8313,7 +8391,7 @@ msgstr "Tabellen \"%s\" findes ikke!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8321,7 +8399,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Konfigurer venligst koordinaterne for tabel %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8332,27 +8410,27 @@ msgstr "Skema for databasen \"%s\" - Side %s" msgid "This page does not contain any tables!" msgstr "Denne side indeholder ingen tabeller!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "SCHEMA ERROR: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Relationel skematik" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Indholdsfortegnelse" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Attributter" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Ekstra" @@ -8460,7 +8538,7 @@ msgstr "Ukendt sprog: %1$s." msgid "Current Server" msgstr "Aktuel server" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Kildedatabase" @@ -8478,7 +8556,7 @@ msgstr "Ekstern server" msgid "Difference" msgstr "Forskel" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Måldatabase" @@ -8497,7 +8575,7 @@ msgstr "Kør SQL-forespørgsel/forespørgsler på server %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Ryd" @@ -8506,11 +8584,11 @@ msgstr "Ryd" msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Lad alle brugere bruge dette bogmærke" @@ -8607,7 +8685,7 @@ msgstr "" "SQL-validatoren kunne ikke initialiseres. Check venligst at du har de " "nødvendige PHP-udvidelser installeret som beskrevet i %sdokumentationen%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." @@ -8634,8 +8712,8 @@ msgstr "" "escaping eller quotes, ud fra følgende format: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indeks" @@ -8687,13 +8765,13 @@ msgstr "Ingen" msgid "As defined:" msgstr "Som defineret:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primær" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Fuldtekst" @@ -8707,17 +8785,17 @@ msgstr "" msgid "after %s" msgstr "Efter %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Tilføj %s kolonne(r)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Du skal tilføje mindst en kolonne." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Datalager" @@ -8725,41 +8803,6 @@ msgstr "Datalager" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Tabelsøgning" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Vælg mindst een kolonne" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Tilføj søgekriterier (kroppen af \"where\" sætningen):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Rækker pr. side" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Rækkefølge af visning:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Bladre i fremmedværdier" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Kør en forespørgsel på felter (jokertegn: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8909,11 +8952,11 @@ msgstr "" msgid "Manage your settings" msgstr "Administrer dine indstillinger" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Konfigurationen er gemt" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8926,7 +8969,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Kunne ikke gemme konfiguration" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8955,7 +8998,7 @@ msgstr "Servers forbindelsestegnsæt" msgid "Appearance Settings" msgstr "Indstillinger for udseende" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Flere indstillinger" @@ -8975,9 +9018,9 @@ msgstr "Programmelversion" msgid "Protocol version" msgstr "Protokolversion" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Bruger" @@ -9111,130 +9154,130 @@ msgid "" "issues." msgstr "Server med Suhosin.Se %sdocumentation%s for mulige problemer." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Ingen databaser" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "filtrer tabeller efter navn" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "filtrer tabeller efter navn" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Opret tabel" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Vælg en database" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Vis/skjul venstre menu" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Gem position" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Opret relation" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Genindlæs" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Hjælp" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Angulære links" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Direkte links" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Snap til gitter" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Små/store alle" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Skift mellem små/store" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "For at vælge relation, klik :" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Eksporter koordinater for PDF-opstilling" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Opret forespørgsel" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Flyt Menu" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Skjul/Vis alle" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Skjul/Vis tabeller uden relation" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Antal tabeller" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Slet relation" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Relationsoperator" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Undtagen" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "underforespørgsel" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Omdøb til" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Nyt navn" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Sammenstil" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Aktive indstillinger" @@ -9246,51 +9289,51 @@ msgstr "Side er blevet oprettet" msgid "Page creation failed" msgstr "Sideoprettelse fejlede" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Side" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Importer fra valgt side" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Eksporter til valgt side" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Opret en side og eksporter til den" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Nyt sidenavn: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "anbefalet" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Fejl: relation findes allerede." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Fejl: Relation ikke tilføjet." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation tilføjet" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Intern relation tilføjet" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relation slettet" @@ -9302,51 +9345,51 @@ msgstr "Fejl ved lagring af koordinater for Designer." msgid "Modifications have been saved" msgstr "Rettelserne er gemt" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Kan ikke gemme indstillinger, den sendte formular indeholder fejl" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Kunne ikke indlæse konfiguration" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Konfigurationen indejolder ukorrekte data for visse felter." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Vil du importere de resterende indstillinger ?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Gemt den @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importer fra fil" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Import fra browserens lager." -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Indstillinger vil blive importeret fra din browsers lokale lager." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Du har ingen gemte indstillinger!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Denne funktion er ikke understøttet af din browser." -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Flet med aktuel konfiguration" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9355,37 +9398,37 @@ msgstr "" "Du kan sætte flere indstillinger ved at modificere config.inc.php fx ved at " "bruge %sSetup script%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Gem i browserens lager" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Indstillinger vil blive gemt i din browsers lokale lager." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Eksisterende indstillinger vil blive overskrevet!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Du han nulstille alle dine indstillinger og gendanne dem med standardværdier" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importer filer" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Alle" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabel %s findes ikke eller er ikke sat i %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Filen eksisterer ikke" @@ -9393,17 +9436,17 @@ msgstr "Filen eksisterer ikke" msgid "Select binary log to view" msgstr "Vælg binærlog til gennemsyn" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Filer" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Trunker viste forespørgsler" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Vis fuldstændige forespørgsler" @@ -9419,7 +9462,7 @@ msgstr "Position" msgid "Original position" msgstr "Original position" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Information" @@ -9427,7 +9470,7 @@ msgstr "Information" msgid "Character Sets and Collations" msgstr "Tegnsæt og kollationer" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9435,24 +9478,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s databaser er blevet droppet korrekt." msgstr[1] "%s databaser er blevet droppet korrekt." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Databasestatistik" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Master replikation" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Slave replikation" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Slå statistikker til" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9464,154 +9507,154 @@ msgstr "" msgid "Storage Engines" msgstr "Datalagre" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Vis dump (skema) for databaser" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Moduler" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Start" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Udvidelsesmodul" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Modul" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Bibliotek" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Version" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Forfatter" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Licens" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "slået fra" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Inkluderer alle privilegier pånær GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Tillader ændring af strukturen på eksisterende tabeller." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Tillader ændring og sletning af gemte rutiner." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Tillader oprettelse af nye databaser og tabeller." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Tillader oprettelse af gemte rutiner." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Tillader oprettelse af nye tabeller." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Tillader oprettelse af midlertidige tabeller." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillader oprettelse, sletning og omdøbning af brugerkonti." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Tillader oprettelse af nye views." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Tillader sletning af data." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Tillader at droppe databaser og tabeller." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Tillader at droppe tabeller." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Tillader at oprette hændelser til hændelsesskeduleren" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Tillader udførelse af gemte rutiner." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Tillader import af data fra og eksport af data til filer." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillader oprettelse af brugere og privilegier uden at genindlæse privilegie-" "tabellerne." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Tillader at skabe og droppe indeks." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Tillader indsættelse og erstatning af data." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Tillader låsning af tabeller for nuværende tråd." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrænser antallet af nye forbindelser brugeren må åbne pr. time." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrænser antallet af forespørgsler brugeren må sende til serveren pr. time." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9619,58 +9662,58 @@ msgstr "" "Begrænser antallet af kommandoer som ændrer enhver tabel eller database " "brugeren må udføre pr. time." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrænser antallet af samtidige forbindelser brugere må have." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Tillader at se processer for alle brugere" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Har ingen effekt i denne MySQL version." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Tillader genindlæsning af serverindstillinger og tømning af caches." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Giver brugeren rettigheder til at spørge hvor slaves / masters er." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Nødvendigt for replikationsslaverne." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Tillader læsning af data." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Giver adgang til den fuldstændige liste over databaser." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillader udførelse af SHOW CREATE VIEW forespørgsler." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Tillader nedlukning af serveren." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9680,170 +9723,170 @@ msgstr "" "nødvendigt for de fleste administrative operationer som indstilling af " "globale variable eller for at dræbe andre brugeres tråde." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Tillader oprettelse og sletning af triggers" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Tillader ændring af data." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Ingen privilegier." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Ingen" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Tabel-specifikke privilegier" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "NB: Navne på MySQL privilegier er på engelsk" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administration" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globale privilegier" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Database-specifikke privilegier" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Ressourcebegrænsninger" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Bemærk: Indstilling af disse værdier til 0 (nul) fjerner begrænsningen." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Login-information" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Adgangskoden må ikke ændres" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Ingen bruger fundet." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Brugeren %s findes i forvejen!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Du har tilføjet en ny bruger." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har opdateret privilegierne for %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har tilbagekaldt privilegierne for %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Adgangskoden for %s blev korrekt udskiftet." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Ingen brugere valgt til sletning!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Genindlæs privilegierne" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "De valgte brugere er blevet korrekt slettet." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Privilegierne blev korrekt genindlæst." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Ret privilegier" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Tilbagekald" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Eksporter" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Enhver" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Privilegier" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegier" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Brugeroversigt" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Tildel" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Fjern valgte brugere" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Drop databaser der har samme navne som brugernes." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9857,51 +9900,51 @@ msgstr "" "ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" "%s før du fortsætter." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Kolonne-specifikke privilegier" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Tilføj privilegier på følgende database" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Tilføj privileges på følgende tabel" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Ret Login-information / Kopier bruger" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Opret en bruger med samme privilegier og ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... behold den gamle." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... slet den gamle fra brugertabellerne." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9909,81 +9952,81 @@ msgstr "" " ... slet den gamle fra brugertabellerne og genindlæs privilegierne " "efterfølgende." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Database for bruger" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "Opret database med samme navn og tildel alle privilegier" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Tildel alle privilegier på database "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Brugere med adgang til "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "database-specifik" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "jokertegn" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Bruger er blevet tilføjet." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Ukendt fejl" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Ikke muligt at forbinde til master %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Ikke muligt at læse master log position. Muligt rettighedsproblem på master." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Ikke muligt at ændre master" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Master server ændret til %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Denne server er konfigureret som master i en replikationsproces." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Vis master status" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Vis forbundne slaver" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9992,11 +10035,11 @@ msgstr "" "Denne server er ikke konfigureret som master i en replikationsproces. Vil du " "konfigurere den?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Masterkonfiguration" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10010,19 +10053,19 @@ msgstr "" "databaser som standard og tillade kun visse databaser at blive replikeret. " "Vælg tilstand:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Repliker alle databaser; Ignorer:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Ignorer alle databaser; Repliker:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Vælg databaser:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10030,7 +10073,7 @@ msgstr "" "Nu, tilføj de følgende linjer i slutningen af [mysqld] sektionen i din my." "cnf og genstart derefter MySQL serveren." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10040,80 +10083,80 @@ msgstr "" "se en besked, der fortæller, at denne server er konfigureret som " "master." -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread kører ikke!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread kører ikke!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Serveren er konfigureret som slave i en replikationsproces. Vil du:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Se slave status tabel" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Synkroniser databaser med master" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Kontrolslave:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Fuld start" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Fuld stop" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Nulstil slave" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Start kun SQL Thread" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Stop kun SQL Thread" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Start kun IO Thread" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Stop kun IO Thread" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Fejlhåndtering:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Overspringning af fejl kan føre til usynkroniseret master og slave!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Spring over aktuel fejl" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Spring over næste" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "fejl." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10122,127 +10165,127 @@ msgstr "" "Serveren er ikke konfigureret som slave i en replikationsprocess. Vil du konfigurere den?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s blev stoppet." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke dræbe tråden %s. Den er sandsynligvis allerede lukket." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Handler" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Forespørgsel-mellemlager" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Tråde" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Midlertidige data" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Forsinkede inserts" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Nøglemellemlager" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Joins" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Sortering" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Transaktionskoordinator" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Flush (luk) alle tabeller" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Vis åbne tabeller" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Vis slaveværter" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Vis slavestatus" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Tøm forespørgsel-mellemlager" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Runtime-information" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Alle statusvariable" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Monitor" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Rådgiver" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Opdateringsrate: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filtre" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Indeholdende ordet:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Vis kun alert-værdier" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filtrer efter kategori..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Vis uformatterede værdier" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Relaterede links:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Kør analysator" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Instruktioner/Opsætning" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10250,7 +10293,7 @@ msgstr "" "Rådgiversystemer kan give anbefalinger om servervariable ved at analysere " "serverens statusvariable" -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10259,7 +10302,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:920 +#: server_status.php:919 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 " @@ -10269,7 +10312,7 @@ msgstr "" "dokumentationen) og hvordan du annullerer ændringer. Forkert tuning kan have " "en meget negativ effekt på ydeevnen." -#: server_status.php:922 +#: server_status.php:921 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 " @@ -10280,31 +10323,31 @@ msgstr "" "ingen klart synlig forskel var." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Forespørgsler siden startup: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Forespørgsler" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Netværkstrafik siden startup: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10312,17 +10355,17 @@ msgstr "" "Denne MySQL server fungerer som master og slave i en " "replikationsproces." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" "Denne MySQL server fungerer som master i en replikationsproces." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" "Denne MySQL server fungerer som slave i en replikationsproces." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10330,11 +10373,11 @@ msgstr "" "For yderligere information om replikationsstatus på serveren gå til replication section." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Status for replikation" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10342,35 +10385,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Modtaget" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Sendt" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "Maks. samtidige forbindelser" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Mislykkede forsøg" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Afbrudt" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Kommando" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10378,11 +10421,11 @@ msgstr "" "Antallet af forbindelser, som blev aborteret, fordi klienten døde uden at " "lukke forbindelsen rigtigt." -#: server_status.php:1321 +#: server_status.php:1320 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:1322 +#: server_status.php:1321 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 " @@ -10392,17 +10435,17 @@ msgstr "" "overskred værdien for binlog_cache_size og brugte en midlertidig fil til at " "gemme statements fra transaktionen." -#: server_status.php:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 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:1325 +#: server_status.php:1324 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 " @@ -10414,11 +10457,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Hvor mange midlertidige filer mysqld har oprettet." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10426,7 +10469,7 @@ msgstr "" "Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren " "under udførelse af statements." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10434,7 +10477,7 @@ msgstr "" "Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke " "der opstod fejl (sandsynligvis dublerede nøgler)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10442,23 +10485,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Antallet af INSERT DELAYED rækker skrevet." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Antallet af udførte FLUSH statements." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Antallet af interne COMMIT statements." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10468,7 +10511,7 @@ msgstr "" "tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer " "antallet af gange tabeller er blevet opdaget." -#: server_status.php:1335 +#: 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, " @@ -10478,7 +10521,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:1336 +#: server_status.php:1335 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." @@ -10487,7 +10530,7 @@ msgstr "" "er høj, er det en god indikation af at dine forespørgsler og tabeller er " "ordentligt indekserede." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10497,7 +10540,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:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10505,7 +10548,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:1339 +#: 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 " @@ -10517,7 +10560,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:1340 +#: server_status.php:1339 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 " @@ -10529,35 +10572,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:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Antallet af interne ROLLBACK statements." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Antallet af sider der indeholder data (beskidte eller rene)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Antallet af såkaldt beskidte sider." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Antallet af frie sider." -#: server_status.php:1348 +#: 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 " @@ -10567,7 +10610,7 @@ msgstr "" "sider, der i øjeblikket læses eller skrives eller som ikke kan flushes eller " "fjernes af andre årsager." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10579,11 +10622,11 @@ msgstr "" "også beregnes som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på buffer pool, i sider." -#: server_status.php:1351 +#: 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." @@ -10592,7 +10635,7 @@ msgstr "" "forespørgsel skal scanne en større del af en tabel men i tilfældig " "rækkefølge." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10600,11 +10643,11 @@ msgstr "" "Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når " "InnoDB laver en sekventiel fuld tabelscanning." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Antallet af logiske read anmodninger InnoDB har lavet." -#: server_status.php:1354 +#: 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." @@ -10612,7 +10655,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:1355 +#: server_status.php:1354 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 " @@ -10626,55 +10669,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:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antallet af skrivninger til InnoDB buffer poolen." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Antallet af fsync() operationer indtil nu." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Nuværende antal ventende fsync() operationer." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Nuværende antal af ventende reads." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Nuværende antal af ventende writes." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Mængden af data læst indtil nu, i bytes." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Det totale antal af data reads." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Det totale antal af data writes." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Mængden af data skrevet indtil nu, i bytes." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -10682,35 +10725,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Antallet af log write anmodninger." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Antallet af fysiske skrivninger til log filen." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Antallet af fsyncs skrivninger lavet til logfilen." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Antallet af ventende log fil fsyncs." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Ventende log fil skrivninger." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Antallet af bytes skrevet til log filen." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Antallet af sider oprettet." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10718,51 +10761,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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Antallet af sider læst." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Antallet af sider skrevet." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Antallet af rækkelåse der ventes på i øjeblikket." -#: server_status.php:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Antallet af rækker slettet fra InnoDB tabeller." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Antallet af rækker indsat i InnoDB tabeller." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Antallet af rækker læst fra InnoDB tables." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Antallet af rækker opdateret i InnoDB tabeller." -#: server_status.php:1387 +#: 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." @@ -10771,7 +10814,7 @@ msgstr "" "endnu ikke er blevet flushet til disk. Det hed tidligere " "Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -10779,7 +10822,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:1389 +#: server_status.php:1388 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 " @@ -10789,17 +10832,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:1390 +#: server_status.php:1389 #, 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:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10809,26 +10852,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:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -10840,7 +10883,7 @@ msgstr "" "standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler " "endnu." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10848,12 +10891,12 @@ msgstr "" "Det maksimale antal forbindelser, som har været i brug samtidigt, siden " "serveren startede." -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10861,19 +10904,19 @@ msgstr "" "Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er " "dit tabelmellemlager sandsynligvis for lille." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Antallet af filer der er åbne." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Antallet af tabeller der er åbne." -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10883,19 +10926,19 @@ msgstr "" "kan indikere fragmenteringsproblemer, som kan løses ved en FLUSH QUERY CACHE " "kommando." -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Antallet af mellemlager hits." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Antallet af forespørgsler tilføjet til mellemlageret." -#: server_status.php:1408 +#: 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 " @@ -10908,7 +10951,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:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10916,19 +10959,19 @@ msgstr "" "Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre " "eller ikke mellemlagret grundet query_cache_type indstillingen)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Antallet af forespørgsler registreret i mellemlageret." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Totalt antal blokke i forespørgsels-mellemlageret." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status på fejlsikker replikation (endnu ikke implementeret)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10936,11 +10979,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10948,7 +10991,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:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10956,15 +10999,15 @@ msgstr "" "Antallet af joins der brugte ranges på den første tabel. (Normalt ikke " "kritisk selvom tallet er stort.)" -#: server_status.php:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10972,12 +11015,12 @@ msgstr "" "Totalt (siden opstart) antal gange replikationsslave SQL tråden har gen-" "forsøgt transaktioner." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10985,13 +11028,13 @@ msgstr "" "Antallet af tråde der har taget mere end slow_launch_time sekunder at " "oprette." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11001,23 +11044,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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Antallet af sorteringer lavet med ranges." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Antallet af sorterede rækker." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -11029,7 +11072,7 @@ msgstr "" "optimere dine forespørgsler, og derefter enten opdele din tabel eller " "tabeller, eller bruge replikation." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11039,11 +11082,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Antallet af i øjeblikket åbne forbindelser." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11055,49 +11098,49 @@ msgstr "" "(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god " "tråd-implementering.)" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "Frekvens for hits i trådmellemlager %%" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Antallet af tråde, der ikke sover." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Start Monitor" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Instruktioner/Opsætning" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Færdig med at omordne/redigere diagrammer" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Tilføj diagram" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Omordne/rediger diagrammer" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Opdateringsfrekvens" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Diagramkolonner:" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Diagramopstilling" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -11105,15 +11148,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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Gendan standardværdi" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Monitorinstruktioner" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11127,7 +11170,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:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11139,11 +11182,11 @@ msgstr "" "tabel understøttes af MySQL 5.1.6 og senere versioner. Man kan dog stadig " "bruge funktionerne for serverdiagrammer." -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Brug af monitor:" -#: server_status.php:1653 +#: server_status.php:1652 #, fuzzy #| msgid "" #| "Ok, you are good to go! Once you click 'Start monitor' your browser will " @@ -11160,7 +11203,7 @@ msgstr "" "opdateringsfrekvensen under 'Indstilinger' eller fjerne diagrammer ved at " "bruge ikonet cog på det relevante diagram. " -#: server_status.php:1655 +#: server_status.php:1654 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 " @@ -11172,11 +11215,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:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Bemærk venligst:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11188,196 +11231,196 @@ 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:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Foruddefineret diagram" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Statusvariabel/-ble" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Vælg serie:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Almindeligt overvåget" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "eller indtast variabelnavn:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Vis som forskelsværdi" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Anvend divisor" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Tilføj enhed til dataværdier" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Tilføj denne serie" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Slet serie" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Serier i diagram" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Logstatistik" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Valgt tidsinterval:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Hent kun SELECT,INSERT,UPDATE og DELETE forespørgsler" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Fjern variable data i INSERT forspørgsler for bedre gruppering" -#: server_status.php:1752 +#: server_status.php:1751 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:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Resultaterne er grupperet af forespørgselstekst." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Forespørgselsanalysator" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d sekund" msgstr[1] "%d sekunder" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minutter" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Kunne ikke forbinde til kilden" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Kunne ikke forbinde til målet" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' database eksisterer ikke." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Struktursynkronisering" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Datasynkronisering" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "findes ikke" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Strukturforskel" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Dataforskel" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Tilføj kolonne(r)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Fjern kolonne(r)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Ændre kolonne(r)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Fjern indeks(es)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Brug indeks(es)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Opdater række(r)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Indsæt række(r)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Vil du slette alle de tidligere rækker fra måltabeller ?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Udfør de valgte ændringer" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Synkroniser databaser" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Valgte måltabeller er blevet synkroniseret med kildetabeller." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Måldatabasen er blevet synkroniseret med kildedatabase." -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Udførte forespørgsler" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Indtast manuelt" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Aktuel forbindelse" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Konfiguration: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11385,19 +11428,19 @@ msgstr "" "Måldatabasen vil blive fuldstændigt synkroniseret med kildedatabasen. " "Kildedatabasen forbliver uændret." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Variablen blev ikke sat" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Servervariable og indstillinger" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Sessionsværdi" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Global værdi" @@ -11735,167 +11778,167 @@ msgstr "Nøglen bør indeholde bogstaver, numre [em]og[/em] specialtegn." msgid "Wrong data" msgstr "Forkerte data" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bruger bogmærke \"%s\" som standard gennemsynsforespørgsel" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Er du sikker på at du vil " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Viser som PHP-kode" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Valideret SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL-resultat" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Genereret af" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene på tabel `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Mærke" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s er blevet ændret" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "De valgte brugere er blevet korrekt slettet." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Bar" msgctxt "Chart type" msgid "Bar" msgstr "Søjle" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Kolonnenavn" -#: tbl_chart.php:84 +#: tbl_chart.php:87 #, fuzzy #| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "Linje" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Spline" msgctxt "Chart type" msgid "Spline" msgstr "Spline" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "Pie" msgctxt "Chart type" msgid "Pie" msgstr "Lagkage" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Stak" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Diagramtitel" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "X-akse:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Serie:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "X-akse betegnelse:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "X værdier" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Y-akse betegnelse:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Y-værdier" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Tabel %1$s er blevet oprettet." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Vis dump (skema) over tabel" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Vis GIS visualisering" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Bredde" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Højde" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Tekst for kolonne" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Ingen --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Spatial kolonne" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Gentegn" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Gem i fil" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Filnavn" @@ -11911,31 +11954,31 @@ msgstr "Kan ikke omdøbe indeks til PRIMARY!" msgid "No index parts defined!" msgstr "Ingen dele af indeks er defineret!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Tilføj indeks" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Redigeringstilstand" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Indeksnavn;:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" skal være navnet på og kun på en primær nøgle!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Indekstype:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Føj til indeks  %s kolonne(r)" @@ -11958,152 +12001,152 @@ msgstr "Tabel %s er flyttet til %s." msgid "Table %s has been copied to %s." msgstr "Tabellen %s er nu kopieret til: %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Intet tabelnavn!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Arranger tabelrækkefølge efter" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(enkeltvis)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Flyt tabel til (database.tabel):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Tabel-indstillinger" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Omdøb tabel til" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopier tabel til (database.tabel):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Skift til den kopierede tabel" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Tabelvedligeholdelse" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmenter tabel" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s er blevet flushet" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Udskriv tabellen (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Slet data eller tabel" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Tøm tabellen (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Slet tabellen (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Vedligehold af partition" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analyser" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Check" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimer" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Genopbyg" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Reparer" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Fjern partitionering" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Check reference-integriteten:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Vis tabeller" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Pladsforbrug" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Rækkestatistik" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "statisk" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dynamisk" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Rækkelængde" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Rækkestørrelse" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Næste autoindeks" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Fejl ved dannelse af fremmednøgle på %1$s (check datatyper)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Intern relation" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12111,107 +12154,107 @@ msgstr "" "En intern relation er ikke nødvendig, når en tilsvarende FOREIGN KEY " "relation findes." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Begrænsning på fremmednøgle" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Spatial" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Gennemse bestemte værdier" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Tilføj primær nøgle" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Tilføj unikt indeks" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Tilføj SPATIAL indeks" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Tilføj FULLTEXT indeks" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Ingen" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Kolonne %s er slettet" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "En primær nøgle er blevet tilføjet til %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Der er tilføjet et indeks til %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Vis flere operationer" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Fjern kolonne(r)" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Rediger view" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Foreslå tabelstruktur" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Tilføj kolonne" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "I slutningen af tabel" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "I begyndelsen af tabel" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Efter %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Opret et indeks på  %s  kolonner" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "partitioneret" @@ -12368,70 +12411,38 @@ msgstr "Spor disse datamanipulations-forespørgsler:" msgid "Create version" msgstr "Opret version" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Kør en \"forespørgsel ved eksempel\" (jokertegn: \"%\") for to forskellige " -"kolonner" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Ekstra søgekriterium" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Brug denne kolonne til at navngive hvert punkt" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Maksimalt antal plottede rækker" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Bladr gennem/rediger punkterne" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Hvordan man bruger" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Nulstil" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Hent flere temaer!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Tilgængelige MIME-typer" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-typer skrevet med kursiv har ikke en separat transformationsfunktion" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Tilgængelige transformationer" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Beskrivelse" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Du har ikke tilstrækkelige rettigheder til at være her!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profilen er blevet opdateret." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "VIEW navn" diff --git a/po/de.po b/po/de.po index 0f1926d298..3a282691c5 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-06-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-06-06 19:43+0200\n" "Last-Translator: J. M. \n" "Language-Team: none\n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Alles anzeigen" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Seite:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "wurde das Ursprungsfenster geschlossen oder der Browser verhindert den " "Zugriff aufgrund Ihrer Sicherheitseinstellungen." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "OK" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Schlüsselname" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Beschreibung" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Diesen Wert verwenden" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Die Datenbank %1$s wurde erzeugt." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Datenbankkommentar: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Tabellen-Kommentar" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Spalte" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Standard" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Verweise" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Kommentare" @@ -197,14 +198,14 @@ msgstr "Kommentare" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nein" @@ -217,120 +218,120 @@ msgstr "Nein" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ja" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Dump (Schema) der Datenbank anzeigen" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Es wurden keine Tabellen in der Datenbank gefunden." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Alle auswählen" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Auswahl entfernen" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Der Datenbankname ist leer!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Datenbank %1$s wurde umbenannt in %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Datenbank %1$s wurde nach %2$s kopiert" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Datenbank umbenennen in" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Datenbank entfernen" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Datenbank %s wurde gelöscht." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Datenbank löschen (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Datenbank kopieren nach" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Nur Struktur" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktur und Daten" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Nur Daten" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Vor dem Kopieren CREATE DATABASE ausführen" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "%s hinzufügen" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT-Wert hinzufügen" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Constraints hinzufügen" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Zu kopierter Datenbank wechseln" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Kollation" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -339,59 +340,59 @@ msgstr "" "Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier" "%s um herauszufinden warum." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Beziehungsschema bearbeiten oder exportieren" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabelle" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Datensätze" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Größe" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "in Benutzung" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Erzeugt am" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Aktualisiert am" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Letzter Check am" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -402,210 +403,210 @@ msgstr[1] "%s Tabellen" msgid "You have to choose at least one column to display" msgstr "Bitte wählen Sie mindestens eine anzuzeigende Spalte" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Zu %svisual builder%s wechseln" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sortierung" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Aufsteigend" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Absteigend" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Zeige" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriterium" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Einf" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Und" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Entf" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Oder" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Verändern" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Kriterienzeilen hinzufügen/entfernen" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Spalten hinzufügen/entfernen" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Aktualisieren" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Verwendete Tabellen" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-Befehl in der Datenbank %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "SQL-Befehl ausführen" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Zugriff verweigert" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "mindestens eines der Wörter" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "alle Wörter" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "genau diese Zeichenkette" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "als regulären Ausdruck" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Suchergebnisse für \"%s\" %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Insgesamt %s Treffer" msgstr[1] "Insgesamt %s Treffer" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Durchsuche die Datenbank" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Zu suchende Wörter oder Werte (Platzhalter: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Finde:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Die Wörter werden durch Leerzeichen (\" \") getrennt." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "In der/den Tabelle(n):" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "In Spalte:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Diese Datenbank enthält keine Tabellen" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "unbekannt" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Die Tabelle %s wurde geleert" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Die Ansicht %s wurde gelöscht" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Die Tabelle %s wurde gelöscht" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Tracking ist aktiviert." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Tracking ist nicht aktiviert." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -614,185 +615,186 @@ msgstr "" "Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie " "die %sDokumentation%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Ansicht" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikation" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Gesamt" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "markierte:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Alle auswählen" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Tabellen mit Überhang auswählen" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportieren" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Druckansicht" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Leeren" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Löschen" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Überprüfe Tabelle" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimiere Tabelle" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Repariere Tabelle" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analysiere Tabelle" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Prefix der Tabelle voranstellen" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Tabellenprefix ersetzen" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Tabelle mit Prefix kopieren" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Strukturverzeichnis" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Verfolgte Tabellen" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Datenbank" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Letzte Version" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Erstellt" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Aktualisiert" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Status" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Aktion" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Lösche die Verlaufsdaten dieser Tabelle" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "aktiv" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "nicht aktiv" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versionen" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Verfolgungs-Bericht" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Struktur Schnapschuss" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Nicht verfolgte Tabellen" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Verfolge Tabelle" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Datenbank-Log" @@ -804,16 +806,16 @@ msgstr "Ungültiger Typ!" msgid "Selected export type has to be saved in file!" msgstr "Der gewählte Export-Typ kann nur als Datei exportiert werden!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Ungültige Parameter!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Zu wenig Speicherplatz um die Datei %s zu speichern." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -821,14 +823,14 @@ msgstr "" "Die Datei %s besteht bereits auf dem Server. Bitte ändern Sie den Dateinamen " "oder wählen Sie die Überschreibungs-Option." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Der Webserver hat keine Schreibrechte um die Datei %s zu speichern." # Schema is not the right word for it, because a dump contains also data, and # NOT just the scheme. -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Auflistung wurde in Datei %s gespeichert." @@ -837,90 +839,90 @@ msgstr "Auflistung wurde in Datei %s gespeichert." msgid "Invalid export type" msgstr "Ungültiger Typ für Export" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Wert für die Spalte \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Verwende OpenStreetMaps als Basis-Satz" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometrie" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Punkt" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Punkt hinzufügen" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "LineString" # Ankreis ist richtig http://de.wikipedia.org/wiki/Ankreis -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Ankreis" # Ist hiermit der Inkreis gemeint? http://de.wikipedia.org/wiki/Inkreis # # Ja -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Inkreis" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "LineString hinzufügen" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Inkreis hinzufügen" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Polygon" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Polygon hinzufügen" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Geometrie hinzufügen" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Ausgabe" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -928,7 +930,7 @@ msgstr "" "Wählen Sie \"GeomFromText\" aus der Spalte \"Funktion\" und kopieren Sie den " "Text in das Feld \"Wert\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -937,21 +939,21 @@ msgstr "" "Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die " "%sDokumentation%s zur Lösung diese Problems." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Bookmark wird angezeigt" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "SQL-Abfrage wurde gelöscht." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Die Datei konnte nicht gelesen werden" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -961,7 +963,7 @@ msgstr "" "Verfahren komprimiert wurde (%s). Entweder ist das Verfahren nicht " "implementiert oder in Ihrer Konfiguration deaktiviert." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -972,31 +974,31 @@ msgstr "" "Konfiguration überschritten. Siehe [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Die Zeichen-Kodierung der Datei kann nicht ohne eine Zeichen-" "Kodierungsbibliothek konvertiert werden" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Die Import-Plugins konnten nicht geladen werden, bitte überprüfen Sie Ihre " "phpMyAdmin-Installation!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s wurde gespeichert" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" "Der Import wurde erfolgreich abgeschlossen, %d Abfragen wurden ausgeführt." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1004,7 +1006,7 @@ msgstr "" "Das Ausführungszeitlimit wurde erreicht. Wenn Sie die Datei erneut " "abschicken, wird der Import fortgesetzt." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1013,23 +1015,23 @@ msgstr "" "dass phpMyAdmin nicht in der Lage sein wird, den Import zu beenden, sofern " "nicht die Ausführungszeitbeschränkungen von php gelockert werden." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Zurück" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin arbeitet besser mit einem Frame-fähigen Browser." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert." @@ -1038,7 +1040,7 @@ msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert." msgid "Do you really want to execute \"%s\"?" msgstr "Möchten Sie die Abfrage \"%s\" wirklich ausführen?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Sie sind dabei eine komplette Datenbank zu LÖSCHEN!" @@ -1078,7 +1080,7 @@ msgstr "Index hinzufügen" msgid "Edit Index" msgstr "Index bearbeiten" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "%d Spalte(n) zum Index hinzufügen" @@ -1096,16 +1098,16 @@ msgstr "Es wurde kein Host angegeben!" msgid "The user name is empty!" msgstr "Es wurde kein Benutzername eingegeben!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Es wurde kein Passwort angegeben!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Die eingegebenen Passwörter sind nicht identisch!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Benutzer hinzufügen" @@ -1122,23 +1124,24 @@ msgstr "Die ausgewählten Benutzer werden gelöscht" msgid "Close" msgstr "Schliessen" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Bearbeiten" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Live Traffic Diagramm" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Live Verbindung/Prozess Diagramm" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Live Abfrage Diagramm" @@ -1148,24 +1151,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Insgesamt" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Weitere" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1185,7 +1188,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Prozesse" @@ -1203,7 +1206,7 @@ msgstr "Anfragen seit der letzten Aktualisierung" msgid "Questions (executed statements by the server)" msgstr "Anfragen (Serverseitig ausgeführte SQL-Befehle)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Abfrage-Statistiken" @@ -1249,14 +1252,14 @@ msgid "System swap" msgstr "Auslagerungsspeicher" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1308,32 +1311,32 @@ msgstr "Bytes gesendet" msgid "Bytes received" msgstr "Bytes empfangen" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Verbindungen" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1347,11 +1350,11 @@ msgstr "%d Tabelle(n)" msgid "Questions" msgstr "Anfragen" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Netzwerkverkehr" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Einstellungen" @@ -1371,11 +1374,11 @@ msgstr "Skala dem Raster hinzufügen" msgid "Please add at least one variable to the series" msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "keine" @@ -1475,7 +1478,7 @@ msgstr "Einstellungen ändern" msgid "Current settings" msgstr "Aktuelle Einstellungen" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Schaubild-Titel" @@ -1503,7 +1506,6 @@ msgid "From general log" msgstr "Vom allgemeinen Log" #: js/messages.php:172 -#| msgid "Loading logs" msgid "Analysing logs" msgstr "Analysiere Protokolle" @@ -1545,7 +1547,6 @@ msgid "Jump to Log table" msgstr "Springe zur Protokoll-Tabelle" #: js/messages.php:180 -#| msgid "No data" msgid "No data found" msgstr "Keine Daten gefunden" @@ -1565,7 +1566,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Zeit" @@ -1587,12 +1588,10 @@ msgid "Chart" msgstr "Diagramm" #: js/messages.php:191 -#| msgid "Add chart" msgid "Edit chart" msgstr "Diagramm bearbeiten" #: js/messages.php:192 -#| msgid "Series:" msgid "Series" msgstr "Reihe" @@ -1662,15 +1661,14 @@ msgstr "" "Aufbau der Diagramme mit der importierten Konfiguration ist fehlgeschlagen. " "Setze auf Standardeinstellungen zurück..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importieren" #: js/messages.php:213 -#| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Konfiguration des Importmonitors" @@ -1714,9 +1712,9 @@ msgstr "Benutzte Variable/Formel" msgid "Test" msgstr "Test" -#: 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 +#: 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 msgid "Cancel" msgstr "Abbrechen" @@ -1728,11 +1726,11 @@ msgstr "Laden" msgid "Processing Request" msgstr "Bearbeite Anfrage" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Fehler beim Bearbeiten der Anfrage" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Es wurden keine Datenbanken ausgewählt." @@ -1744,9 +1742,9 @@ msgstr "Spalte wird gelöscht" msgid "Adding Primary Key" msgstr "Primärschlüssel wird hinzugefügt" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1786,15 +1784,15 @@ msgstr "Indexes verbergen" msgid "Show indexes" msgstr "Indexes anzeigen" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Fremdschlüsselüberprüfung:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Aktiviert)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Deaktiviert)" @@ -1824,7 +1822,7 @@ msgstr "" "Die Definition einer gespeicherten Prozedur muss ein RETURN-Statement " "beinhalten!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET Editor" @@ -1865,8 +1863,8 @@ msgstr "SQL-Querybox anzeigen" msgid "No rows selected" msgstr "Es wurden keine Datensätze ausgewählt" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Bearbeiten" @@ -1874,18 +1872,18 @@ msgstr "Bearbeiten" msgid "Query execution time" msgstr "Ausführungszeit der Abfrage" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Speichern" @@ -1897,7 +1895,7 @@ msgstr "Suchkriterien ausblenden" msgid "Show search criteria" msgstr "Suchkriterien anzeigen" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Suche" @@ -1915,7 +1913,6 @@ msgstr "" "Zum Hineinzoomen markieren Sie mit der Maus einen Abschnitt des Diagramms." #: 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 "Auf \"Zoom zurücksetzen\" klicken, um zum Original zurückzukehren." @@ -1947,12 +1944,12 @@ msgstr "Abfrageergebnisse" msgid "Data point content" msgstr "Datenpunkt-Inhalt" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignorieren" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Kopieren" @@ -1972,7 +1969,7 @@ msgstr "Wähle Fremdschlüssel" msgid "Please select the primary key or a unique key" msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Anzuzeigende Spalte auswählen" @@ -2068,7 +2065,7 @@ msgstr "Generieren" msgid "Change Password" msgstr "Passwort ändern" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Mehr" @@ -2159,63 +2156,63 @@ msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mrz" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dez" @@ -2253,32 +2250,32 @@ msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sa" @@ -2367,8 +2364,6 @@ msgstr "Ausführung des Tests für die Regel '%s' fehlgeschlagen" #: libraries/Advisor.class.php:207 #, php-format -#| msgid "" -#| "Failed formatting string for rule '%s'. PHP threw following error: %s" msgid "Failed formatting string for rule '%s'." msgstr "Formatieren des Texts für Regel '%s' fehlgeschlagen." @@ -2382,7 +2377,6 @@ msgstr "" #: libraries/Advisor.class.php:378 #, php-format -#| msgid "Invalid format of CSV input on line %d." msgid "Invalid rule declaration on line %s" msgstr "Ungültige Regel-Deklaration in Zeile %s" @@ -2394,18 +2388,19 @@ msgstr "Unerwartete Zeichen in Zeile %s" #: libraries/Advisor.class.php:400 #, php-format 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" +msgstr "" +"Unerwartetes Zeichen in Zeile %1$s. Tab erwartet, aber \"%2$s\" gefunden" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "pro Sekunde" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "pro Minute" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "pro Stunde" @@ -2428,21 +2423,208 @@ msgstr "" msgid "Font size" msgstr "Schriftgröße" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Speichere bearbeitete Daten" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Spalten-Anordnung wiederherstellen" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Anfang" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Vorherige" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Nächste" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Ende" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Anfangs-Datensatz" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Anzahl der Datensätze" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Art und Weise" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "untereinander" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontal (gedrehte Kopfzeilen)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "nebeneinander" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "Kopfzeilen alle %s Zeilen" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Nach Schlüssel sortieren" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Optionen" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Gekürzte Texte" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Vollständige Texte" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Relationaler Schlüssel" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Relationale Anzeigespalte" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Binäre Inhalte anzeigen" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "BLOB Inhalte anzeigen" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Binäre Inhalte in hexadezimal anzeigen" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Darstellungsumwandlung ausblenden" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Bekannter Text" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Bekanntes Binary" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Beenden" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Es kann sich hierbei um Näherungswerte handeln. Bitte lesen Sie auch [a@./" +"Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "in der Abfrage" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Zeige Datensätze" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "insgesamt" + +# (s is the abbreviation of "Sekunde", sec is it not (according to +# International System of Units), so we wrote the complete one.) +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Die Abfrage dauerte %01.4f Sekunden" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operationen für das Abfrageergebnis" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Druckansicht (vollständige Textfelder)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Diagramm anzeigen" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Visualisiere GIS Daten" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Erzeuge View" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Der Verweis wurde nicht gefunden" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Zu viele Fehlermeldungen, einige werden nicht angezeigt." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Bei der Datei handelt es sich um keine hochgeladene Datei." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Die hochgeladene Datei ist größer als der in der php.ini in " "upload_max_filesize angegebene Wert." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2450,27 +2632,27 @@ msgstr "" "Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML " "Formulars angegebene Wert." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Die Datei wurde nur teilweise übertragen." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Kein gültiges Temporäres Verzeichnis für hochgeladene Dateien." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Datei konnte gespeichert werden." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Hochladen der Datei wurde durch die Erweiterung gestoppt." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Unbekannter Fehler beim hochladen der Datei." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2478,26 +2660,39 @@ msgstr "" "Fehler beim Verschieben der hochgeladenen Datei, siehe [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Fehler beim Verschieben der hochgeladenen Datei." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Die hochgeladene (verschobene) Datei kann nicht gelesen werden." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Neues phpMyAdmin-Fenster" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Ab diesem Punkt müssen Cookies aktiviert sein." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "Javascript muss ab hier aktiviert sein" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indizes" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unique" @@ -2510,8 +2705,8 @@ msgstr "Gepackt" msgid "Cardinality" msgstr "Kardinalität" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kommentar" @@ -2534,128 +2729,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Datenbanken" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktur" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Einfügen" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operationen" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Nachverfolgung" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Die Tabelle scheint leer zu sein!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Die Datenbank scheint leer zu sein!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Abfrage" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Rechte" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Routinen" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Ereignisse" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Benutzer" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Gleiche ab" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binäres Protokoll" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variablen" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Zeichensätze" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Erweiterungen" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Formate" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Fehler" @@ -2680,7 +2875,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d Datensatz eingefügt." msgstr[1] "%1$d Datensätze eingefügt." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Fehler beim Erstellen der PDF Datei:" @@ -2723,13 +2918,11 @@ msgstr "Unbekannter Tabellenstatus: " # source != search / Source != Suche #: libraries/Table.class.php:768 #, php-format -#| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Quell-Datenbank `%s` nicht gefunden!" #: libraries/Table.class.php:776 #, php-format -#| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Ziel-Datenbank `%s` nicht gefunden!" @@ -2775,16 +2968,98 @@ 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 +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 +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 +msgid "Value" +msgstr "Wert" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Tabellensuche" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Bearbeiten/Einfügen" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Spalten auswählen (min. eines):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Eigenes Filterkriterium (Argumente für den \"WHERE\"-Ausdruck):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Einträge pro Seite" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Sortierung nach:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Diese Spalte verwenden, um jeden Punkt zu benennen" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Maximale Anzahl der darzustellenden Datensätze" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Fremdschlüsselwerte ansehen" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Zusätzliche Suchkriterien" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\") für " +"zwei unterschiedliche Spalten" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Punkte anzeigen/bearbeiten" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Anleitung" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "Zoom zurücksetzen" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Keinen gültigen Pfad für Grafiken des Oberflächendesigns %s gefunden!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Keine Vorschau verfügbar." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "auswählen" @@ -2803,7 +3078,7 @@ msgstr "Oberflächendesign %s nicht gefunden!" msgid "Theme path not found for theme %s!" msgstr "Pfad für das Oberflächendesign %s nicht gefunden!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Oberflächendesign" @@ -2903,7 +3178,6 @@ msgstr "Ein Alias für BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" #: libraries/Types.class.php:319 libraries/Types.class.php:721 #, php-format -#| msgid "authored on %s by %s" msgid "A date, supported range is %1$s to %2$s" msgstr "Ein Datum, unterstützter Bereich ist %1$s bis %2$s" @@ -2911,8 +3185,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 "" @@ -2920,12 +3194,11 @@ msgid "" "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" "Ein Zeitstempel, Bereich ist 1970-01-01 00:00:01 UTC bis 2038-01-09 03:14:07 " -"UTC, gespeichert als Anzahl Sekunden seit Beginn der UNIX-Epoche " -"(1970-01-01 00:00:00 UTC)" +"UTC, gespeichert als Anzahl Sekunden seit Beginn der UNIX-Epoche (1970-01-01 " +"00:00:00 UTC)" #: libraries/Types.class.php:325 libraries/Types.class.php:727 #, php-format -#| msgid "Error renaming table %1$s to %2$s" msgid "A time, range is %1$s to %2$s" msgstr "Eine Uhrzeit, Bereich ist %1$s bis %2$s" @@ -3037,8 +3310,8 @@ msgid "" "bytes, stored with a four-byte prefix indicating the length of the value" msgstr "" "Eine BLOB-Spalte mit einer maximalen Länge von 4.294.967.295 oder 4GiB (2^32 " -"- 1) Bytes, gespeichert mit einem Vier-Byte-Präfix, der die Länge des " -"Wertes angibt" +"- 1) Bytes, gespeichert mit einem Vier-Byte-Präfix, der die Länge des Wertes " +"angibt" #: libraries/Types.class.php:353 msgid "" @@ -3065,7 +3338,6 @@ msgid "A curve with linear interpolation between points" msgstr "Eine Kurve mit linearer Interpolation zwischen Punkten" #: libraries/Types.class.php:363 -#| msgid "Add a polygon" msgid "A polygon" msgstr "Ein Vieleck (Polygon)" @@ -3091,19 +3363,16 @@ msgid "Numeric" msgstr "Numerisch" #: libraries/Types.class.php:642 libraries/Types.class.php:976 -#| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Datum und Uhrzeit" #: libraries/Types.class.php:651 libraries/Types.class.php:979 -#| msgid "Linestring" msgctxt "string types" msgid "String" msgstr "Zeichenkette" #: libraries/Types.class.php:672 -#| msgid "Spatial" msgctxt "spatial types" msgid "Spatial" msgstr "Räumlich" @@ -3170,13 +3439,13 @@ msgstr "" "Die Verbindung konnte aufgrund von ungültigen Einstellungen nicht " "hergestellt werden." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Willkommen bei %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3185,7 +3454,7 @@ msgstr "" "Sie haben möglicherweise noch keine Konfigurationsdatei erstellt. Sei können " "das %1$sSetup-Skript%2$s verwenden, um eine zu erstellen." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3202,49 +3471,45 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Benutzung von Blowfish des mcrypt-Pakets fehlgeschlagen!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Javascript muss ab hier aktiviert sein" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Anmeldung" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Sie können einen Rechnernamen oder eine IP Adresse und einen Port durch " "Leerzeichen getrennt eingeben." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Benutzername:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Passwort:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Server auswählen" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Ab diesem Punkt müssen Cookies aktiviert sein." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Login ohne Passwort ist verboten (siehe AllowNoPassword) in der Konfiguration" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" @@ -3252,13 +3517,13 @@ msgstr "" "Da Sie seit mindestens %s Sekunden inaktiv waren, wurden Sie automatisch " "abgemeldet. Bitte melden Sie sich erneut an" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Die Anmeldung am MySQL-Server ist fehlgeschlagen" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Falscher Benutzername/Passwort. Zugriff verweigert." @@ -3290,7 +3555,7 @@ msgstr "freigegeben" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabellen" @@ -3302,13 +3567,13 @@ msgstr "Tabellen" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Daten" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Überhang" @@ -3333,19 +3598,11 @@ msgstr "Überprüft die Rechte für die Datenbank "%s"." msgid "Check Privileges" msgstr "Rechte überprüfen" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "Mögliche Ausnutzung" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "Numerischer Schlüssel entdeckt" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Fehler beim Lesen der Konfigurationsdatei" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3353,12 +3610,12 @@ msgstr "" "Dies bedeutet im Allgemeinen, dass sich ein Syntax-Fehler eingeschlichen " "hat. Bitte überprüfen Sie die unten angezeigten Fehler." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Fehler beim Laden der Standard-Konfiguration von: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3366,207 +3623,193 @@ msgstr "" "Das $cfg['PmaAbsoluteUri'] Verzeichnis MUSS in Ihrer " "Konfigurationsdatei angegeben werden!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Ungültige Server-Nummer: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ungültiger Host-Name für Server %1$s. Bitte überprüfen Sie Ihre " "Konfiguration." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Ungültige Authentifikationsmethode:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sie sollten auf %s %s oder neuer aktualisieren." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "GLOBALS Überschreibversuch" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "Mögliche Ausnutzung" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "Numerischer Schlüssel entdeckt" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Maximal: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentation" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "de" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "de" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "de" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-Befehl" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL meldet: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Verbindungsaufbau zu SQL-Validator schlug fehl!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL erklären" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "SQL-Erklärung umgehen" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "ohne PHP-Code" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-Code erzeugen" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Aktualisieren" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL-Validierung umgehen" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL validieren" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Inline-Bearbeiten dieses SQL-Befehls" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Messen" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "So" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y um %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s Tage, %s Stunden, %s Minuten und %s Sekunden" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Fehlende(r) Parameter:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Anfang" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Vorherige" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Nächste" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Ende" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Zur Datenbank "%s" springen." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Die Funktion %s wird durch einen bekannten Fehler beeinträchtigt, siehe %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Zum Umschalten anklicken" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Durchsuchen Sie ihren Computer:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Es sind keine Dateien zum Upload vorhanden" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Ausführen" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Drucken" @@ -3596,8 +3839,8 @@ msgid "Closed" msgstr "Geschlossen" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Deaktiviert" @@ -3738,9 +3981,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Zurücksetzen" @@ -3966,10 +4209,6 @@ msgstr "Tabellenstrukturaktionen verbergen" msgid "Show binary contents as HEX by default" msgstr "Binäre Inhalte standardmäßig hexadezimal anzeigen" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Binäre Inhalte in hexadezimal anzeigen" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Datenbanken als Liste statt Dropdownfeld anzeigen" @@ -4026,7 +4265,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Maximale Ausführungszeit" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Senden" @@ -4035,7 +4274,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4139,7 +4378,7 @@ msgid "MIME type" msgstr "MIME-Typ" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Tabellenverknüpfungen" @@ -4695,11 +4934,9 @@ msgid "Minimum number of tables to display the table filter box" msgstr "Minimale Anzahl der in einer Tabellenliste anzuzeigenden Tabellen" #: libraries/config/messages.inc.php:281 -#| msgid "Minimum number of tables to display the table filter box" msgid "Minimum number of databases to display the database filter box" msgstr "" -"Minimale Anzahl der Datenbanken, die im Datenbank-Filterfeld angezeigt " -"werden" +"Minimale Anzahl der Datenbanken, die im Datenbank-Filterfeld angezeigt werden" #: libraries/config/messages.inc.php:282 msgid "String that separates databases into different tree levels" @@ -5752,9 +5989,9 @@ msgstr "Erfordert das der SQL-Validator aktiviert ist" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Passwort" @@ -6044,14 +6281,6 @@ msgstr "" msgid "Details..." msgstr "Details..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Es kann sich hierbei um Näherungswerte handeln. Bitte lesen Sie auch [a@./" -"Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6060,18 +6289,18 @@ msgstr "" "ist fehlgeschlagen." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Passwort ändern" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Kein Passwort" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Wiederholen" @@ -6092,22 +6321,22 @@ msgstr "Neue Datenbank anlegen" msgid "Create" msgstr "Anlegen" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Keine Rechte" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Name" @@ -6266,29 +6495,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Zeichensatz Umwandlung:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format -#| msgid "%s from %s branch" msgid "%1$s from %2$s branch" msgstr "%1$s aus dem Zweig %2$s" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "kein Zweig" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Git-Revision" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format -#| msgid "authored on %s by %s" msgid "committed on %1$s by %2$s" msgstr "eingetragen am %1$s von %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format -#| msgid "authored on %s by %s" msgid "authored on %1$s by %2$s" msgstr "geschrieben am %1$s von %2$s" @@ -6408,187 +6634,39 @@ msgstr "Formatspezifische Optionen:" msgid "Language" msgstr "Sprache" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Speichere bearbeitete Daten" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Spalten-Anordnung wiederherstellen" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Anfangs-Datensatz" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Anzahl der Datensätze" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Art und Weise" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "untereinander" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontal (gedrehte Kopfzeilen)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "nebeneinander" - -#: libraries/display_tbl.lib.php:636 -#, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Kopfzeilen alle %s Zeilen" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Nach Schlüssel sortieren" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Optionen" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Gekürzte Texte" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Vollständige Texte" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Relationaler Schlüssel" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Relationale Anzeigespalte" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Binäre Inhalte anzeigen" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "BLOB Inhalte anzeigen" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Darstellungsumwandlung ausblenden" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Bekannter Text" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Bekanntes Binary" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Der Datensatz wurde gelöscht" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Beenden" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "in der Abfrage" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Zeige Datensätze" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "insgesamt" - -# (s is the abbreviation of "Sekunde", sec is it not (according to -# International System of Units), so we wrote the complete one.) -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Die Abfrage dauerte %01.4f Sekunden" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operationen für das Abfrageergebnis" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Druckansicht (vollständige Textfelder)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Diagramm anzeigen" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Visualisiere GIS Daten" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Erzeuge View" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Der Verweis wurde nicht gefunden" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Versionsinformationen" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Pfad für Datendateien" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Der Pfad des Verzeichnisses, unter welchem alle InnoDB-Datendateien abgelegt " "werden." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Datendateien" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Autoerweiterungs-Schrittgröße" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "Die Größe, um die ein Tablespace erweitert wird, wenn er voll ist." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Größe des Puffer-Pools" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6596,79 +6674,79 @@ msgstr "" "Die Größe des Arbeitsspeicherpuffers, den InnoDB verwendet, um Daten und " "Indizes zwischenzuspeichern." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Puffer-Pool" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB-Status" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Auslastung des Puffer-Pools" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "Seiten" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Unbenutzte Seiten" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Inkonsistente Seiten" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Daten enthaltende Seiten" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Zurückzuschreibende Seiten" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Ausgelastete Seiten" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Belegte Seiten" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Aktivität des Puffer-Pools" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Leseanfragen" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Schreibanfragen" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Fehlgeschlagene Leseanfragen" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Schreibverzögerungen" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Fehlgeschlagene Leseanfragen in %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Schreibverzögerungen in %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Größe des Datenzeigers" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6676,11 +6754,11 @@ msgstr "" "Standardmäßige Größe des Zeigers, welcher von CREATE TABLE für MyISAM-" "Tabellen verwendet wird, sofern die Option MAX_ROWS nicht angegeben wird." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Autoreparatur-Modus" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6688,11 +6766,11 @@ msgstr "" "Der Modus der automatischen Wiederherstellung abgestürzter MyISAM-Tabellen, " "wie über den Startparameter --myisam-recover angegeben." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Maximale Größe temporärer Dateien beim Sortieren" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6701,11 +6779,11 @@ msgstr "" "Die maximale Größe der temporären Datei, die MySQL benutzen darf, während es " "den Index erzeugt (während REPAIR, ALTER TABLE oder LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Maximum Größe temporärer Dateien bei Indexerstellung" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6715,11 +6793,11 @@ msgstr "" "diesen Wert größer sein würde als die Benutzung des Schlüssel-Caches, wird " "die Schlüssel-Cache-Methode bevorzugt." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Reparaturprozesse" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6728,11 +6806,11 @@ msgstr "" "einer Reparatur oder eines Sortierungsprozesses parallel erstellt (jeder " "Index in einem separatem Prozess)." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Größe des Sortierungspuffers" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6740,11 +6818,11 @@ msgstr "" "Der Puffer, der beim Sortieren des Indexes zugewiesen wird, wenn man ein " "REPAIR oder ausführt oder Indizes mit CREATE INDEX oder ALTER TABLE erzeugt." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Index-Zwischenspeicher Größe" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6753,11 +6831,11 @@ msgstr "" "Voreinstellung ist 32 MB. Der Speicher wird nur zum zwischenspeichern von " "Index-Seiten verwendet." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Record-Zwischenspeicher-Größe" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6767,11 +6845,11 @@ msgstr "" "Die Voreinstellung ist 32 MB. Der Speicher wird verwendet um Änderungen an " "Handle-Dateien (.xtd) und Row-Pointer-Dateien (.xtr) zwischenzuspeichern." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Protokoll-Zwischenspeicher Größe" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6779,11 +6857,11 @@ msgstr "" "Die Menge an reserviertem Speicher für den Transaktionslog. Die " "Voreinstellung ist 16 MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Logdatei Grenzwert" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6791,11 +6869,11 @@ msgstr "" "Die Größe des Transaktionslog bevor ein Rollover durchgeführt wird und eine " "neue Logdatei angelegt wird. Die Voreinstellung ist 16 MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Transaktionspuffergröße" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6803,11 +6881,11 @@ msgstr "" "Die Größe des globalen Transaktionslogpuffers (es werden 2 Puffer dieser " "Größe angelegt). Die Voreinstellung ist 1 MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Checkpoint-Frequenz" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6815,11 +6893,11 @@ msgstr "" "Die Menge an geschriebenen Daten in das Transaktionslog, bevor ein neuer " "Checkpoint angelegt wird. Die Voreinstellung ist 24 MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Data Log Grenzwert" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6831,11 +6909,11 @@ msgstr "" "Variable kann erhöht werden um die Menge an Daten, welche in der Datenbank " "gespeichert werden können zu vergrößern." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Speicherbereinigungs-Grenzwert" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6844,11 +6922,11 @@ msgstr "" "komprimiert wird. Der Wert kann zwischen 1 und 99 liegen, Voreinstellung ist " "50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Log Puffergröße" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6858,27 +6936,27 @@ msgstr "" "256 MB. Pro Thread wird ein Puffer reserviert, aber nur wenn der Thread " "Logdateien schreiben können muss." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Dateiwachstumsgröße" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Die Wachstumsgröße der Handle-Dateien (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Zeilenwachstum" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Wachstum der Row-Pointer-Dateien (.xtr)." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Log Dateien Anzahl" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6889,7 +6967,7 @@ msgstr "" "verwaltet werden. Sind mehr Logs vorhanden, werden alte Logs gelöscht, " "ansonsten werden sie umbenannt und bekommen die nächsthöhere Nummer." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6898,11 +6976,11 @@ msgstr "" "Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase " "XT-Website%s verfügbar." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Verwandte Links" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "The PrimeBase XT-Blog von Paul McCullagh" @@ -6949,14 +7027,14 @@ msgstr "Daten für Tabelle" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Ereignis" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Beschreibung" @@ -7014,14 +7092,14 @@ msgstr "MIME-Typen anzeigen" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Host" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Erstellungszeit" @@ -7044,7 +7122,6 @@ msgid "Export table names" msgstr "Exportiere Tabellennamen" #: libraries/export/mediawiki.php:60 -#| msgid "horizontal (rotated headers)" msgid "Export table headers" msgstr "Exportiere Tabellenkopfzeilen" @@ -7233,21 +7310,12 @@ msgstr "Ansichten" msgid "Export contents" msgstr "Export-Inhalte" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Neues phpMyAdmin-Fenster" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Keine Daten für die GIS-Darstellung gefunden." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "GLOBALS Überschreibversuch" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7352,12 +7420,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Tabellenname" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Spaltennamen" @@ -7367,7 +7435,6 @@ msgstr "Dieses Plugin unterstützt keine Kompression!" #: libraries/import/mediawiki.php:246 #, php-format -#| msgid "Invalid format of CSV input on line %d." msgid "Invalid format of mediawiki input on line:
    %s." msgstr "Ungültiges Format des Mediawiki-Inputs in Zeile:
    %s." @@ -7431,94 +7498,78 @@ msgstr "SQL-Kompatibilitätsmodus:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "AUTO_INCREMENT nicht für Nullwerte verwenden" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funktion" - # Hide heist im deutschen in der EDV ausblenden -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Verstecken" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binär" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binär - nicht editierbar" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "Upload-Verzeichnis auf dem Webserver" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Bearbeiten/Einfügen" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Einfügen mit %s Datensätzen fortfahren" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "und dann" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Als neuen Datensatz speichern" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Als neue Zeile einfügen und Fehler ignorieren" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Zeige insert Abfrage" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "zurück" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "anschließend einen weiteren Datensatz einfügen" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Zurück zu dieser Seite" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "nächste Zeile bearbeiten" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Wert" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" @@ -7533,32 +7584,32 @@ msgstr "keine" msgid "Convert to Kana" msgstr "Nach Kana konvertieren" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Von" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Zu" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Abschicken" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Tabellen-Prefix hinzufügen" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Prefix hinzufügen" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 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:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Keine Änderung" @@ -7768,84 +7819,84 @@ msgstr "Navigations-Frame aktualisieren" msgid "This format has no options" msgstr "Für dieses Format sind keine Optionen vorhanden" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "fehlerhaft" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Aktiviert" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Allgemeine Verknüpfungsfunktionen" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Anzeige verknüpfter Daten" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Erzeugen von PDFs" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Darstellung von Spaltenkommentaren" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Darstellungsumwandlung" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Bitte lesen Sie in der Dokumentation nach, wie Sie die Struktur Ihrer " "Spaltenkommentartabelle aktualisieren können" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Gespeicherte SQL-Abfrage" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-Verlaufsprotokoll" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Gespeicherte kürzlich verwendete Tabellen" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Gespeicherte Tabellen-Darstellungs-Optionen" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Benutzereinstellungen" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Kurzanleitung zum Einrichten der zusätzlichen Funktionen:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Erstellen der benötigten Tabellen mittels examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Den Benutzer pma einrichten und Zugriff auf diese Tabellen geben." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7854,12 +7905,12 @@ msgstr "" "php) aktiviert werden. Beispiele finden sich in der config." "sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Erneut in phpMyAdmin anmelden um die neue Konfigurationsdatei zu laden." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "keine Beschreibung" @@ -7867,7 +7918,7 @@ msgstr "keine Beschreibung" msgid "Slave configuration" msgstr "Slave-Konfiguration" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Master-Server wechseln oder neu konfigurieren" @@ -7882,13 +7933,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Benutzername" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -7901,7 +7952,7 @@ msgid "Slave status" msgstr "Slave-Status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variable" @@ -7917,38 +7968,38 @@ msgstr "" "Nur Slaves, die mit der Option --report-host=host_name gestartet wurden, " "sind in dieser Liste sichtbar." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Benutzer für den Replication-Slave hinzufügen" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Jeder Benutzer" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Textfeld verwenden" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Jeder Host" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Dieser Host" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Verwende Hosttabelle" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7964,7 +8015,7 @@ msgstr "Passwort generieren" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7997,88 +8048,89 @@ msgstr "" "Ein oder mehrere Fehler sind aufgetreten während Ihre Anfrage verarbeitet " "wurde:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Event bearbeiten" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fehler beim Bearbeiten der Anfrage" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Details" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Ereignis-Name" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Ereignistyp" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Wechseln zu %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Ausführen um" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Abfrage ausführen" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Start" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Ende" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Nach Abschluss erhalten" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Ersteller" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: 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" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Sie müssen einen Ereignis-Namen angeben" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Sie müssen einen gültigen Intervall für dieses Ereignis angeben." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Sie müssen eine gültige Ausführungszeit für dieses Ereignis angeben." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Sie müssen einen gültigen Typ für dieses Event angeben." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 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:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Neu" @@ -8112,7 +8164,7 @@ msgstr "" "vermeiden." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ungültiger Prozeduren-Typ: \"%s\"" @@ -8131,69 +8183,69 @@ msgstr "Prozedur %1$s wurde geändert." msgid "Routine %1$s has been created." msgstr "Die Prozedur %1$s wurde erstellt." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Bearbeite Prozedur" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Prozeduren-Name" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parameter" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Richtung" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Länge/Werte" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Parameter hinzufügen" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Letzten Parameter entfernen" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Rückgabe-Typ" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Rückgabe Länge/Werte" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Rückgabe der Optionen" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Ist plangesteuert" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Sicherheits-Typ" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "SQL-Datenzugriff" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Sie müssen einen Prozeduren-Namen angeben" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ungültige Richtung \"%s\" für Parameter angegeben." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8201,21 +8253,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:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Sie müssen die Definition der Prozedur angeben." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8224,18 +8276,18 @@ msgstr[0] "" msgstr[1] "" "%d Datensätze betroffen aufgrund des letzten Befehls innerhalb der Prozedur" -#: libraries/rte/rte_routines.lib.php:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Ergebnisse der ausgeführten Prozedur %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Führe Prozedur aus" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Prozeduren-Parameter" @@ -8253,37 +8305,37 @@ msgstr "Trigger %1$s wurde geändert." msgid "Trigger %1$s has been created." msgstr "Trigger %1$s wurde erzeugt." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Einen Trigger bearbeiten" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Trigger-Name" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Zeit" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Sie müssen einen Trigger-Namen angeben" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Sie müssen einen Trigger-Namen angeben" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" "Sie müssen einen Namen und einen Typ für jeden Trigger-Parameter angeben" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Sie müssen einen gültigen Tabellen-Namen angeben" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Sie müssen die Definition des Triggers angeben." @@ -8370,7 +8422,7 @@ msgstr "Es sind keine Ereignisse vorhanden, die angezeigt werden könnten." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8379,7 +8431,7 @@ msgstr "Die Tabelle %s existiert nicht!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8387,7 +8439,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Bitte konfigurieren Sie die Koordinaten für die Tabelle %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8398,27 +8450,27 @@ msgstr "Schema der Datenbank %s - Seite %s" msgid "This page does not contain any tables!" msgstr "Diese Seite enthält keine Tabellen!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "SCHEMA-FEHLER: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Beziehungsschema" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Inhalt" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Attribute" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8527,7 +8579,7 @@ msgid "Current Server" msgstr "Aktueller Server" # source != search / Source != Suche -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Quell-Datenbank" @@ -8545,7 +8597,7 @@ msgstr "Entfernter Server" msgid "Difference" msgstr "Unterschied" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Ziel-Datenbank" @@ -8564,7 +8616,7 @@ msgstr "SQL-Befehl(e) auf Server %s ausführen" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Werte löschen" @@ -8573,11 +8625,11 @@ msgstr "Werte löschen" msgid "Columns" msgstr "Spalten" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "SQL-Abfrage speichern" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" @@ -8676,7 +8728,7 @@ msgstr "" "überprüfen Sie, ob Sie die in der %sDokumentation%s beschriebenen php-" "Erweiterungen installiert haben." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "Rückverfolgung der Tabelle %s ist aktiviert." @@ -8702,13 +8754,12 @@ msgstr "" "Anführungszeichen an, und verwenden Sie dieses Format: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Index" #: libraries/tbl_properties.inc.php:121 -#| msgid "Remove column(s)" msgid "Move column" msgstr "Spalte verschieben" @@ -8754,13 +8805,13 @@ msgstr "Kein(e)" msgid "As defined:" msgstr "Wie definiert:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primärschlüssel" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Volltext" @@ -8770,21 +8821,20 @@ msgstr "an den Anfang" #: libraries/tbl_properties.inc.php:599 #, php-format -#| msgid "After %s" msgid "after %s" msgstr "nach %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "%s Spalte(n) einfügen" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Sie müssen mindestens eine Spalte hinzufügen." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Tabellenformat" @@ -8792,41 +8842,6 @@ msgstr "Tabellenformat" msgid "PARTITION definition" msgstr "PARTITION Definition" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Tabellensuche" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Spalten auswählen (min. eines):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Eigenes Filterkriterium (Argumente für den \"WHERE\"-Ausdruck):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Einträge pro Seite" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Sortierung nach:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Fremdschlüsselwerte ansehen" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8988,11 +9003,11 @@ msgstr "" msgid "Manage your settings" msgstr "Deine Einstellungen verwalten" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Die Konfiguration wurde gespeichert" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9005,7 +9020,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Fehler beim Speichern der Konfiguration" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9034,7 +9049,7 @@ msgstr "Zeichensatz/Kollation der MySQL-Verbindung" msgid "Appearance Settings" msgstr "Anzeige-Einstellungen" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Weitere Einstellungen" @@ -9054,9 +9069,9 @@ msgstr "Software-Version" msgid "Protocol version" msgstr "Protokoll-Version" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Benutzer" @@ -9194,127 +9209,126 @@ msgstr "" "Der Server läuft mit Suhosin. Bitte lesen Sie die %sDokumentation%s wegen " "möglicher Probleme." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Keine Datenbanken" -#: navigation.php:222 -#| msgid "Filter tables by name" +#: navigation.php:170 msgid "Filter databases by name" msgstr "Datenbanken nach Namen filtern" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Tabellen nach Namen filtern" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Erzeuge Tabelle" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Bitte Datenbank auswählen" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Zeige/Verstecke linkes Menü" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Speichere Position" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Erzeuge Verknüpfung" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Neuladen" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Hilfe" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Winklige Verbindung" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Direkte Verbindung" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Am Gitter anordnen" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Alles klein/groß" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Wechseln klein/groß" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Beziehungen anzeigen an/aus" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export Koordinaten für das PDF Schema" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Abfrage erstellen" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Verschiebe Menü" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Alles ein-/ausblenden" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Tabellen ohne Verknüpfung aus-/einblenden" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Anzahl Tabellen" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Verknüpfung löschen" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Beziehungsoperator" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Ausnahme" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "Unterabfrage" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Umbenennen nach" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Neuer Name" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Anlegen" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Aktive Optionen" @@ -9326,51 +9340,51 @@ msgstr "Seite wurde erstellt" msgid "Page creation failed" msgstr "Seitenerstellung fehlgeschlagen" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Seite" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Import von ausgewählter Seite" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Export zu der ausgewählten Seite" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Eine Seite anlegen und dahin exportieren" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Name der neuen Seite: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Export/Import skalieren" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "empfohlen" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Fehler: Verknüpfung existiert bereits." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Fehler: Verknüpfung nicht hinzugefügt." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY Relation hinzugefügt" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Interne Verknüpfung hinzugefügt" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Verknüpfung gelöscht" @@ -9382,53 +9396,53 @@ msgstr "Fehler beim speichern der Koordinaten für den Designer." msgid "Modifications have been saved" msgstr "Änderungen gespeichert" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" "Einstellungen können nicht gespeichert werden, ausgefülltes Formular enthält " "Fehler" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Fehler beim Importieren der Konfiguration" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Konfiguration enthält inkorrekte Daten für einige Felder." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Sollen die restlichen Einstellungen importiert werden?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Gespeichert am: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Import aus Datei" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Import aus Browserspeicher" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Einstellungen werden aus Ihrem lokalen Browserspeicher importiert." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Sie haben keine gespeicherten Einstellungen!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Dieses Feature wird von ihrem Webbrowser nicht unterstützt" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Mit aktueller Konfiguration zusammenführen" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9437,38 +9451,38 @@ msgstr "" "Weitere Einstellungen können durch das Anpassen der Datei config.inc.php " "verändert werden, z.B. durch die Verwendung von %sSetup Script%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Im Browserspeicher speichern" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Einstellungen werden in Ihrem lokalen Browserspeicher gespeichert." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Vorhandene Einstellungen werden überschrieben!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "Sie können alle Einstellungen auf die Defaultwerten zurücksetzen." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Dateiimport" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Alle" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" "Die Tabelle %s wurde nicht gefunden oder in der Kofigurationsdatei %s " "nicht gesetzt" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Datei existiert nicht" @@ -9476,17 +9490,17 @@ msgstr "Datei existiert nicht" msgid "Select binary log to view" msgstr "Binäres Protokoll zur Anzeige auswählen" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Dateien" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Zeige die SQL-Abfragen verkürzt an" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Zeige die SQL-Abfragen vollständig an" @@ -9502,7 +9516,7 @@ msgstr "Position" msgid "Original position" msgstr "Ursprungsposition" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Information" @@ -9510,31 +9524,31 @@ msgstr "Information" msgid "Character Sets and Collations" msgstr "Zeichensätze und Kollationen" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d Datenbank wurde erfolgreich gelöscht." msgstr[1] "%1$d Datenbanken wurden erfolgreich gelöscht." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statistik über alle Datenbanken" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Master Replikation" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Slave Replikation" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Datenbankstatistiken aktivieren" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9546,157 +9560,157 @@ msgstr "" msgid "Storage Engines" msgstr "Tabellenformate" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Dump (Schema) der Datenbanken anzeigen" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Module" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Anfang" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Erweiterung" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Modul" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Bibliothek" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Version" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Autor" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Lizenz" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "deaktiviert" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Enthält alle Rechte bis auf GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Erlaubt das Verändern der Struktur bestehender Tabellen." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Erlaubt das Verändern und Löschen von Routinen." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Erlaubt das Erstellen neuer Datenbanken und Tabellen." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Erlaubt das Erstellen von gespeicherten Routinen." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Erlaubt das Erstellen neuer Tabellen." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Erlaubt das Erstellen temporärer Tabellen." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Erlaubt das Erstellen, Löschen und Umbenennen von Benutzern." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Erlaubt das Erstellen von Views." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Erlaubt das Löschen von Daten." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Erlaubt das Löschen ganzer Datenbanken und Tabellen." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Erlaubt das Löschen ganzer Tabellen." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Erlaubt das Anlegen von Events für den Event-Scheduler" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Erlaubt das Ausführen von Routinen." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" "Erlaubt das Importieren von Daten aus und das Exportieren in externe Dateien." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Erlaubt das Hinzufügen von Benutzern und Rechten ohne den die " "Benutzerprofile neu laden zu müssen." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Erlaubt das Erstellen und Löschen von Indizes." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Erlaubt das Hinzufügen und Ersetzen von Daten." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Erlaubt die Sperrung bestimmter Tabellen." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Begrenzt die Anzahl neuer Verbindungen, welche ein Benutzer pro Stunde " "aufbauen darf." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Begrenzt die Anzahl der Abfragen, welche ein Benutzer pro Stunde senden darf." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9704,63 +9718,63 @@ msgstr "" "Begrenzt die Anzahl der Veränderungen, welche ein Benutzer pro Stunde an " "allen Datenbanken und Tabellen vornehmen darf." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Beschränkt die Anzahl der gleichzeitigen Verbindungen für diesen Benutzer." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Erlaubt die Anzeige der Prozesse aller Benutzer" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Hat keinen Effekt in dieser MySQL-Version." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Erlaubt das erneute Laden von Servereinstellungen und das Leeren der " "Zwischenspeicher zur Laufzeit." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Erlaubt dem Benutzer zu fragen, wo sich die Master- bzw. Slave-Systeme " "befinden." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Wird für die Replication-Slave-Systeme benötigt." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Erlaubt das Auslesen von Daten." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Gewährt Zugang zur vollständigen Datenbankliste." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Erlaubt das Ausführen von SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Erlaubt das Beenden des Servers." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9770,163 +9784,163 @@ msgstr "" "bereits erreicht ist; Wird für viele administrative Operationen, wie das " "Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Erlaubt das Erzeugen und Löschen Triggern" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Erlaubt das Verändern von gespeicherten Daten." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Keine Rechte." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Kein(e)" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Tabellenspezifische Rechte" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Hinweis: MySQL-Rechte werden auf Englisch angegeben" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administration" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globale Rechte" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Datenbankspezifische Rechte" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Ressourcenbeschränkungen" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Der Wert 0 (null) entfernt die Beschränkung." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Anmelde-Informationen" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Passwort nicht verändert" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Es wurde kein Benutzer gefunden." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Der Benutzer %s existiert bereits!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Der Benutzer wurde hinzugefügt." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Die Rechte für %s wurden geändert." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Sie haben die Rechte für %s widerrufen" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Das Passwort für %s wurde geändert." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Lösche %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Es wurden keine Benutzer zum Löschen ausgewählt!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Lade die Benutzertabellen neu" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Die gewählten Benutzer wurden gelöscht." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Die Benutzerprofile wurden neu geladen." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Rechte ändern" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Entfernen" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Alle exportieren" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Jeder" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Rechte für alle Benutzer" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Rechte für %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Benutzerübersicht" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Die ausgewählten Benutzer löschen" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Die gleichnamigen Datenbanken löschen." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9940,134 +9954,134 @@ msgstr "" "Änderungen vorgenommen wurden. In diesem Fall sollten Sie %sdie " "Benutzerprofile neu laden%s bevor Sie fortfahren." -#: server_privileges.php:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Spaltenspezifische Rechte" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Rechte zu folgender Datenbank hinzufügen" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Rechte zu folgender Tabelle hinzufügen" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Anmelde-Information ändern/Benutzer kopieren" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... behalte den alten bei." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... lösche den alten von den Benutzertabellen." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Datenbank für Benutzer" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Gewähre alle Rechte auf Datenbanken die mit dem Benuterznamen beginnen " "(username\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gewähre alle Rechte auf die Datenbank "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Benutzer mit Zugriff auf "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "datenbankspezifisch" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "Platzhalter" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Benutzer wurde hinzugefügt." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Unbekannter Fehler" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Verbindung zu Master %s fehlgeschlagen." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Log-Position des Masters nicht lesbar. Mögliches Rechteproblem auf dem " "Master." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Kann Master nicht wechseln" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Master-Server wurde erfolgreich auf %s geändert" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" "Dieser Server ist als Master in einem Replikations-Prozess konfiguriert." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Zeige den Master-Status" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Zeige verbundene Slaves" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10076,11 +10090,11 @@ msgstr "" "Dieser Server ist als nicht Master in einem Replikations-Prozess " "konfiguriert. Möchten Sie ihn konfigurieren?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Master-Konfiguration" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10094,19 +10108,19 @@ msgstr "" "repliziert werden soll)/nNur bestimmte Datenbanken replizieren/nBitte wählen " "Sie:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Repliziere alle Datenbanken bis auf:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Repliziere nur:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Bitte Datenbanken auswählen:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10115,7 +10129,7 @@ msgstr "" "hinzufügen. Danach den MySQL-Server neu starten." # translation from go to "OK" as defined in po file -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10125,84 +10139,84 @@ msgstr "" "Daraufhin sollten Sie eine Meldung sehen, dass dieser Server als Master " "konfiguriert ist" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread läuft nicht!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread läuft nicht!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Dieser Server ist als Slave in eienem Replikations Prozess konfiguriert. " "Möchten Sie:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Die Slave Statustabelle sehen" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Die Datenbanken mit dem Master abgleichen" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Kontrol-Slave:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Alles starten" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Alles stoppen" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Slave zurücksetzen" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Nur SQL-Thread starten" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Nur SQL-Thread stoppen" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Nur Ein-/Ausgabethread starten" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Nur Ein-/Ausgabethread stoppen" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Fehlerbehandlung:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Überspringen von Fehlern kann zu Synchronisationsverlust zwischen Master und " "Slave führen!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Überspringe aktuellen Fehler" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Überspringe nächsten" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "Fehler." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10211,12 +10225,12 @@ msgstr "" "Dieser Server ist nicht als Slave in einem Replikationsprozess konfiguriert. " "Möchten Sie ihn konfigurieren?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Der Thread %s wurde erfolgreich abgebrochen." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10224,115 +10238,115 @@ msgstr "" "phpMyAdmin konnte den Thread %s nicht abbrechen. Er wurde wahrscheinlich " "bereits geschlossen." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Bezeichner" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Abfragen-Zwischenspeicher" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Prozesse" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Temporäre Daten" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Verzögertes Einfügen (delayed inserts)" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Schlüssel-Zwischenspeicher" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Tabellenverknüpfungen (joins)" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Sortierung" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Transaktions-Koordinator" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Alle Tabellen aktualisieren (und schließen)" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Zeige alle offenen Tabellen" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Zeige alle Slave-Hosts" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Zeige den Slave-Status" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Den Abfragen-Zwischenspeicher leeren. (FLUSH)" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Laufzeit-Informationen" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Alle Status Variablen" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Überwachung" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Ratgeber" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Aktualisierungs-Intervall: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filter" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Beinhalten das Wort:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Zeige nur Warn-Werte" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Nach Kategorie filtern..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Zeige unformatierte Werte" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Verwandte Links:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Analyse durchführen" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Einführung" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10340,7 +10354,7 @@ msgstr "" "Der Ratgeber kann Empfehlungen zu Server-Variablen durch Analyse der Server-" "Status-Variablen geben." -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10350,7 +10364,7 @@ msgstr "" "Berechnungen und Faustregeln basieren und nicht umbedingt auf Ihrem System " "funktionieren müssen." -#: server_status.php:920 +#: server_status.php:919 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 " @@ -10360,7 +10374,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:922 +#: server_status.php:921 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 " @@ -10371,31 +10385,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:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Verbindungen seit Start: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Angaben" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Netzwerk-Datenverkehr seit Start: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10403,18 +10417,18 @@ msgstr "" "Dieser MySQL Server arbeitet als Master und Slave im " "Replikations-Prozess." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" "Dieser MySQL Server arbeitet als Master im Replikations-" "Prozess." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" "Dieser MySQL Server arbeitet als Slave im Replikations-Prozess." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10422,11 +10436,11 @@ msgstr "" "Für weitere Informationen über den Replikations-Status auf dem Server siehe " "Abschnitt Replikation." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Replikations-Status" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10435,35 +10449,35 @@ msgstr "" "wieder bei 0 beginnen, deshalb können diese Werte, wie sie vom MySQL Server " "ausgegeben werden, falsch sein." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Empfangen" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Gesendet" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "max. gleichzeitige Verbindungen" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Fehlversuche" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Abgebrochen" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Befehl" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10471,12 +10485,12 @@ msgstr "" "Die Anzahl der Verbindungen die aufgrund einer nicht richtig geschlossenen " "Verbindung zu einem nicht mehr erreichbaren Client abgebrochen wurden." -#: server_status.php:1321 +#: server_status.php:1320 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:1322 +#: server_status.php:1321 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 " @@ -10487,20 +10501,20 @@ msgstr "" "und eine temporäre Datei verwendet haben um die Statements der Transaktion " "zu speichern." -#: server_status.php:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 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:1325 +#: server_status.php:1324 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 " @@ -10512,11 +10526,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10524,7 +10538,7 @@ msgstr "" "Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei " "der Ausführung von Statements." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10532,7 +10546,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:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10540,23 +10554,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Anzahl der ausgeführten FLUSH-Befehle." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Anzahl der Anfragen, ein COMMIT auszuführen." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10566,7 +10580,7 @@ msgstr "" "kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle " "kennt. Dieser Vorgang wird "discovery" genannt." -#: server_status.php:1335 +#: 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, " @@ -10577,7 +10591,7 @@ msgstr "" "Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert " "ist)." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10586,7 +10600,7 @@ msgstr "" "dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und " "Tabellen korrekt indiziert sind." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10597,7 +10611,7 @@ msgstr "" "Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, " "wenn Sie einen Index-Scan durchführen." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10606,7 +10620,7 @@ msgstr "" "Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung " "von ORDER BY ... DESC." -#: server_status.php:1339 +#: 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 " @@ -10619,7 +10633,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:1340 +#: server_status.php:1339 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 " @@ -10632,36 +10646,36 @@ msgstr "" "sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile " "aus den Indexen ziehen, die Sie haben." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Anzahl der als "dirty" markierten Seiten." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Anzahl der unbenutzten Seiten." -#: server_status.php:1348 +#: 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 " @@ -10671,7 +10685,7 @@ msgstr "" "beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder " "entfernt werden können." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10683,11 +10697,11 @@ msgstr "" "aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Die Größe des Puffer-Pools in Seiten." -#: server_status.php:1351 +#: 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." @@ -10695,7 +10709,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:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10703,11 +10717,11 @@ msgstr "" "Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB " "eine Tabelle komplett sequentiell durchsucht." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB." -#: server_status.php:1354 +#: 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." @@ -10715,7 +10729,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:1355 +#: server_status.php:1354 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 " @@ -10730,53 +10744,53 @@ msgstr "" "geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist " "sollte dieser Wert klein sein." -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Bisher ausgeführte fsync()-Operationen." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Momentan anstehende fsync()-Operationen." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Momentan anstehende Lesezugriffe." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Momentan anstehende Schreizugriffe." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Wieviel Daten bisher gelesen wurden, in Byte." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Wie oft Daten gelesen wurden." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Wie oft Daten geschrieben wurden." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Wieviel Daten bisher geschrieben wurden, in Byte." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "Anzahl der ausgeführten doublewrite Zugriffe." -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -10784,35 +10798,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Getätigte fsync() Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Anstehende fsyncs für die Protokoll-Datei." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Anzahl erstellter Seiten." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10821,55 +10835,55 @@ msgstr "" "werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte " "umzurechnen." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Anzahl gelesener Seiten." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Anzahl geschriebener Seiten." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Momentan anstehende Zeilen-Sperren." -#: server_status.php:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Anzahl gelöschter Datensätze aller InnoDB Tabellen." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Anzahl der eingefügten Datensätze in alle InnoDB Tabellen." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Anzahl der Datensätze, die aus InnoDB-Tabellen gelesen wurden." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Anzahl der Datensätze, die in InnoDB-Tabellen aktualisiert wurden." -#: server_status.php:1387 +#: 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." @@ -10878,7 +10892,7 @@ msgstr "" "noch nicht auf die Platte zurück geschrieben (flush) wurden; auch bekannt " "als Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -10887,7 +10901,7 @@ msgstr "" "Dieser Wert kann dazu dienen die Auslastung des Schlüssel-Zwischenspeicher " "zu bestimmen." -#: server_status.php:1389 +#: server_status.php:1388 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 " @@ -10896,18 +10910,18 @@ msgstr "" "Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-" "Zwischenspeicher." -#: server_status.php:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "" "Prozentsatz des benutzten Schlüssel-Zwischenspeichers (berechneter Wert)" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10918,7 +10932,7 @@ msgstr "" "Die Zwischenspeicher-Zugriffsrate kann mit key_reads/key_read_requests " "berechnet werden." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10926,25 +10940,25 @@ msgstr "" "Schlüssel-Zwischenspeicher Fehlberechnung als Verhältnis zwischen " "physikalischen Lese-Operationen und Lese-Anfragen (berechneter Wert)" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 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:1397 +#: server_status.php:1396 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 " @@ -10954,7 +10968,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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10962,13 +10976,13 @@ msgstr "" "Die maximale Anzahl an Verbindungen die seit Serverstart gleichzeitig " "benutzt wurden." -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10976,20 +10990,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Anzahl der geöffneten Dateien." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Anzahl der geöffneten Tabellen." -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10999,19 +11013,19 @@ msgstr "" "Werte können Fragmentierungsprobleme aufzeigen, die durch eine FLUSH QUERY " "CACHE - Abfrage beseitigt werden können." -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Freier Speicher im Abfragen-Zwischenspeicher." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Anzahl an Abfrage-Zwischenspeicher-Anfragetreffer." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Die Anzahl der Abfragen die dem Zwischenspeicher hinzugefügt wurden." -#: server_status.php:1408 +#: 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 " @@ -11025,7 +11039,7 @@ msgstr "" "stets die Abfrage gelöscht, die am längsten unbenutzt im Zwischenspeicher " "lag." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11033,19 +11047,19 @@ msgstr "" "Die Anzahl der nicht im Zwischenspeicher eingetragenen Abfragen (nicht " "möglich, oder aufgrund der query_cache_type Einstellung)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Die Anzahl der Abfragen im Zwischenspeicher." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Zwischenspeicher." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Der Status der ausfallsicheren Replikation." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -11053,13 +11067,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -11068,7 +11082,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:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11076,16 +11090,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11093,13 +11107,13 @@ msgstr "" "Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread " "wiederversuchten Transaktionen." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11107,12 +11121,12 @@ msgstr "" "Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " "verbinden." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11122,25 +11136,25 @@ msgstr "" "wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, " "sort_buffer herauf zu setzen." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Anzahl der sortierten Datensätze." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "Wie oft eine Tabellensperre sofort erlangt wurde." -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11152,7 +11166,7 @@ msgstr "" "sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle" "(n) zerteilen oder Replikation benutzen." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11162,11 +11176,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Anzahl der momentan offenen Verbindungen." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11178,47 +11192,47 @@ msgstr "" "Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare " "Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "Prozess-Zwischenspeicher Erfolgsrate (berechneter Wert)" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Anzahl der Prozesse, die nicht schlafen." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Überwachung starten" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Einführung/Einrichtung" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Umordnen/bearbeiten der Schaubilder beendet" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Schaubild hinzufügen" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Schaubilder umordnen/bearbeiten" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Aktualisierungs-Intervall" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Schaubild-Spalten" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Schaubild-Anordnung" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -11227,15 +11241,15 @@ msgstr "" "Es empfiehlt sich dieses zu exportieren, wenn Sie eine aufwändige Anordnung " "eingerichtet haben." -#: server_status.php:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Zurücksetzen" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Einführung zur Überwachung" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11250,7 +11264,7 @@ msgstr "" "general_log viele Daten produzieren und die Serverauslastung um bis zu 15% " "erhöhen kann." -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11262,11 +11276,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:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Verwendung der Überwachung:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11277,7 +11291,7 @@ msgstr "" "Aktualisierungsintervall ändern oder beliebige Diagramme entfernen, wenn Sie " "das Zahnrad-Icon des entsprechenden Schaubilds verwenden." -#: server_status.php:1655 +#: server_status.php:1654 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 " @@ -11290,11 +11304,11 @@ msgstr "" "gruppierten Abfragen geladen. Sie können auf jedes SELECT Anweisung klicken, " "um diese weiter zu analysieren." -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Bitte beachten Sie:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11306,200 +11320,200 @@ 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:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Vordefiniertes Diagramm" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Status Variable(n)" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Serie auswählen:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Allgemein-überwacht" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "oder Variablen-Namen eingeben:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Den Wert als Unterschied zeigen" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Divisor hinzufügen" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Einheiten an Datenwerte anfügen" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Diese Serie hinzufügen" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Serien löschen" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Serien im Schaubild:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Protokoll Statistik" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Ausgewählte Zeit-Spanne:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Rufe nur SELECT, INSERT, UPDATE und DELETE Abfragen ab" -#: server_status.php:1747 +#: server_status.php:1746 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:1752 +#: server_status.php:1751 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:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Ergebnisse sind nach Abfrage-Text zusammengefasst." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Query Analyzer" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d Sekunde" msgstr[1] "%d Sekunden" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d Minute" msgstr[1] "%d Minuten" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Es konnte keine Verbindung zu Quell-Datenbank hergestellt werden" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Es konnte keine Verbindung zu Ziel-Datenbank hergestellt werden" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Datenbank '%s' existiert nicht." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Strukturabgleich" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Datenabgleich" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "nicht vorhanden" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Struktur-Unterschied" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Datenunterschied" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Spalte(n) hinzufügen" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Spalte(n) entfernen" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Spalte(n) ändern" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Index/Indices entfernen" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Index/Indices anwenden" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Zeile(n) aktualisieren" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Zeile(n) einfügen" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" "Möchten Sie alle vorhergehenden Datensätze aus den Ziel-Tabellen löschen?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Ausgewählte Änderungen anwenden" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Datenbanken abgleichen" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Ausgewählte Ziel-Tabellen wurden mit Quell-Tabellen abgeglichen." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Ziel-Tabelle wurde mit Quell-Tabelle abgeglichen" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Ausgeführte SQL-Anfragen" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Manuell eingeben" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Aktuelle Verbindung" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Konfiguration: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11507,19 +11521,19 @@ msgstr "" "Ziel-Datenbank wird komplett mit der Quell-Datenbank abgeglichen, wobei die " "Quell-Datenbank unverändert bleibt." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Setzen der Variable fehlgeschlagen" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Servervariablen und -einstellungen" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Wert für diese Sitzung" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Globaler Wert" @@ -11866,154 +11880,153 @@ msgstr "" msgid "Wrong data" msgstr "Fehlerhafte Daten" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Lesezeichen \"%s\" wird als Standard-Anzeigeabfrage verwendet." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Möchten Sie diese Abfrage wirklich ausführen?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Ansicht als PHP Code" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Geprüftes SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL-Abfrageergebnis" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Erstellt von" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Warnungen bei den Indizes der Tabelle `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Titel" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Die Tabelle %1$s wurde erfolgreich geändert" -#: tbl_alter.php:130 -#| msgid "The selected users have been deleted successfully." +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "Die Spalten wurden erfolgreich verschoben." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Säule" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Spalte" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Linie" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Profil" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Torte" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Gestapelt" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Titel des Reports" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "X-Achse:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Reihe:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Beschriftung X-Achse:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "X-Werte" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Beschriftung Y-Achse:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Y-Werte" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Die Tabelle %s existiert bereits!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Die Tabelle %1$s wurde erzeugt." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Dump (Schema) der Tabelle anzeigen" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "GIS-Darstellung anzeigen" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Breite" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Höhe" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Spaltenbeschriftung" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Kein --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Räumliche Spalte" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Neu zeichnen" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "In Datei speichern" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Dateiname" @@ -12029,30 +12042,30 @@ msgstr "Kann Index nicht in PRIMARY umbenennen!" msgid "No index parts defined!" msgstr "Keine Indizes definiert!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Index hinzufügen" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Index bearbeiten" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Indexname:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(Nur der Name des Primärschlüssels darf und muß \"PRIMARY\" " "lauten!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Indextyp:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "%s Spalte(n) zum Index hinzufügen" @@ -12075,153 +12088,153 @@ msgstr "Tabelle %s wurde nach %s verschoben." msgid "Table %s has been copied to %s." msgstr "Tabelle %s wurde nach %s kopiert." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Der Tabellenname ist leer!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Tabelle sortieren nach" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(einmalig)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Verschiebe Tabelle nach (Datenbank.Tabellenname):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Tabellenoptionen" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Tabelle umbenennen in" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopiere Tabelle nach (Datenbank.Tabellenname):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Zur kopierten Tabelle wechseln" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Hilfsmittel" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Tabelle defragmentieren" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" "Die Tabelle %s wurde geschlossen und zwischengespeicherte Daten gespeichert" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Leeren des Tabellenzwischenspeichers (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Daten oder Tabelle löschen" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Tabelle leeren (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Tabelle löschen (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Partitions-Hilfsmittel" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analysieren" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Überprüfen" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimieren" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Neuaufbauen" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Reparieren" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Entferne die Partitionierung" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Prüfe referentielle Integrität:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Tabellen anzeigen" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Speicherplatzverbrauch" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Datensatz-Statistiken" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "statisch" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dynamisch" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Zeilenlänge" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Zeilengröße" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Nächster Autoindex" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Fehler beim Erzeugen eines Fremdschlüssels für %1$s (überprüfen Sie die " "Datentypen)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Interne Beziehung" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12229,104 +12242,103 @@ msgstr "" "Eine interne Beziehung ist nicht notwendig, wenn bereits ein entsprechender " "FOREIGN KEY existiert." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Beschränkung für auswärtige Schlüssel" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Räumlich" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Unterschiedliche Werte" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Primärschlüssel hinzufügen" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Eindeutigen Index hinzufügen" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "SPATIAL Index hinzufügen" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "FULLTEXT Index hinzufügen" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "kein(e)" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Spalte %s wurde gelöscht" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Ein Primärschlüssel wurde in %s erzeugt" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Ein Index wurde in %s erzeugt" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Weitere Aktionen anzeigen" -#: tbl_structure.php:621 tbl_structure.php:686 -#| msgid "Remove column(s)" +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "Spalten verschieben" -#: tbl_structure.php:622 +#: tbl_structure.php:624 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:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "View/Ansicht bearbeiten" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Beziehungsübersicht" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Tabellenstruktur analysieren" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Spalte hinzufügen" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "An das Ende der Tabelle" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "An den Anfang der Tabelle" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Nach %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Index über %s Spalten anlegen" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "partitioniert" @@ -12478,70 +12490,39 @@ msgstr "Verfolge diese Datenbearbeitungsbefehle (DML):" msgid "Create version" msgstr "Erzeuge Version" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\") für " -"zwei unterschiedliche Spalten" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Zusätzliche Suchkriterien" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Diese Spalte verwenden, um jeden Punkt zu benennen" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Maximale Anzahl der darzustellenden Datensätze" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Punkte anzeigen/bearbeiten" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Anleitung" - -#: tbl_zoom_select.php:444 -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Zoom zurücksetzen" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Mehr Designs herunterladen!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Verfügbare MIME-Typen" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Kursiv dargestellte MIME-Typen besitzen keine untergliederten Umwandlungs-" "Funktionen" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Verfügbare Umwandlungen" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Beschreibung" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Sie haben nicht genug Rechte um fortzufahren!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Benutzer wurde geändert." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "VIEW Name" diff --git a/po/el.po b/po/el.po index c591b7da1c..755f12df62 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-03-22 09:27+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 0.8\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Εμφάνιση όλων" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Σελίδα:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "κλείσατε το μητρικό παράθυρο ή ο φυλλομετρητής σας δεν επιτρέπει τις " "ανανεώσεις μεταξύ παραθύρων λόγω ρυθμίσεων ασφαλείας." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Εκτέλεση" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Όνομα κλειδιού" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Περιγραφή" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Χρήση αυτής της τιμής" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Σχόλιο βάσης: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Σχόλια πίνακα" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Στήλη" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Κενό" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Προεπιλογή" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Σύνδεση με" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Σχόλια" @@ -197,14 +198,14 @@ msgstr "Σχόλια" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Όχι" @@ -217,122 +218,122 @@ msgstr "Όχι" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ναι" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Εμφάνιση σκαριφήματος (σχήματος) της βάσης δεδομένων" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Δεν βρέθηκαν πίνακες στη βάση δεδομένων." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Επιλογή όλων" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Αποεπιλογή όλων" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Το όνομα της βάσης δεδομένων είναι κενό!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Η βάση δεδομένων %s μετονομάστηκε σε %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Η βάση δεδομένων %s αντιγράφηκε στη %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Μετονομασία βάσης δεδομένων σε" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Μετακίνηση βάσης δεδομένων σε" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Η βάση δεδομένων %s διεγράφη." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Διαγραφή της βάση δεδομένων (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Αντιγραφή βάσης δεδομένων σε" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Μόνο η δομή" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Δομή και δεδομένα" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Μόνο τα δεδομένα" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE πριν την αντιγραφή" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Προσθήκη %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Προσθήκη τιμής AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Προσθήκη περιορισμών" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομένων" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Σύνθεση" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -341,59 +342,59 @@ msgstr "" "Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν " "απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματος" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Πίνακας" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Εγγραφές" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Μέγεθος" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "σε χρήση" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Δημιουργία" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Τελευταία ενημέρωση" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Tελευταίος έλεγχος" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -404,210 +405,210 @@ msgstr[1] "%s πίνακες" msgid "You have to choose at least one column to display" msgstr "Πρέπει να επιλέξετε τουλάχιστον μία στήλη για εμφάνιση" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Αλλαγή στον %sεικονικός μάστορας%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Ταξινόμηση" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Αύξουσα" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Φθίνουσα" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Εμφάνιση" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Κριτήρια" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Εισαγωγή" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Τομή" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Διαγραφή" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ενωση" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Τροποποίηση" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Προσθήκη/Αφαίρεση Γραμμής Κριτηρίων" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Προσθήκη/Αφαίρεση Στηλών" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Ενημέρωση Ερωτήματος" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Χρήση Πινάκων" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Εντολή SQL στη βάση δεδομένων %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Υποβολή ερωτήματος" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Άρνηση πρόσβασης" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "τουλάχιστον έναν από τους όρους" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "όλους τους όρους" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "την ακριβή φράση" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "ως κανονική έκφραση" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Αποτελέσματα αναζήτησης για «%s» %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Σύνολο: %s αποτέλεσμα" msgstr[1] "Σύνολο: %s αποτελέσματα" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Αναζήτηση στη βάση δεδπμένων" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Λέξεις ή τιμές για αναζήτηση (μπαλαντέρ: «%»):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Έυρεση:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Οι λέξεις χωρίζονται από τον χαρακτήρα διαστήματος (« »)." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Μέσα στους πίνακες:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Εσωτερικό πεδίο:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Δεν βρέθηκαν πίνακες στη βάση δεδομένων" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "άγνωστο" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Ο πίνακας %s άδειασε" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Η προβολή %s διαγράφτηκε" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Ο πίνακας %s διεγράφη" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Η παρακολούθηση είναι ενεργοποιημένη." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Η παρακολούθηση δεν είναι ενεργοποιημένη." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -616,186 +617,187 @@ msgstr "" "Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην " "%sτεκμηρίωση%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Αναπαραγωγή" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Σύνολο" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" "Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Με τους επιλεγμένους:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Επιλογή όλων" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Επιλογή πινάκων με περίσσεια" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Εξαγωγή" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Άδειασμα" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Διαγραφή" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Έλεγχος πίνακα" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Βελτιστοποίηση πίνακα" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Επιδιόρθωση πίνακα" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Ανάλυση πίνακα" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Προσθήκη προθέματος στον πίνακα" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Αντικατάσταση προθέματος πίνακα" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Αντιγραφή πίνακα με πρόθεμα" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Περιληπτικός πίνακας δεδομένων" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Παρακολουθούμενοι πίνακες" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Βάση" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Τελευταία έκδοση" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Δημιουργήθηκε" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Ενημερώθηκε" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Κατάσταση" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Ενέργεια" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτόν τον πίνακα" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "ενεργή" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "μη ενεργή" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Εκδόσεις" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Αναφορά παρακολούθησης" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Στιγμιότυπο δομής" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Μη παρακολουθούμενοι πίνακες" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Παρακολούθηση πίνακα" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Καταγραφή Βάσης Δεδομένων" @@ -807,16 +809,16 @@ msgstr "Μη έγκυρος τύπος!" msgid "Selected export type has to be saved in file!" msgstr "Ο επιλεγμένος τύπος εξαγωγής πρέπει να αποθηκευτεί σε αρχείο!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Μη έγκυρες παράμετροι!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Δεν υπάρχει διαθέσιμος χώρος για την αποθήκευση του αρχείου %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -824,12 +826,12 @@ msgstr "" "Το αρχείο %s υπάρχει ήδη στον διακομιστή, για αυτό επιλέξτε διαφορετικό " "όνομα αρχείου ή ενεργοποιήστε την επιλογή αντικατάστασης." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Ο διακομιστής δεν έχει δικαιώματα αποθήκευσης του αρχείου %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." @@ -838,86 +840,86 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." msgid "Invalid export type" msgstr "Μη έγκυρος τύπος εξαγωγής" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Τιμή για τη στήλη «%s»" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Χρήση του OpenStreetMaps ως Βασικό Επίπεδο" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Γεωμετρία" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Σημείο" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "Χ" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Υ" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Σημείο %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Προσθήκη σημείου" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Κείμενο γραμμής" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Εξωτερικός δακτύλιος" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Εσωτερικός δακτύλιος" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Προσθήκη κειμένου γραμμής" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Προσθήκη εσωτερικού δακτυλίου" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Πολύγωνο" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Προσθήκη πολυγώνου" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Προσθήκη γεωμετρίας" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Εξαγόμενο" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -925,7 +927,7 @@ msgstr "" "Επιλέξτε «GeomFromText» από τη στήλη «συνάρτηση» και επικολήστε το παρακάτω " "κείμενο στο πεδίο «Τιμή»" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -934,21 +936,21 @@ msgstr "" "Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " "%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Εμφάνιση σελιδοδείκτη" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Η ετικέτα διεγράφη." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Δεν ήταν δυνατή η ανάγνωση του αρχείου" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -958,7 +960,7 @@ msgstr "" "υποστήριξη για αυτή δεν έχει εφαρμοστεί ή απενεργοποιηθεί από τις ρυθμίσεις " "σας." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -969,29 +971,29 @@ msgstr "" "της ΡΗΡ. Δείτε τις [a@./Documentation.html#faq1_16@Documentation]ΣΑΕ 1.16[/" "a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Αδύνατη η μετατροπή της κωδικοποίησης χωρίς τη βιβλιοθήκη μετατροπής " "κωδικοποίησης" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Αδύνατη η φόρτωση προσθέτων εισαγωγής, για αυτό ελέξτε την εγκατάστασή σας!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Η εισαγωγή ολοκληρώθηκε επιτυχώς, %d ερωτήματα εκτελέστηκαν." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -999,7 +1001,7 @@ msgstr "" "Το χρονικό όριο του κώδικα εξαντλήθηκε, οπότε αν θέλετε να τελειώσετε την " "εισαγωγή, επανυποβάλτε το ίδιο αρχείο και η εισαγωγή θα συνεχίσει." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1008,25 +1010,25 @@ msgstr "" "σημαίνει ότι το phpMyAdmin δεν θα μπορέσει να τελειώσει την εισαγωγή εκτός " "και αν αυξήσετε τα χρονικά όρια της php." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Επιστροφή" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "Το phpMyAdmin είναι πιο φιλικό με έναν που υποστηρίζει frames " "φυλλομετρητή." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί." @@ -1036,7 +1038,7 @@ msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποι msgid "Do you really want to execute \"%s\"?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Πρόκειται να DESTROY μια ολόκληρη βάση δεδομένων!" @@ -1076,7 +1078,7 @@ msgstr "Προσθήκη Ευρετηρίου" msgid "Edit Index" msgstr "Επεξεργασία ευρετηρίου" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Προσθήκη %d στήλης(ών) στο ευρετήριο" @@ -1094,16 +1096,16 @@ msgstr "Το όνομα του συστήματος είναι κενό!" msgid "The user name is empty!" msgstr "Το όνομα του χρήστη είναι κενό!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Ο κωδικός πρόσβασης είναι κενός!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Προσθήκη χρήστη" @@ -1120,23 +1122,24 @@ msgstr "Διαγραφή των επιλεγμένων χρηστών" msgid "Close" msgstr "Κλείσιμο" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Επεξεργασία" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Διάγραμμα τρέχουσας κυκλοφορίας" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Διάγραμμα τρέχουσας σύνδεσης/διαδικασίας" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Διάγραμμα τρέχοντος ερωτήματος" @@ -1146,24 +1149,24 @@ msgstr "Στατικά δεδομένα" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Σύνολο" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Άλλα" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1183,7 +1186,7 @@ msgstr "Κυκλοφορία Διακομιστή (σε KB)" msgid "Connections since last refresh" msgstr "Συνδέσεις από την τελευταία ανανέωση" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Διεργασίες" @@ -1201,7 +1204,7 @@ msgstr "Ερωτήσεις από την τελευταία ανανέωση" msgid "Questions (executed statements by the server)" msgstr "Ερωτήσεις (εκτελεσμένες δηλώσεις από τον διακομιστή)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Στατιστικά ερωτήματος" @@ -1246,14 +1249,14 @@ msgid "System swap" msgstr "Αδράνεια συστήματος" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1305,32 +1308,32 @@ msgstr "Σταλθέντα Bytes" msgid "Bytes received" msgstr "Ληφθέντα Bytes" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Συνδέσεις" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1344,11 +1347,11 @@ msgstr "%d πίνακας(ες)" msgid "Questions" msgstr "Ερωτήσεις" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Κίνηση" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Ρυθμίσεις" @@ -1368,11 +1371,11 @@ msgstr "Προσθήκη διαγράμματος στο πλέγμα" msgid "Please add at least one variable to the series" msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στις σειρές" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Καμία" @@ -1474,7 +1477,7 @@ msgstr "Αλλαγή ρυθμίσεων" msgid "Current settings" msgstr "Τρέχουσες ρυθμίσεις" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Τίτλος Διαγράμματος" @@ -1565,7 +1568,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Χρόνος" @@ -1665,10 +1668,10 @@ msgstr "" "Απέτυχε η δημιουργία καννάβου διαγράμματος με την εισαγωγή ρυθμίσεων. " "Επαναφορά στην προεπιλεγμένη ρύθμιση..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Εισαγωγή" @@ -1720,9 +1723,9 @@ msgstr "Χρησιμοποιημένη μεταβλητή / τύπος" msgid "Test" msgstr "Έλεγχος" -#: 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 +#: 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 msgid "Cancel" msgstr "Άκυρο" @@ -1734,11 +1737,11 @@ msgstr "Φόρτωση" msgid "Processing Request" msgstr "Προώθηση Αιτήματος" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Σφάλμα στην Προώθηση του Αιτημάτος" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Δεν έχετε επιλέξει βάσεις δεδομένων." @@ -1750,9 +1753,9 @@ msgstr "Διαγραφή Στήλης" msgid "Adding Primary Key" msgstr "Προσθήκη Πρωτεύοντος Κλειδιού" -#: 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 +#: 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 msgid "OK" msgstr "Εντάξει" @@ -1792,19 +1795,19 @@ msgstr "Απόκρυψη ευρετηρίων" msgid "Show indexes" msgstr "Εμφάνιση ευρετηρίων" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Απενεργοποίηση ελέγχων μη διακριτών κλειδιών" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Ενεργοποιημένη" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1835,7 +1838,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "Επεξεργαστής ENUM/SET" @@ -1874,8 +1877,8 @@ msgstr "Προβολή παραθύρου ερωτήματος" msgid "No rows selected" msgstr "Δεν επιλέχθηκαν γραμμές" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Αλλαγή" @@ -1883,18 +1886,18 @@ msgstr "Αλλαγή" msgid "Query execution time" msgstr "Χρόνος εκτέλεσης ερωτήματος" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Αποθήκευση" @@ -1906,7 +1909,7 @@ msgstr "Απόκρυψη κριτηρίων αναζήτησης" msgid "Show search criteria" msgstr "Προβολή κριτηρίων αναζήτησης" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Εστιασμένη Αναζήτηση" @@ -1956,12 +1959,12 @@ msgstr "Ααποτελέσματα ερωτήματος" msgid "Data point content" msgstr "Περιεχόμενο δείκτη δεδομένων" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Παράληψη" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Αντιγραφή" @@ -1981,7 +1984,7 @@ msgstr "Επιλέξτε Μη Διακριτό Κλειδί" msgid "Please select the primary key or a unique key" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Επιλέξτε στήλη για εμφάνιση" @@ -2077,7 +2080,7 @@ msgstr "Παραγωγή" msgid "Change Password" msgstr "Αλλαγή Κωδικού Πρόσβασης" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Περισσότερα" @@ -2168,63 +2171,63 @@ msgid "December" msgstr "Δεκεμβρίου" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Ιαν" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Φεβ" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Μαρ" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Απρ" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Μάη" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Ιουν" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Ιουλ" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Αυγ" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Σεπ" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Οκτ" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Νοε" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Δεκ" @@ -2262,32 +2265,32 @@ msgid "Sun" msgstr "Κυρ" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Δευ" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Τρί" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Τετ" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Πέμ" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Παρ" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Σάβ" @@ -2405,16 +2408,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "ανά δευτερόλεπτο" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "ανά λεπτό" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "ανά ώρα" @@ -2437,21 +2440,207 @@ msgstr "" msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Αποθήκευση επεξεργασμένων δεδομένων" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Επαναφορά κατανομής στηλών" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Αρχή" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Προηγούμενη" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Επόμενη" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Τέλος" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Εγγραφή έναρξης" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Αριθμός εγγραφών" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Μορφή" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "οριζόντια" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "οριζόντια (στραμμένες επικεφαλίδες)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "κάθετη" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "Κεφαλίδες κάθε %s εγγραφές" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Ταξινόμηση ανά κλειδί" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Επιλογές" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Περιληπτικά κείμενα" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Πλήρη κείμενα" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Κλειδί συσχέτισης" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Στήλη προβολής συσχέτισης" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Εμφάνιση δυαδικών περιεχομένων" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Εμφάνιση περιεχομένων BLOB" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά HEX" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Απόκρυψη μετατροπής περιηγητή" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Καλά Γνωστό Κείμενο" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Καλά Γνωστό Δυαδικό" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Η εγγραφή έχει διαγραφεί" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Τερματισμός" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Ίσως είναι κατά προσέγγιση. Δείτε τις [a@./Documentation." +"html#faq3_11@Documentation]ΣΑΕ 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "στην εντολή" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Εμφάνιση εγγραφών" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "συνολικά" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Εμφάνιση διαγράμματος" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Οπτικοποίηση δεδομένων GIS" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Δημιουργία προβολής" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Δεν βρέθηκε η σύνδεση" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Πολλά μηνύματα σφάλματος, ορισμένα δεν εμφανίζονται." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Το αρχείο δεν ήταν αρχείο αποστολής." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php." "ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2459,27 +2648,27 @@ msgstr "" "Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε " "στη φόρμα HTML." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Χάθηκε ένας προσωρινός φάκελος." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2487,26 +2676,41 @@ msgstr "" "Σφάλμα μετακίνησης του αρχείου αποστολής. Δείτε τις [a@./Documentation." "html#faq1_11@Documentation]ΣΑΕ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Σφάλμα κατά τη μετακίνηση αρχείου αποστολής." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Αδύνατη η ανάγνωση (μετακίνηση) του αρχείου αποστολής." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Άνοιγμα νέου παραθύρου phpMyAdmin" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένα cookies." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένα cookies." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Ευρετήρια" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Μοναδικό" @@ -2519,8 +2723,8 @@ msgstr "Συμπιεσμένο" msgid "Cardinality" msgstr "Μοναδικότητα" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Σχόλιο" @@ -2543,128 +2747,128 @@ msgstr "" "Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να " "απομακρυνθεί." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Βάσεις δεδομένων" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Διακομιστής" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Δομή" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Προσθήκη" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Λειτουργίες" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Παρακολούθηση" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Ο πίνακας φαίνεται να είναι άδειος!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Η βάση δεδομένων φαίνεται να είναι άδεια!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Επερώτημα κατά παράδειγμα" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Δικαιώματα" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Εργασίες" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Συμβάντα" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Σχεδιαστής" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Χρήστες" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Συγχρονισμός" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Δυαδικό αρχείο καταγραφής" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Μεταβλητές" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Σύνολο χαρακτήρων" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Πρόσθετα" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Μηχανές" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Λάθος" @@ -2689,7 +2893,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Εισήχθηκε %1$d γραμμή." msgstr[1] "Εισήχθηκαν %1$d γραμμές." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Σφάλμα κατά τη δημιουργία του PDF:" @@ -2785,16 +2989,100 @@ 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 +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 +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 +msgid "Value" +msgstr "Τιμή" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Αναζήτηση Πίνακα" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Επεξεργασία/Προσθήκη" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Επιλογή πεδίων (τουλάχιστον ένα):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Προσθήκη νέου όρου (σώμα της πρότασης «where» πρότασης):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Εγγραφές ανά σελίδα" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Σειρά εμφάνισης:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Χρησιμοποιήστε αυτή τη στήλη για την ετικέτα κάθε σημείου" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Μέγιστος αριθμός γραμμών για εκτύπωση" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Αναζήτηση μη διακριτών τιμών" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Πρόσθετα κριτήρια αναζήτησης" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Εκτέλεσε ένα «επερώτημα ανά παράδειγμα» (χαρακτήρας μπαλαντέρ «%») για δύο " +"διαφρετικές στήλες" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Εκτέλεσε ένα «επερώτημα κατά παράδειγμα» (χαρακτήρας μπαλαντέρ «%»)" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Αναζήτηση/Επεξεργασία των σημείων" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Πως να το χρησιμοποιήσετε" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Επαναφορά" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Βρέθηκε μη έγκυρη διαδρομή εικόνας για το θέμα %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Προεπισκόπηση μη διαθέσιμη." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "πάρτε το" @@ -2813,7 +3101,7 @@ msgstr "Το θέμα %s δεν βρέθηκε!" msgid "Theme path not found for theme %s!" msgstr "Η διαδρομή θέματος δεν βρέθηκε για το θέμα %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Θέμα" @@ -3112,13 +3400,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Αδύνατη η σύνδεση: άκυρες ρυθμίσεις." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Καλωσήρθατε στο %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3127,7 +3415,7 @@ msgstr "" "Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε " "να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3144,44 +3432,38 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Αδύνατη η χρήση του Blowfish από το mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένα cookies." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Σύνδεση" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Μπορείτε να εισάγετε όνομα διακομιστή/διεύθυνση ΙΡ και θύρα χωρισμένα με " "κενό." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Διακομιστής:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Όνομα χρήστη:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Κωδικός πρόσβασης:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Επιλογή Διακομιστή" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένα cookies." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3189,7 +3471,7 @@ msgstr "" "Η σύνδεση χωρίς κωδικό πρόσβασης απαγορεύεται από τις ρυθμίσεις (δείτε τη " "μεταβλητή AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" @@ -3197,13 +3479,13 @@ msgstr "" "Καμιά δραστηριότητα εδώ και %s δευτερόλεπτα τουλάχιστον, για αυτό " "ξανασυνδεθείτε" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Δεν ήταν δυνατή η σύνδεση με τον διακομιστή MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Λανθασμένο όνομα χρήστη/κωδικός πρόσβασης. Άρνηση πρόσβασης." @@ -3235,7 +3517,7 @@ msgstr "κοινόχρηστο" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Πίνακες" @@ -3247,13 +3529,13 @@ msgstr "Πίνακες" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Δεδομένα" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Περίσσεια" @@ -3278,19 +3560,11 @@ msgstr "Έλεγχος δικαιωμάτων για τη βάση «%s»." msgid "Check Privileges" msgstr "Έλεγχος Δικαιωμάτων" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "δυνατή αξιοποίηση" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "ανιχνεύτηκε αριθμητικό κλειδί" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Αδύνατη η ανάγνωση του αρχείου ρυθμίσεων" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3298,12 +3572,12 @@ msgstr "" "Αυτό σημαίνει, συνήθως, ότι υπάρχει συντακτικό λάθος, για αυτό ελέγξτε τα " "σφάλματα που εμφανίζονται παρακάτω." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3315,208 +3589,194 @@ msgstr "" "Η εντολή $cfg['PmaAbsoluteUri'] ΠΡΕΠΕΙ να οριστεί στο αρχείο " "ρυθμίσεων!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Μη έγκυρο ευρετήριο διακομιστή: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις " "σας." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "προσπάθεια επανεγγραφής GLOBALS" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "δυνατή αξιοποίηση" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "ανιχνεύτηκε αριθμητικό κλειδί" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Μέγιστο μέγεθος: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Τεκμηρίωση" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "Εντολή SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "Η MySQL επέστρεψε το μήνυμα: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Αδύνατη η σύνδεση στο εγκυροποιητή SQL!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Ανάλυση SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Χωρίς ανάλυση SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "χωρίς κώδικα PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Ανανέωση" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Παράβλεψη επικύρωσης SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Επικύρωση SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Εσωτερική επεξεργασία αυτού του ερωτήματος" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Εσωτερικό" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Δημιουργία προφίλ" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Κυρ" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y στις %H:%M:%S" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Απολεσθείσα παράμετρος:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Αρχή" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Προηγούμενη" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Επόμενη" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Τέλος" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Μεταπήδηση στην βάση «%s»." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα, για αυτό δείτε %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Πατήστε για εναλλαγή" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Περιηγηθείτε στον υπολογιστή σας:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Επιλογή από το φάκελο αποστολής του διακομίστή ιστού %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" "Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Δεν υπάρχουν αρχεία προς αποστολή" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Εκτέλεση" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Εκτύπωση" @@ -3546,8 +3806,8 @@ msgid "Closed" msgstr "Κλεισμένο" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Απενεργοποιημένη" @@ -3691,9 +3951,9 @@ msgstr "Επαναφορά προεπιλεγμένης τιμής" msgid "Allow users to customize this value" msgstr "Επιτρέπεται στους χρήστες να προσαρμόσουν αυτή την τιμή" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Επαναφορά" @@ -3916,10 +4176,6 @@ msgstr "Προτεινόμενη δομή πίνακα" msgid "Show binary contents as HEX by default" msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά HEX ως προεπιλογή" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Εμφάνιση λίστας βάσεων δεδομένων ως λίστα και όχι ως αναδυόμενο μενού" @@ -3976,7 +4232,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Μέγιστος χρόνος εκτέλεσης" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Αποστολή" @@ -3985,7 +4241,7 @@ msgid "Character set of the file" msgstr "Σύνολο χαρακτήρων αρχείου" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Μορφοποίηση" @@ -4089,7 +4345,7 @@ msgid "MIME type" msgstr "Τύπος MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Συσχετίσεις" @@ -5717,9 +5973,9 @@ msgstr "Απαιτεί την ενεργοποίηση του Εγκυροποι #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Κωδικός πρόσβασης" @@ -6015,32 +6271,24 @@ msgstr "Ελέξτε τα δικαιώματα του φακέλου που πε msgid "Details..." msgstr "Λεπτομέρειες..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Ίσως είναι κατά προσέγγιση. Δείτε τις [a@./Documentation." -"html#faq3_11@Documentation]ΣΑΕ 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Αλλαγή κωδικού πρόσβασης" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Χωρίς Κωδικό Πρόσβασης" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Επαναεισαγωγή" @@ -6061,22 +6309,22 @@ msgstr "Δημιουργία βάσης δεδομένων" msgid "Create" msgstr "Δημιουργία" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Χωρίς Δικαιώματα" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Όνομα" @@ -6234,26 +6482,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Μετατροπή κωδικοποίησης:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "committed on %1$s by %2$s" msgstr "Δημιουργία έκδοσης %1$s του %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "authored on %1$s by %2$s" @@ -6376,174 +6624,28 @@ msgstr "Επιλογές Ορισμένης Μορφής:" msgid "Language" msgstr "Γλώσσα" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Αποθήκευση επεξεργασμένων δεδομένων" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Επαναφορά κατανομής στηλών" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Εγγραφή έναρξης" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Αριθμός εγγραφών" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Μορφή" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "οριζόντια" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "οριζόντια (στραμμένες επικεφαλίδες)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "κάθετη" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Κεφαλίδες κάθε %s εγγραφές" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Ταξινόμηση ανά κλειδί" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Επιλογές" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Περιληπτικά κείμενα" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Πλήρη κείμενα" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Κλειδί συσχέτισης" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Στήλη προβολής συσχέτισης" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Εμφάνιση δυαδικών περιεχομένων" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Εμφάνιση περιεχομένων BLOB" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Απόκρυψη μετατροπής περιηγητή" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Καλά Γνωστό Κείμενο" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Καλά Γνωστό Δυαδικό" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Η εγγραφή έχει διαγραφεί" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Τερματισμός" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "στην εντολή" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Εμφάνιση εγγραφών" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "συνολικά" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Εμφάνιση διαγράμματος" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Οπτικοποίηση δεδομένων GIS" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Δημιουργία προβολής" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Δεν βρέθηκε η σύνδεση" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Πληροφορίες έκδοσης" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Αρχικός φάκελος δεδομένων" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Το κοινό τμήμα της διαδρομής φακέλου για όλα τα αρχεία δεδομένων της InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Αρχεία δεδομένων" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Αυτόματη επέκταση αρίθμηση" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6551,11 +6653,11 @@ msgstr "" "Το μέγεθος της αύξησης για την επέκταση του μεγέθους ενός αυτόματα " "επεκτεινόμενου χώρου πίνακα όταν πληρωθεί." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Μέγεθος buffer pool" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6563,79 +6665,79 @@ msgstr "" "Το μέγεθος της μνήμης buffer στην InnoDB χρησιμοποιείται σε λανθάνοντα " "δεδομένα και ευρετήρια των πινάκων της." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Κατάσταση InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Χρήση Buffer Pool" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "σελίδες" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Ελέυθερες σελίδες" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Προβληματικές σελίδες" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Σελίδες που περιέχουν δεδομένα" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Σελίδες για να εκκαθαριστούν" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Απασχολημένες σελίδες" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Κλειδωμένες σελίδες" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Δραστηριότητα Buffer Pool" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Αιτήσεις ανάγνωσεης" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Αιτήσεις εγγραφής" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Απώλειες ανάγνωσης" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Αναμονές εγγραφής" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Απώλειες ανάγνωσης σε ποσοστό" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Αναμονές εγγραφής σε ποσοστό" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Μέγεθος δείκτη δεδομένων" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6644,11 +6746,11 @@ msgstr "" "εντολή CREATE TABLE για πίνακες MyISAM όταν δεν έχει οριστεί η επιλογή " "MAX_ROWS." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Αυτόματη κατάσταση επαναφοράς" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6656,11 +6758,11 @@ msgstr "" "Η κατάσταση για την αυτόματη επαναφορά για κατεστραμμένους πίνακες MyISAM, " "όπως ορίστηκε στην επιλογή εκκίνησης διακομιστή --myisam-recover." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Μέγιστο μέγεθος αρχείων προσωρινής ταξινόμησης" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6670,11 +6772,11 @@ msgstr "" "χρησιμοποιηθεί όταν επαναδημιουργείται ένα ευρετήριο MyISAM (κατά την " "εκτέλεση των εντολών REPAIR TABLE, ALTER TABLE ή LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Μέγιστο μέγεθος προσωρινών αρχείων στη δημιουργία ευρετηρίου" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6684,11 +6786,11 @@ msgstr "" "MyISAM θα είναι μεγαλύτερο από τη χρήση λανθάνουσας μνήμης κλειδιού από την " "ορισμένη εδώ τιμή, προτιμήστε τη μέθοδο λανθάνουσας μνήμης κλειδιού." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Προσπάθειες επιδιόρθωσης" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6697,11 +6799,11 @@ msgstr "" "δημιουργούνται παράλληλα (κάθε ευρετήριο ως ξεχωριστή διεργασία) κατά την " "Επιδιόρθωση στη διαδικασία ταξινόμησης." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Μέγεθος buffer ταξινόμησης" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6710,11 +6812,11 @@ msgstr "" "εκτέλεση της εντολής REPAIR TABLE ή όταν δημιουργούνται ευρετήρια με τις " "εντολές CREATE INDEX ή ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Μέγεθος λανθάνουσας μνήμης ευρετηρίου" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6723,11 +6825,11 @@ msgstr "" "μνήμη ευρετηρίου. Προεπιλεγμένη τιμή είναι τα 32MB. Η μνήμη αυτή " "χρησιμοποιείται μόνο για την απομνημόνευση σελίδων ευρετηρίου." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Μέγεθος λανθάνουσας μνήμης εγγραφών" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6738,11 +6840,11 @@ msgstr "" "έιναι 32MB. Αυτή η μνήμη χρησιμοποιείται για την αποθήκευση αλλαγών στα " "διαχειριζόμενα δεδομένα (.xtd) και στα αρχεία δείκτη γραμμής (.xtr)." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Μέγεθος λανθανουσας μνήμης καταγραφής" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6750,11 +6852,11 @@ msgstr "" "Το μέγεθος της μνήμης που χρησιμοποιείται στη λανθάνουσα μνήμη καταγραφών. Η " "προεπιλογή είναι 16MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Όριο αρχείου καταγραφής" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6762,11 +6864,11 @@ msgstr "" "Το μέγεθος της καταγραφής πριν την ανατροπή και τη δημιουργία νέου αρχείου " "καταγραφής. Η προεπιλεγμένη τιμή είναι 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Μέγεθος buffer δραστηριοτήτων" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6774,11 +6876,11 @@ msgstr "" "Το μέγεθος του καθολικού buffer καταγραφής (η μηχανή δεσμεύει 2 buffers " "αυτού του μεγέθους). Η προεπιλογή είναι 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Συχνότητα σημείου ελέγχου" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6786,11 +6888,11 @@ msgstr "" "Το πλήθος των εγγεγραμμένων δεδομένων στην καταγραφή πριν το σημείο ελέγχου. " "Η προεπιλεγμένη τιμή είναι 24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Όριο καταγραφής δεδομένων" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6803,11 +6905,11 @@ msgstr "" "μεταβλητή μπορεί να αυξηθεί για να αυξηθεί το συνολικό πλήθος των δεδομένων " "που μπορούν να αποθηκευτούν στη βάση δεδομένων." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Όριο σκουπιδιών" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6815,11 +6917,11 @@ msgstr "" "Το ποσοστό των σκουπιδιών στο αρχείο καταγραφής δεδομένων πριν συμπιεστεί. " "Λαμβάνει τιμές από 1 έως 99. Προεπιλεγμένη τιμή είναι το 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Μέγεθος buffer καταγραφής" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6830,27 +6932,27 @@ msgstr "" "buffer ανά διεργασία, αλλά μόνο αν η διεργασία απαιτείται για την εγγραφή " "αρχείου καταγραφής δεδομένων." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Αναπτυγμένο μέγεθος αρχείου δεδομένων" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Το αναπτυγμένο μέγεθος των αρχείων διαχειρισμένων δεδομένων (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Αναπτυγμένο μέγεθος αρχείου γραμμής" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Το αναπτυγμένο μεγεθος των αρχείων δείκτη γραμμής (.xtr)." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Πλήθος γραμμών αρχείου καταγραφής" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6862,7 +6964,7 @@ msgstr "" "τιμή, τότε τα παλαιά αρχεία θα διαγράφονται, διαφορετικά μετονομάζονται και " "τους δίδεται ο επόμενος αύξων αριθμός." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6871,11 +6973,11 @@ msgstr "" "Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην " "%sΙστοσελίδα του PrimeBase XT%s." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Σχετικοί Σύνδεσμοι" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "Το Ιστολόγιο του PrimeBase XT από τον Paul McCullagh" @@ -6922,14 +7024,14 @@ msgstr "Άδειασμα δεδομένων του πίνακα" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Συμβάν" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Προσδιορισμός" @@ -6987,14 +7089,14 @@ msgstr "Διαθέσιμοι τύποι MIME" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Φιλοξενητής" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Χρόνος δημιουργίας" @@ -7208,21 +7310,12 @@ msgstr "Προβολές" msgid "Export contents" msgstr "Εξαγωγή περιεχομένων" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Άνοιγμα νέου παραθύρου phpMyAdmin" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Δεν βρέθηκαν δεδομένα για την οπτικοποίηση GIS." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "προσπάθεια επανεγγραφής GLOBALS" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)." @@ -7322,12 +7415,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Ονομασία πίνακας" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Ονόματα στηλών" @@ -7397,94 +7490,78 @@ msgstr "Κατάσταση συμβατότητας SQL:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Να μην γίνεται AUTO_INCREMENT σε μηδενικές τιμές" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Συνάρτηση" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Απόκρυψη" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Δυαδικό" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" "Εξαιτίας του μεγέθος του,
    αυτό το πεδίο ίσως να μη μπορεί να διορθωθεί" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Δυαδικό - χωρίς δυνατότητα επεξεργασίας" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "κατάλογος αποθήκευσης αρχείων διακομιστή" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Επεξεργασία/Προσθήκη" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Συνέχιση εισαγωγής με %s εγγραφές" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "και μετά" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Εισαγωγή ως νέα εγγραφή" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Εμφάνιση ερωτήματος εισαγωγής" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Επιστροφή" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Εισαγωγή νέας εγγραφής" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Επιστροφή σε αυτή τη σελίδα" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Επεξεργασία επόμενης γραμμής" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Τιμή" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" @@ -7499,34 +7576,34 @@ msgstr "Καμία" msgid "Convert to Kana" msgstr "Μετατροπή σε Kana" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Από" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Προς" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Αποστολή" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Προσθήκη προθέματος πίνακα" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Προσθήκη προθέματος" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to execute following query?" msgid "Do you really want to execute the following query?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Χωρίς αλλαγή" @@ -7736,84 +7813,84 @@ msgstr "Επαναφόρτωση πλαισίου πλοήγησης" msgid "This format has no options" msgstr "Αυτή η μορφή δεν έχει επιλογές" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "άκυρο" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "Εντάξει" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Ενεργοποιημένη" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Γενικές λειτουργίες συσχέτισης" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Λειτουργίες εμφάνισης" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Δημιουργία αρχείων PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Εμφάνιση σχολίων πεδίων" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Μετατροπή περιηγητή" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Παρακαλώ διαβάστε στην τεκμηρίωση για το πως μπορείτε να ανανεώσετε τον " "πίνακα column_comments" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Αποθηκευμένο ερώτημα SQL" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Ιστορικό SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Μόνιμοι πρόσφατα χρησιμοποιημένοι πίνακες" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Μόνιμες ρυθμίσεις πινάκων UI" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Ρυθμίσεις χρήστη" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Γρήγορα βήματα για εγκατάσταση χαρακτηριστικών για προχωρημένους:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Δημιουργία των απαραίτητων πινάκων με το αρχείο examples/create_tables." "sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Δημιουργήστε έναν χρήστη pma και δώστε πρόσβαση σε αυτούς του πίνακες." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7822,13 +7899,13 @@ msgstr "" "(config.inc.php), για παράδειγμα ξεκινήστε με το αρχείο " "config.sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Επανασυνδεθείτε στο phpMyAdmin για να φορτωθεί το ενημερωμένο αρχείο " "ρυθμίσεων." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "χωρίς περιγραφή" @@ -7836,7 +7913,7 @@ msgstr "χωρίς περιγραφή" msgid "Slave configuration" msgstr "Ρύθμιση δευτερεύοντος" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Αλλαγή ή επαναρύθμιση του πρωτεύοντος διακομιστή" @@ -7850,13 +7927,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Όνομα χρήστη" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Θύρα" @@ -7869,7 +7946,7 @@ msgid "Slave status" msgstr "Κατάσταση δευτερεύοντος" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Μεταβλητή" @@ -7885,38 +7962,38 @@ msgstr "" "Μόνο οι δευτερεύοντες που εκκινούν με την ρύθμιση --report-host=host_name " "είναι ορατές σε αυτή τη λίστα." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Προσθήκη δευτερέοντα χρήστη αναπαραγωγής" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Οποιοσδήποτε χρήστης" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Χρησιμοποιήστε το πεδίο κειμένου" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Οποιοδήποτε σύστημα" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Τοπικό" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Αυτός ο διακομιστής" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Χρήση Οικείου Πίνακα" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7932,7 +8009,7 @@ msgstr "Παραγωγή Κωδικού Πρόσβασης" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7965,88 +8042,89 @@ msgstr "" "Ένα ή περισσότερα σφάλματα έλαβαν χώρα κατά την προώθηση του αιτήματός " "σας:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Επεξεργασία συμβάντος" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Σφάλμα στην προώθηση αιτημάτος" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Λεπτομέρειες" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Όνομα συμβάντος" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Τύπος συμβάντος" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Αλλαγή σε %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Εκτέλεση σε" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Εκτέλεση κάθε" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Έναρξη" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Λήξη" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Διατήρηση με την ολοκλήρωση" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Προσδιοριστής" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Ο οριστής πρέπει να είναι της μορφής «username@hostname»" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Πρέπει να δώσετε ένα όνομα στο συμβάν" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Πρέπει να δώσετε μια έγκυρη τιμή διαστήματος για το συμβάν." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Πρέπει να δώσετε μια έγκυρη τιμή εκτέλεσης για το συμβάν." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Πρέπει να δώσετε έναν έγκυρο τύπο συμβάντος." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "Πρέπει να δώσετε έναν προσδιορισμό συμβάντος." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Νέο" @@ -8084,7 +8162,7 @@ msgstr "" "επέκταση «mysqli» για να αποφύγετε προβλήματα." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Μη έγκυρος τύπος ρουτίνας: «%s»" @@ -8103,69 +8181,69 @@ msgstr "Η ρουτίνα %1$s έχει αλλαχτεί." msgid "Routine %1$s has been created." msgstr "Η ρουτίνα %1$s έχει δημιουργηθεί." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Επεξεργασία ρουτίνας" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Όνομα ρουτίνας" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Παράμετροι" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Κατεύθυνση" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Μήκος/Τιμές*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Προσθήκη παραμέτρου" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Μετακίνηση τελευταίας παραμέτρου" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Τύπος επιστροφής" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Επιστροφή μήκους/τιμών" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Επιλογές επιστροφής" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Είναι προσδιοριστικό" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Τύπος ασφάλειας" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "Πρόσβαση δεδομένων SQL" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Πρέπει να δώσετε ένα όνομα στη ρουτίνα" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Εσφαλμένη κατεύθυνση «%s» δόθηκε για την παράμετρο." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8173,20 +8251,20 @@ msgstr "" "Πρέπει να δώσετε μήκος/τιμές για τις παραμέτρους της ρουτίνας του τύπου " "ENUM, SET, VARCHAR και VARBINARY." -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" "Πρέπει να δώσετε ένα όνομα και ένα τύπο για κάθε παράμετρος της ρουτίνας." -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "Πρέπει να δώσετε ένα έγκυρο τύπο επιστροφής για τη ρουτίνα." -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Πρέπει να δώσετε ένα προσδιορισμό ρουτίνας." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8194,18 +8272,18 @@ msgstr[0] "%d εγγραφή επηρεάστηκε από την τελευτα msgstr[1] "" "%d εγγραφές επηρεάστηκαν από την τελευταία δήλωση μέσα στη διαδικασία" -#: libraries/rte/rte_routines.lib.php:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Αποτελέσματα εκτέλεσης της ρουτίνας %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Εκτέλεση ρουτίνας" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Παράμετροι ρουτίνας" @@ -8223,36 +8301,36 @@ msgstr "Η ενέργεια %1$s έχει αλλαχτεί." msgid "Trigger %1$s has been created." msgstr "Η ενέργεια %1$s έχει δημιουργηθεί." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Επεξεργασία ενέργειας" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Όνομα ενέργειας" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Χρόνος" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Πρέπει να δώσετε ένα όνομα στην ενέργεια" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Πρέπει να δώσετε ένα έγκυρο χρόνο για την ενέργεια" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Πρέπει να δώσετε ένα έγκυρο συμβάν για την ενέργεια" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Πρέπει να δώσετε ένα έγκυρο όνομα πίνακα" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Πρέπει να δώσετε ένα προσδιορισμό ενέργειας." @@ -8337,7 +8415,7 @@ msgstr "Δεν υπάρχουν συμβάντα για εμφάνιση." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8346,7 +8424,7 @@ msgstr "Ο πίνακας «%s» δεν υπάρχει!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8354,7 +8432,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Παρακαλώ ορίστε τις συντεταγμένες για τον πίνακα %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8365,27 +8443,27 @@ msgstr "Σχήμα της βάσης δεδομένων %s - Σελίδα %s" msgid "This page does not contain any tables!" msgstr "Αυτή η σελίδα δεν περιέχει κανένα πίνακα!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "ΣΦΑΛΜΑ ΣΧΗΜΑΤΟΣ: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Σχεσιακό σχήμα" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Πίνακας περιεχομένων" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Χαρακτηριστικά" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Πρόσθετα" @@ -8493,7 +8571,7 @@ msgstr "Άγνωστη γλώσσα: %1$s." msgid "Current Server" msgstr "Τρέχων διακομιστής" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Βάση δεδομένων προέλευσης" @@ -8511,7 +8589,7 @@ msgstr "Απομακρυσμένος διακομιστής" msgid "Difference" msgstr "Διαφορά" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Βάση δεδομένων προορισμού" @@ -8530,7 +8608,7 @@ msgstr "Εκτέλεση ερωτήματος/ερωτημάτων SQL στο δ msgid "Run SQL query/queries on database %s" msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δεδομένων %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Καθάρισμα" @@ -8539,11 +8617,11 @@ msgstr "Καθάρισμα" msgid "Columns" msgstr "Στήλες" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Αποθήκευση αυτού του ερωτήματος SQL" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" @@ -8639,7 +8717,7 @@ msgstr "" "Ο επικυρωτής SQL δεν μπόρεσε να ξεκινήσει. Ελέγξτε ότι έχετε εγκαταστήσει " "της απαραίτητες επεκτάσεις της PHP όπως περιγράφεται στην %sτεκμηρίωση%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "Παρακολούθηση του %s ενεργοποιήθηκε." @@ -8665,8 +8743,8 @@ msgstr "" "διαφυγής ή εισαγωγικά, χρησιμοποιώντας τη μορφή: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Ευρετήριο" @@ -8718,13 +8796,13 @@ msgstr "Καμία" msgid "As defined:" msgstr "Όπως ορίστηκε:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Πρωτεύον" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Πλήρες κείμενο" @@ -8738,17 +8816,17 @@ msgstr "" msgid "after %s" msgstr "Μετά το %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Προσθήκη %s στήλης(ών)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πεδίο." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Μηχανή αποθήκευσης" @@ -8756,41 +8834,6 @@ msgstr "Μηχανή αποθήκευσης" msgid "PARTITION definition" msgstr "Ορισμός PARTITION" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Αναζήτηση Πίνακα" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Επιλογή πεδίων (τουλάχιστον ένα):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Προσθήκη νέου όρου (σώμα της πρότασης «where» πρότασης):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Εγγραφές ανά σελίδα" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Σειρά εμφάνισης:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Αναζήτηση μη διακριτών τιμών" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Εκτέλεσε ένα «επερώτημα κατά παράδειγμα» (χαρακτήρας μπαλαντέρ «%»)" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8945,11 +8988,11 @@ msgstr "" msgid "Manage your settings" msgstr "Διαχειριστείτε τις ρυθμίσεις σας" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Οι ρυθμίσεις αποθηκεύτηκαν" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8962,7 +9005,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Αδύνατη η αποθήκευση ρυθμίσεων" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8991,7 +9034,7 @@ msgstr "Σύνθεση σύνδεσης διακομιστή" msgid "Appearance Settings" msgstr "Ρυθμίσεις εμφάνισης" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Περισσότερες ρυθμίσεις" @@ -9011,9 +9054,9 @@ msgstr "Έκδοση λογισμικού" msgid "Protocol version" msgstr "Έκδοση πρωτοκόλλου" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Χρήστης" @@ -9152,128 +9195,128 @@ msgstr "" "Ο διακομιστής εκτελείται με Suhosin. Αναφερθείτε στην %sτεκμηρίωση%s για " "πιθανά ζητήματα." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Δεν υπάρχουν βάσεις δεδομένων" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Φιλτράρισμα πινάκων κατά όνομα" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Φιλτράρισμα πινάκων κατά όνομα" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Δημιουργία πίνακα" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Παρακαλώ επιλέξτε μία βάση δεδομένων" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Εμφάνιση/Απόκρυψη αριστερού μενού" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Αποθήκευση θέσης" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Δημιουργία συσχέτισης" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Επαναφόρτωση" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Βοήθεια" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Γωνιακοί σύνδεσμοι" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Άμεσοι σύνδεσμοι" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Συγκράτηση στο πλέγμα" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Όλα Μικρά/Μεγάλα" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Εναλλαγή μικρά/μεγάλα" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Εναλλαγή γραμμών συσχέτισης" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Εισαγωγή/Εξαγωγή συντεταγμένων για σχέδιο PDF" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Δημιουργία ερωτήματος" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Μενου μετακίνησης" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Απόκρυψη/Προβολή όλων" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Απόκρυψη/Εμφάνιση Πινάκων χωρίς συσχέτιση" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Αριθμός πινάκων" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Διαγραφή συσχέτισης" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Λειτουργός συσχέτισης" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Εξαίρεση" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "υποερώτημα" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Μετονομασία σε" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Νέο όνομα" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Άθροιση" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Ενεργές επιλογές" @@ -9285,51 +9328,51 @@ msgstr "Η σελίδα δημιουργήθηκε" msgid "Page creation failed" msgstr "Η δημιουργία σελίδας απέτυχε" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Σελίδα" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Εισαγωγή από επιλεγμένη σελίδα" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Εξαγωγή σε επιλεγμένη σελίδα" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Δημιουργία μιας σελίδας και εξαγωγή σε αυτή" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Νέο όνομα σελίδα: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Εξαγωγή/Εισαγωγή σε κλίμακα" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "προτείνεται" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Σφάλμα: η συσχέτιση υπαρχει ήδη." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Σφάλμα: Δεν προστέθηκε η συσχέτιση." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Προστέθηκε η συσχέτιση FOREIGN KEY" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Η εσωτερική συσχέτιση προστέθηκε" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Η συσχέτιση διαγράφηκε" @@ -9341,53 +9384,53 @@ msgstr "Σφάλμα αποθήκευσης συντεταγμένων για τ msgid "Modifications have been saved" msgstr "Οι αλλαγές αποθηκεύτηκαν" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" "Αδύνατη η αποθήκευση ρυθμίσεων γιατί η υποβλειθείσα φόρμα περιέχει σφάλματα" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Αδύνατη η εισαγωγή ρυθμίσεων" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Οι ρυθμίσεις περιέχουν λανθασμένα δεδομένα για ορισμένα πεδία." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Θέλετε να εισάγετε τις υπόλοιπες ρυθμίσεις;" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Αποθήκευση στις: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Εισαγωγή από αρχείο" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Εισαγωγή από την αποθήκευση φυλλομετρητή" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" "Οι ρυθμίσεις θα εισαχθούν από την τοπική αποθήκευση του φυλλομετρητή σας." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Δεν έχετε αποθηκευμένες ρυθμίσεις!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Αυτό το χαρακτηριστικό δεν υποστηρίζεται από τον φυλλομετρητή σας" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Ένωση με την τρέχουσα ρύθμιση" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9396,38 +9439,38 @@ msgstr "" "Μπορείτε να ορίσετε περισσότερες ρυθμίσεις αλλάζοντας το αρχείο config.inc." "php, π.χ. χρησιμοποιώντας τον %sκώδικα Εγκατάστασης%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Αποθήκευση στο χώρο αποθήκευσης του φυλλομετρητή" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" "Οι ρυθμίσεις θα αποθηκευτούν στην τοπική αποθήκευση του φυλλομετρητή σας." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Οι υπάρχουσες ρυθμίσεις θα αντικατασταθούν!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Μπορείτε να επαναφέρεται όλες σας τις ρυθμίσεις στις προεπιλεγμένες τιμές." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Εισαγωγή αρχείων" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Όλα" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Ο πίνακας %s δεν βρέθηκε ή δεν ορίστηκε στη %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Το αρχείο δεν υπάρχει" @@ -9435,17 +9478,17 @@ msgstr "Το αρχείο δεν υπάρχει" msgid "Select binary log to view" msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για προβολή" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Αρχεία" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Αποκοπή εμφανιζόμενων ερωτημάτων" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Πλήρης εμφάνιση ερωτημάτων" @@ -9461,7 +9504,7 @@ msgstr "Θέση" msgid "Original position" msgstr "Αρχική θέση" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Πληροφορία" @@ -9469,31 +9512,31 @@ msgstr "Πληροφορία" msgid "Character Sets and Collations" msgstr "Σύνολα και Συνθέσεις Χαρακτήρων" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d βάση δεδομένων διεγράφηκε επιτυχώς." msgstr[1] "%1$d βάσεις δεδομένων διεγράφηκαν επιτυχώς." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Στατιστικά βάσης" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Πρωτεύουσα αναπαραγωγή" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Δευτερεύουσα αναπαραγωγή" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Ενεργοποίηση Στατιστικών" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9505,157 +9548,157 @@ msgstr "" msgid "Storage Engines" msgstr "Μηχανές αποθήκευσης" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Εμφάνισης σκαριφήματος (σχήματος) βάσεων δεδομένων" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Πρότυπα" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Αρχή" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Πρόσθετο" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Πρότυπο" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Βιβλιοθήκη" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Έκδοση" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Δημιουργός" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Άδεια" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "Απενεργοποιημένο" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Περιλαμβάνει όλα τα δικαιώματα εκτός από το GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Επιτρέπει την αλλαγή δομής των υπαρχόντων πινάκων." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Επιτρέπει την αλλαγή και διαγραφή αποθηκευμένων εργασιών." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Επιτρέπει τη δημιουργία νέων βάσεων και πινάκων." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Επιτρέπει τη δημιουργία αποθηκευμένων εργασιών." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Επιτρέπει τη δημιουργία νέων πινάκων." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Επιτρέπει τη δημιουργία, διαγραφή και μετονομασία λογαριασμών χρηστών." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Επιτρέπει τη δημιουργία νέων προβολών." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Επιτρέπει τη διαγραφή δεδομένων." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Επιτρέπει τη διαγραφή βάσεων και πινάκων." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Επιτρέπει τη διαγραφή πινάκων." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Επιτρέπει τον ορισμό συμβάντων για τον προγραμματιστή συμβάντων" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Επιτρέπει την εισαγωγή και εξαγωγή δεδομένων από και σε αρχεία." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Επιτρέπει την προσθήκη χρηστών και δικαιωμάτων χωρίς να επαναφορτώσετε τους " "πίνακες δικαιωμάτων." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Επιτρέπει την δημιουργία και την διαγραφή ευρετηρίων." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Επιτρέπει την εισαγωγή και την αντικατάσταση δεδομένων." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Περιορίζει τον αριθμό των νέων συνδέσεων που ο χρήστης μπορεί να ξεκινήσει " "ανά ώρα." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Περιορίζει τον αριθμό των ερωτημάτων που ο χρήστης μπορεί να στείλει στον " "διακομιστή ανά ώρα." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9663,63 +9706,63 @@ msgstr "" "Περιορίζει τον αριθμό των αλλαγής πινάκων ή βάσεων που ο χρήστης μπορεί να " "εκετελέσει ανά ώρα." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Επιτρέπει την προβολή διεργασιών όλων των χρηστών" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Δεν έχει χρήση σε αυτήν την έκδοση MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Επιτρέπει την επανεκκίνηση του διακομιστή και τον καθαρισμό των προσωρινών " "αρχείων του." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Δίνει το δικαίωμα στον χρήστη να βρει που είναι οι κύριοι / δευτερεύοντες " "διακομιστές." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Απαιτείται για τους δευτερευόντες διακομιστές αναπαραγωγής." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Επιτρέπει την ανάγνωση δεδομένων." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Δίνει πρόσβαση στην πλήρη λίστα των βάσεων δεδομένων." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Επιτρέπει την εκτέλεση ερωτημάτων της μορφής SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Επιτρέπει την διακοπή λειτουργίας του διακομιστή." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9729,163 +9772,163 @@ msgstr "" "καλυθφεί, το οποίο απαιτείται για τις περισσότερες λειτουργίες διαχείρισης " "όπως ο ορισμός γενικών μεταβλητών ή τη διακοπή λειτουργιών άλλων χρηστών." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Επιτρέπει τη δημιουργία και διαγραφή υποδείξεων" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Επιτρέπει την αλλαγή δεδομένων." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Χωρίς δικαιώματα." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Κανένα" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Δικαιώματα πινάκων" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Διαχείριση" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Γενικά δικαιώματα" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Δικαιώματα βάσης δεδομένων" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Όρια πόρων" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Σημείωση: Αν ορίσετε αυτές τις επιλογές σε 0 (μηδέν) αφαιρείτε ο περιορισμός." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Πληροφορίες Σύνδεσης" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Διατήρηση κωδικού πρόσβασης" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Δεν βρέθηκαν χρήστες." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Ο χρήστης %s υπάρχει ήδη!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Προσθέσατε ένα νέο χρήστη." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Τα δικαιώματα του χρήστη %s ενημερώθηκαν." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ανακαλέσατε τα δικαιώματα για %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Ο κωδικός πρόσβασης για τον χρήστη %s άλλαξε επιτυχώς." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Διαγραφή %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Δεν επιλέχθηκαν χρήστες για διαγραφή!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Επαναφόρτωση δικαιωμάτων" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Επεξεργασία Δικαιωμάτων" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Ανάκληση" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Εξαγωγή όλων" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Οποιοδήποτε" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Δικαιώματα για όλους του χρήστες" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Δικαιώματα για %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Επισκόπηση χρηστών" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Χορήγηση" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9899,50 +9942,50 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " "τα δικαιώματα%s πριν συνεχίσετε." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Δικαιώματα πεδίων" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη βάση δεδομένων" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Οι χαρακτήρες μπαλαντέρ _ και % πρέπει να γραφούν μπροστά με \\ για να " "χρησιμοποιηθούν" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Αλλαγή Στοιχείων Πρόσβασης / Αντιγραφή Χρήστη" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... διατήρηση του παλιού χρήστη." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του." -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9950,85 +9993,85 @@ msgstr "" "... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση των " "δικαιωμάτων." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Βάση δεδομένων για χρήστη" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" "Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Χρήστες με πρόσβαση στη βάση «%s»" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "γενικός" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "σχετιζόμενος με βάση δεδομένων" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "μπαλαντέρ" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Ο χρήστης προστέθηκε." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Άγνωστο σφάλμα" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Αδύνατη η σύνδεση στον πρωτεύοντα %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Αδύνατη η ανάγνωση της θέσης πρωτεύουσας καταγραφής. Πιθανό πρόβλημα " "δικαιωμάτων." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Αδύνατη η αλλαγή της πρωτεύουσας" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Ο πρωτεύων διακομιστής άλλαξε επιτυχώς σε %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια αναπαραγωγική " "διαδικασία." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Προβολή κατάστασης πρωτεύοντος" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Προβολή συνδεδεμένων δευτερευόντων" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10037,11 +10080,11 @@ msgstr "" "Αυτός ο διακομιστής δεν έχει ρυθμιστεί ως πρωτεύων σε μια διαδικασία " "αναπαραγωγής. Θέλετε να τον ρυθμίσετε;" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Ρύθμιση πρωτεύοντος" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10056,19 +10099,19 @@ msgstr "" "παραβλέψετε όλες τις βάσεις δεδομένων ως προεπιλογή και να επιτρέψετε μόνο " "σε ορισμένες να αναπαράγονται. Επιλέξτε:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Αναπαραγωγή όλων των βάσεων δεδομένων. Παράβλεψη:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Παράβλεψη όλων των βάσεων δεδομένων. Αναπαραγωγή:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Επιλέξτε βάσεις δεδομένων:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10076,7 +10119,7 @@ msgstr "" "Τώρα, προσθέστε της ακόλουθες γραμμές στο τέλος του τομέα [mysqld] του " "αρχείου my.cnf και επανεκκινήστε τον διακομιστή MySQL." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10086,84 +10129,84 @@ msgstr "" "θα πρέπει να δείτε ένα μύνημα που να σας πληροφορεί ότι αυτός ο διακομιστής " "έχει ρυθμιστεί ως πρωτεύων" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Το δευτερεύον νήμα SQL δεν τρέχει!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Το δευτερεύον IO SQL δεν τρέχει!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ο διακομιστής ρυθμίστηκε ως δευτερεύων σε μια διαδικασία αναπαραγωγής. " "Θέλετε να:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Δείτε τον πίνακα κατάστασης δευτερεύοντος" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Συγχρονισμός βάσεων δεδομένων με την πρωτεύουσα" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Έλεγχος δευτερεύοντος:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Πλήρης εκκίνηση" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Πλήρες σταμάτημα" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Επαναφορά δευτερεύοντος" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Εκκίνηση μόνο Νήματος SQL" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Σταμάτημα μόνο Νήματος SQL" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Εκκίνηση μόνο Νήματος IO" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Σταμάτημα μόνο Νήματος IO" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Διαχείριση σφάλματος:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Η παράβλεψη σφαλμάτων μπορεί να οδηγήσει στο μη συγχρονισμό πρωτεύοντος και " "δευτερεύοντος!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Παράβλεψη τρέχοντος σφάλματος" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Παράβλεψη επόμενου" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "σφάλματα." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10172,12 +10215,12 @@ msgstr "" "Αυτός ο διακομιστής δεν ρυθμίστηκε ως δευτερεύων σε μια διαδικασία " "αναπαραγωγής. Θέλετε να τον ρυθμίσετε;" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Η λειτουργία %s διεκόπη." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10185,115 +10228,115 @@ msgstr "" "Το phpMyAdmin δεν μπόρεσε να διακόψει τη λειτουργία %s. Μπορεί να έχει ήδη " "σταματήσει." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Χειριστής" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Λανθάνουσα μνήμη ερωτήματος" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Διεργασίες" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Προσωρινά δεδομένα" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Καθυστερημένες εισαγωγές" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Λανθάνουσα μνήμη κλειδιού" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Ενώσεις" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Ταξινόμηση" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Συντονιστής κινήσεων" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Εκκαθάριση (κλείσιμο) όλων των πινάκων" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Εμφάνιση ανοιχτών πινάκων" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Εμφάνιση δευτερευόντων διακομιστών" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Εμφάνιση κατάστασης δευτερεύοντος" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Εκκαθάριση λανθάνουσας μνήμης ερωτημάτων" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Πληροφορίες εκτέλεσης" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Όλες οι μεταβλητές κατάστασης" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Εποπτεία" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Σύμβουλος" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Ρυθμός ανανέωσης: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Φίλτρα" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Να περιλαμβάνει τη λέξη:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Εμφάνιση μόνο τιμών ειδοποίησης" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Φιλτράρισμα ανά κατηγορία..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Εμφάνιση μη διαμορφομένων τιμών" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Σχετικοί σύνδεσμοι:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Αναλυτής εκτέλεσης" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Οδηγίες" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10301,7 +10344,7 @@ msgstr "" "Το σύστημα Συμβούλου μπορεί να παρέχει προτάσεις για μεταβλητές διακομιστή " "αναλύοντας τις μεταβλητές κατάστασης διακομιστή." -#: server_status.php:918 +#: server_status.php:917 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 +10353,7 @@ msgstr "" "Σημειώστε ότι αυτό το σύστημα παρέχει προτάσεις βάσει σε απλούς υπολογισμούς " "και βασικούς κανόνες που μπορεί να μην εφαρμόζονται στο σύστημά σας." -#: server_status.php:920 +#: server_status.php:919 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 " @@ -10320,7 +10363,7 @@ msgstr "" "τεημνρίωση) και πως να αναιρέσετε την αλλαγή. Εσφαλμένη ρύθμιση ίσως έχει " "σοβαρή επίδραση στην απόδοση." -#: server_status.php:922 +#: server_status.php:921 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 " @@ -10331,31 +10374,31 @@ msgstr "" "αν δεν υπήρχε ουσιαστική βελτίωση." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Ερωτήσεις από την εκκίνηση: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Δηλώσεις" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Κυκλοφορία δικτύου από την εκκίνηση: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10363,19 +10406,19 @@ msgstr "" "Αυτός ο διακομιστής λειτουργεί ως πρωτεύων και δευτερεύων σε " "μια αναπαραγωγική διαδικασία." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" "Αυτός ο διακομιστής λειτουργεί ως πρωτεύων σε μια αναπαραγωγική διαδικασία." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια " "αναπαραγωγική διαδικασία." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10383,11 +10426,11 @@ msgstr "" "Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, " "επισκεφτείτε τον τομέα αναπαραγωγής." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Κατάσταση αναπαραγωγής" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10396,35 +10439,35 @@ msgstr "" "έτσι αυτές οι στατιστικές όπως αναφέρονται από τον διακομιστή μπορεί να " "είναι εσφαλμένες." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Ελήφθησαν" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Εστάλησαν" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Αποτυχημένες προσπάθειες" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Ακυρωμένες συνδέσεις" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "Κωδικός" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Εντολή" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10432,12 +10475,12 @@ msgstr "" "Ο αριθμός των συνδέσεων που διακόπηκαν επειδή ο πελάτης παρετήθηκε χωρίς να " "κλείσει σωστά τη σύνδεση." -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL." -#: server_status.php:1322 +#: server_status.php:1321 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 " @@ -10447,20 +10490,20 @@ msgstr "" "μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν " "ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή." -#: server_status.php:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα " "μνήμη καταγραφής." -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή " "MySQL." -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10472,11 +10515,11 @@ msgstr "" "είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι " "προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10484,7 +10527,7 @@ msgstr "" "Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από " "τον διακομιστή κατά την εκτέλεσε δηλώσεων." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10492,7 +10535,7 @@ msgstr "" "Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις " "οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10501,23 +10544,23 @@ msgstr "" "διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT " "DELAYED χρησιμοποιεί της δική του διεργασία." -#: server_status.php:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Ο αριθμός των INSERT DELAYED γραμμών που εγγράφτηκαν." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων FLUSH." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων COMMIT." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα." -#: server_status.php:1334 +#: 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 " @@ -10528,7 +10571,7 @@ msgstr "" "ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που " "βρέθηκαν." -#: server_status.php:1335 +#: 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, " @@ -10539,7 +10582,7 @@ msgstr "" "ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει " "ευρετήριο." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10548,7 +10591,7 @@ msgstr "" "είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές " "σας έχουν κάνει σωστά ευρετήρια." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10558,7 +10601,7 @@ msgstr "" "κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα " "περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10567,7 +10610,7 @@ msgstr "" "η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής " "ORDER BY ... DESC." -#: server_status.php:1339 +#: 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 " @@ -10580,7 +10623,7 @@ msgstr "" "σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα " "κλειδιά." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10592,37 +10635,37 @@ msgstr "" "ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν " "έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ROLLBACK." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Ο αριθμός των μη καθαρώ σελίδων." -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για " "εκκαθάριση." -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Ο αριθμός των ελεύθερων σελίδων." -#: server_status.php:1348 +#: 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 " @@ -10632,7 +10675,7 @@ msgstr "" "σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να " "εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10644,11 +10687,11 @@ msgstr "" "τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες." -#: server_status.php:1351 +#: 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." @@ -10657,7 +10700,7 @@ msgstr "" "συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά " "με τυχαία σειρά." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10665,11 +10708,11 @@ msgstr "" "Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " "συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB." -#: server_status.php:1354 +#: 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." @@ -10677,7 +10720,7 @@ msgstr "" "Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει " "από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας." -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10692,55 +10735,55 @@ msgstr "" "αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή " "πρέπει να είναι μικρή." -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes." -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -10748,36 +10791,36 @@ msgstr "" "Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer " "καταγραφής και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει." -#: server_status.php:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" "Ο αριθμός των εγγραφών fsync() που ολοκληρώθηκαν στο αρχείο καταγραφής." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Ο αριθμός των δημιουργηθέντων σελίδων." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10786,55 +10829,55 @@ msgstr "" "υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη " "μετατροπή σε bytes." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Ο αριθμός των αναγνωσμένων σελίδων." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Ο αριθμός των εγεγγραμμένων σελίδων." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή." -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα." -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής." -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB." -#: server_status.php:1387 +#: 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." @@ -10843,7 +10886,7 @@ msgstr "" "αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως " "Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -10852,7 +10895,7 @@ msgstr "" "Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση " "λανθάνουσα μνήμη κλειδιού χρησιμοποιείται." -#: server_status.php:1389 +#: server_status.php:1388 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 " @@ -10862,17 +10905,17 @@ msgstr "" "τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι " "σε χρήση με μια φορά." -#: server_status.php:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "" "Ποσοστό της χρησιμοποιημένης λανθάνουσας μνήμης κλειδιού (υπολογισμένη τιμή)" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" "Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη." -#: server_status.php:1392 +#: 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 " @@ -10883,7 +10926,7 @@ msgstr "" "μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως " "Key_reads/Key_read_requests." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10891,22 +10934,22 @@ msgstr "" "Η λανθάνουσα μνήμη κλειδιού κακώς υπολογίστηκε ως βαθμός φυσικών αναγνώσεων " "σε σχέση με τα αιτήματα ανάγνωσης (υπολογισμένη τιμή)" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" "Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη." -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο." -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Ποσοστό φυσικών εγγραφών σε σχέση με τα αιτήματα εγγραφής (υπολογισμένη τιμή)" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -10917,7 +10960,7 @@ msgstr "" "διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 " "σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10925,12 +10968,12 @@ msgstr "" "Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση " "του διακομιστή." -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές INSERT DELAYED." -#: server_status.php:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10938,21 +10981,21 @@ msgstr "" "Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι " "μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά." -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για " "καταγραφή)." -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί." -#: server_status.php:1404 +#: server_status.php:1403 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 +11005,19 @@ msgstr "" "ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας " "την εντολή FLUSH QUERY CACHE." -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη." -#: server_status.php:1408 +#: 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 " @@ -10988,7 +11031,7 @@ msgstr "" "χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να " "απομακρύνει από τη λανθάνουσα μνήμη." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10996,19 +11039,19 @@ msgstr "" "Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν " "απομνημονεύονται λόγω της ρύθμισης query_cache_type)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)." -#: server_status.php:1413 +#: server_status.php:1412 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 +11059,13 @@ msgstr "" "Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, " "πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας." -#: server_status.php:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα " "παραπομπής." -#: server_status.php:1415 +#: 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.)" @@ -11031,7 +11074,7 @@ msgstr "" "κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα " "ευρετήρια των πινάκων σας.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11039,17 +11082,17 @@ msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά " "δεν είναι κρίσιμος αν δεν είναι μεγάλος.)" -#: server_status.php:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα." -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα " "συνεργασία SQL." -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11057,13 +11100,13 @@ msgstr "" "Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας " "αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές." -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε " "πρωτεύωντα." -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11071,14 +11114,14 @@ msgstr "" "Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time " "δευτερόλεπτα να δημιουργηθούν." -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time " "δευτερόλεπτα." -#: server_status.php:1423 +#: server_status.php:1422 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 " @@ -11088,23 +11131,23 @@ msgstr "" "ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της " "μεταβλητής συστήματος sort_buffer_size." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Ο αριθμός των ταξινομημένων γραμμών." -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα." -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα." -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11116,7 +11159,7 @@ msgstr "" "απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον " "πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11126,11 +11169,11 @@ msgstr "" "λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν " "η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων." -#: server_status.php:1431 +#: server_status.php:1430 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 +11185,47 @@ msgstr "" "thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης " "αν έχετε μια καλή εφαρμογή διεργασίας.)" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "Βαθμός λανθάνουσας μνήμης νήματος (υπολογισμένη τιμή)" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Έναρξη Εποπτείας" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Οδηγίες/Εγκατάσταση" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Ολοκληρώθηκε η επανατοποθέτηση/επεξεργασία διαγραμμάτων" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Προσθήκη διαγράμματος" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Επανατοποθέτηση/επεξεργασία διαγραμμάτων" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Ρυθμός ανανέωσης" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Στήλες διαγράμματος" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Διευθέτηση διαγράμματος" -#: server_status.php:1627 +#: server_status.php:1626 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 +11233,15 @@ msgstr "" "Η διευθέτηση των διαγραμμάτων αποθηκεύεται στον τοπικό χώρο αποθήκευσης των " "φυλλομετρητών. Ίσως θέλετε να το εξάγετε αν έχετε πολύπλοκη ρύθμιση." -#: server_status.php:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Επαναφορά προεπιλογής" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Οδηγίες Εποπτείας" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11213,7 +11256,7 @@ msgstr "" "παράγει πολλά δεδομένα και αυξάνει τη χρήση πόρων του διακομιστή μέχρι και " "15%" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11226,11 +11269,11 @@ msgstr "" "MySQL 5.1.6 και νεότερη. Μπορείτε να χρησιμοποιήσετε παρόλα αυτά τα " "χαρακτηριστικά διαγραμμάτων του διακομιστή." -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Χρήση της εποπτείας:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11241,7 +11284,7 @@ msgstr "" "ρυθμό ανανέωσης στη «Ρυθμίσεις», ή να απομακρύνεται οποιοδήποτε διάγραμμα " "χρηισιμποιώντας το εικονίδιο διαγραφής στο αντίστοιχο διάγραμμα." -#: server_status.php:1655 +#: server_status.php:1654 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 " @@ -11254,11 +11297,11 @@ msgstr "" "επιβεβαιώσετε, θα φορτωθεί ένας πίνακας ομαδοποιημένων ερωτημάτων, οπού εκεί " "μπορείτε να πατήσετε οποιαδήποτε δήλωση SELECTγια περαιτέρω ανάλυση." -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Σημειώστε:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11272,203 +11315,203 @@ msgstr "" "απενεργοποίησετε το general_log και να αδειάσετε τον πίνακά του μόλις δεν " "είναι απαραίτητη η εποπτεία." -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Προκαθορισμός διαγράμματος" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Μεταβλητή(ές) κατάστασης" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Επιλογή σειρών:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Συχνά εποπτευόμενα" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "ή όνομα τύπου μεταβλητής:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Προβολή ως διαφορική τιμή" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Εφαρμογή διαιρέτη" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Προσάρτηση μονάδας στις τιμές δεδομένων" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Προσθήκη αυτής της σειράς" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Εκκαθάριση σειράς" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Σειρά σε Διάγραμμα:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Στατιστικά καταγραφών" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Επιλεγμένο εύρος χρόνου:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Λήψη μόνο των δηλώσεων SELECT,INSERT,UPDATE και DELETE" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Απομάκρυνση δεδομένων μεταβλητών στις δηλώσεις INSERT για καλύτερη " "ομαδοποιήση" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "Επιλέξτε από ποια καταγραφή θέλετε να δημιουργούνται τα στατιστικά." -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Τα αποτελέσματα ομαδοποιηούνται ανα κείμενο ερωτήματος." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Αναλυτής ερωτήματος" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d δευτερόλεπτο" msgstr[1] "%d δευτερόλεπτο" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d λεπτά" msgstr[1] "%d λεπτά" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Αδύνατη η σύνδεση με την προέλευση" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Αδύνατη η σύνδεση με τον προορισμό" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Η βάση δεδομένων «%s» δεν υπάρχει." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Συγχρονισμός δομής" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Συγχρονισμός Δεδομένων" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "δεν υφίσταται" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Διαφορά δομής" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Διαφορά Δεδομένων" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Προσθήκη στήλης(ών)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Απομάκρυνση στήλης(ών)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Αλλαγή στήλης(ών)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Απομάκρυνση ευρετηρίου(ων)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Εφαρμογή ευρετηρίου(ων)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Ενημέρωση γραμμής(ών)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Εισαγωγή γραμμής(ών)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" "Θέλετε να διαγράψετε όλες τις προηγούμενες γραμμές από τους πίνακες " "προορισμού;" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Εφαρμογή Επιλεγμένων Αλλαγών" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Συγχρονισμός Βάσεων δεδομένων" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Οι επιλεγμένοι πίνακες προορισμου έχουν συγχρονιστεί με τους πίνακες " "προέλευσης." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" "Η βάση δεδομένων προορισμού συγχρονίστηκε με τη βάση δεδομένων προέλευσης" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Εκτελεσμένα ερωτήματα" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Εισάγετε χειροκίνητα" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Τρέχουσα σύνδεση" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Ρύθμιση: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Υποδοχή" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11476,19 +11519,19 @@ msgstr "" "Η βάση δεδομένων προορισμού θα συγχρονιστεί πλήρως με τη βάση δεδομένων " "προέλευσης. Η βάση δεδομένων προέλευσης θα παραμείνει ως έχει." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Ο ορισμός της μεταβλητής απέτυχε" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Ρυθμίσεις και μεταβλητές του διακομιστή" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Τιμή συνεδρίας" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Προεπιλεγμένη τιμή" @@ -11836,155 +11879,155 @@ msgstr "" msgid "Wrong data" msgstr "Εσφαλμένα δεδομένα" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Χρήση του σελιδοδείκτη «%s» ως προεπιλεγμένο ερώτημα φυλλομετρητή." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Εμφάνιση ως κώδικά PHP" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Επικυρωμένη SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "αποτέλεσμα SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Δημιουργήθηκε από" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Ετικέτα" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Μπάρα" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Στήλη" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Γραμμή" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Καμπύλη γραμμή" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Πίτα" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Σταθεροποιημένο" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Τίτλος διαγράμματος" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "Άξονας Χ:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Σειρές:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Ετικέτα άξονα Χ:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "Τιμές Χ" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Ετικέτα άξονα Υ:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Τιμές Υ" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Ο πίνακας %s υπάρχει ήδη!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Ο πίνακας %1$s έχει δημιουργηθεί." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Εμφάνιση σκαριφήματος (σχήματος) του πίνακα" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Εμφάνιση Οπτικοποίησης GIS" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Πλάτος" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Ύψος" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Στήλη ετικέτας" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Τίποτα --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Χωρική στήλη" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Επανασχεδίαση" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Αποθήκευση σε αρχείο" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Ονομασία αρχείου" @@ -12000,30 +12043,30 @@ msgstr "Η μετατροπή του ευρετηρίου σε PRIMARY δεν ε msgid "No index parts defined!" msgstr "Δεν ορίστηκαν τα στοιχεία του ευρετηρίου!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Προσθήκη ευρετηρίου" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Εεπεξεργασία ευρετηρίου" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Όνομα ευρετηρίου:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(«PRIMARY» πρέπει να είναι το όνομα του πρωτεύοντος κλειδιού και " "μόνο αυτού!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Τύπος ευρετηρίου:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Προσθήκη στο ευρετήριο «%s» στήλης(ών)" @@ -12046,152 +12089,152 @@ msgstr "Ο πίνακας %s μεταφέρθηκε στο %s." msgid "Table %s has been copied to %s." msgstr "Ο πίνακας %s αντιγράφηκε στο %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Το όνομα του πίνακα είναι κενό!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Αλλαγή ταξινόμησης πίνακα κατά" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(μοναδικά)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Μεταφορά πίνακα σε (βάση.πίνακας):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Επιλογές πίνακα" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Μετονομασία πίνακα σε" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Αντιγραφή πίνακα σε (βάση.πίνακας):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Μεταφορά στον αντεγραμμένο πίνακα" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Συντήρηση πίνακα" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Ανασυγκρότηση πίνακα" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Ο πίνακας %s εκκαθαρίστηκε" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Εκκαθάριση («FLUSH») πίνακα" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Διαγραφή δεδομένων ή πίνακα" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Άδειασμα του πίνακα (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Διαγραφή της βάσης δεδομένων (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Συντήρηση κατάτμησης" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Κατάτμηση %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Ανάλυση" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Έλεγχος" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Βελτιστοποίηση" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Επανακατασκευή" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Επισκευή" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Απομάκρυνση κατάτμησης" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Έλεγχος ακεραιότητας συσχετίσεων:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Εμφάνιση πινάκων" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Χρήση χώρου" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Αποτελεσματικός" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Στατιστικά Εγγραφών" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "στατικό" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "δυναμικά" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Μέγεθος γραμμής" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Μέγεθος εγγραφής" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Επόμενη αυτόματη αρίθμηση" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Σφάλμα δημιουργίας μη διακριτού κλειδιού στο %1$s (ελέξτε τους τύπους " "δεδομένων)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Εσωτερική συσχέτιση" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12199,107 +12242,107 @@ msgstr "" "Μια εσωτερική συσχέτιση δεν είναι απαραίτητη όταν υπάρχει μια αντίστοιχη " "συσχέτιση FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Όριο μη διακριτού κλειδιού" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Χωρική" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Αναζήτηση διακριτων τιμών" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Προσθήκη πρωτεύοντος κλειδιού" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Προσθήκη μοναδικού ευρετηρίου" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Προσθήκη ευρετηρίου SPATIAL" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Προσθήκη ευρετηρίου FULLTEXT" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Καμία" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Η στήλη %s διεγράφη" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Ένα πρωτεύον κλειδί προστέθηκε στο %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Ένα ευρετήριο προστέθηκε στο %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Προβολή περισσοτέρων δράσεων" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Απομάκρυνση στήλης(ών)" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Επεξεργασία εμφάνισης" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Εμφάνιση συσχετίσεων" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Προτεινόμενη δομή πίνακα" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Προσθήκη στήλης" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Στο τέλος του Πίνακα" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Στην αρχή του Πίνακα" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Μετά το %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Δημιουργία ευρετηρίου σε  %s  στήλες" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "κατατμήθηκε" @@ -12450,71 +12493,39 @@ msgstr "Παρακολούθηση αυτών των δηλώσεων χειρι msgid "Create version" msgstr "Δημιουργία έκδοσης" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Εκτέλεσε ένα «επερώτημα ανά παράδειγμα» (χαρακτήρας μπαλαντέρ «%») για δύο " -"διαφρετικές στήλες" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Πρόσθετα κριτήρια αναζήτησης" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Χρησιμοποιήστε αυτή τη στήλη για την ετικέτα κάθε σημείου" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Μέγιστος αριθμός γραμμών για εκτύπωση" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Αναζήτηση/Επεξεργασία των σημείων" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Πως να το χρησιμοποιήσετε" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Επαναφορά" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Λήψη περισσότερων θεμάτων!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Διαθέσιμοι τύποι MIME" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Οι τύποι MIME που εμφανίζονται με πλάγια γράμματα δεν έχουν ξεχωριστή " "λειτουργία μετατροπής" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Διαθέσιμες μετατροπές" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Περιγραφή" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Δεν έχετε αρκετά δικαιώματα να είσαστε εδώ τώρα!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Τα στοιχεία ανανεώθηκαν." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Όνομα VIEW" diff --git a/po/en_GB.po b/po/en_GB.po index a6415a3067..cbd9bea086 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,7 +5,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-16 15:28+0200\n" "Last-Translator: Robert Readman \n" "Language-Team: english-gb \n" @@ -16,21 +16,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Show all" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Page number:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,58 +40,58 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Go" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Keyname" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Description" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Use this value" @@ -109,88 +109,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Database %1$s has been created." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Database comment: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Table comments" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Column" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Default" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Links to" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Comments" @@ -199,14 +200,14 @@ msgstr "Comments" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "No" @@ -219,120 +220,120 @@ msgstr "No" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Yes" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "View dump (schema) of database" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "No tables found in database." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Select All" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Unselect All" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "The database name is empty!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Database %1$s has been renamed to %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Database %1$s has been copied to %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Rename database to" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Remove database" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Database %s has been dropped." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Drop the database (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Copy database to" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Structure only" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Structure and data" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Data only" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE before copying" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Add AUTO_INCREMENT value" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Add constraints" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Switch to copied database" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Collation" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -341,59 +342,59 @@ msgstr "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Edit or export relational schema" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Table" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Rows" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Size" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "in use" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Creation" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Last update" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Last check" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -404,210 +405,210 @@ msgstr[1] "%s tables" msgid "You have to choose at least one column to display" msgstr "You have to choose at least one column to display" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Switch to %svisual builder%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sort" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Ascending" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Descending" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Show" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Criteria" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "And" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Or" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Modify" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Add/Delete criteria rows" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Add/Delete columns" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Update Query" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Use Tables" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Submit Query" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Access denied" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "at least one of the words" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "all words" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "the exact phrase" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "as regular expression" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Search results for \"%s\" %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s match" msgstr[1] "Total: %s matches" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Search in database" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Words or values to search for (wildcard: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Find:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Words are separated by a space character (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Inside tables:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Inside column:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "No tables found in database" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "unknown" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Table %s has been emptied" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "View %s has been dropped" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Table %s has been dropped" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Tracking is active." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Tracking is not active." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -616,185 +617,186 @@ msgstr "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replication" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Sum" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Check All" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Print view" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Empty" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Drop" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Check table" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimise table" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Repair table" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyse table" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Add prefix to table" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Replace table prefix" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copy table with prefix" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Data Dictionary" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Tracked tables" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Database" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Last version" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Created" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Updated" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Status" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Action" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Delete tracking data for this table" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "active" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "not active" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versions" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Tracking report" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Structure snapshot" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Untracked tables" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Track table" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Database Log" @@ -806,28 +808,28 @@ msgstr "Bad type!" msgid "Selected export type has to be saved in file!" msgstr "Selected export type has to be saved in file!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Bad parameters!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Insufficient space to save the file %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "File %s already exists on server, change filename or check overwrite option." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "The web server does not have permission to save the file %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump has been saved to file %s." @@ -836,86 +838,86 @@ msgstr "Dump has been saved to file %s." msgid "Invalid export type" msgstr "Invalid export type" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Value for the column \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Use OpenStreetMaps as Base Layer" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometry" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Point" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Point %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Add a point" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Linestring" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Outer Ring" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Inner Ring" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Add a linestring" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Add an inner ring" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Polygon" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Add a polygon" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Add geometry" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Output" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -923,7 +925,7 @@ msgstr "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -932,21 +934,21 @@ msgstr "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "The bookmark has been deleted." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "File could not be read" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -955,7 +957,7 @@ msgstr "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -965,27 +967,27 @@ msgstr "" "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Cannot convert file's character set without character set conversion library" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Could not load import plug-ins, please check your installation!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import has been successfully finished, %d queries executed." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -993,7 +995,7 @@ msgstr "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1001,23 +1003,23 @@ msgstr "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Back" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin is more friendly with a frames-capable browser." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." @@ -1026,7 +1028,7 @@ msgstr "\"DROP DATABASE\" statements are disabled." msgid "Do you really want to execute \"%s\"?" msgstr "Do you really want to execute \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -1066,7 +1068,7 @@ msgstr "Add Index" msgid "Edit Index" msgstr "Edit Index" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Add %d column(s) to index" @@ -1084,16 +1086,16 @@ msgstr "The host name is empty!" msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Add user" @@ -1110,23 +1112,24 @@ msgstr "Removing Selected Users" msgid "Close" msgstr "Close" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Edit" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Live traffic chart" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Live conn./process chart" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Live query chart" @@ -1136,24 +1139,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Other" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1173,7 +1176,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Processes" @@ -1191,7 +1194,7 @@ msgstr "Questions since last refresh" msgid "Questions (executed statements by the server)" msgstr "Questions (executed statements by the server)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Query statistics" @@ -1236,14 +1239,14 @@ msgid "System swap" msgstr "System swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1295,32 +1298,32 @@ msgstr "Bytes sent" msgid "Bytes received" msgstr "Bytes received" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Connections" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1334,11 +1337,11 @@ msgstr "%d table(s)" msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Settings" @@ -1358,11 +1361,11 @@ msgstr "Add chart to grid" msgid "Please add at least one variable to the series" msgstr "Please add at least one variable to the series" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "None" @@ -1462,7 +1465,7 @@ msgstr "Change settings" msgid "Current settings" msgstr "Current settings" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Chart Title" @@ -1546,7 +1549,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Time" @@ -1639,10 +1642,10 @@ msgstr "" "Failed building chart grid with imported config. Resetting to default " "config..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1690,9 +1693,9 @@ msgstr "Used variable / formula" msgid "Test" msgstr "Test" -#: 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 +#: 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 msgid "Cancel" msgstr "Cancel" @@ -1704,11 +1707,11 @@ msgstr "Loading" msgid "Processing Request" msgstr "Processing Request" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Error in Processing Request" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "No databases selected." @@ -1720,9 +1723,9 @@ msgstr "Dropping Column" msgid "Adding Primary Key" msgstr "Adding Primary Key" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1762,15 +1765,15 @@ msgstr "Hide indexes" msgid "Show indexes" msgstr "Show indexes" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Foreign key check:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Enabled)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Disabled)" @@ -1798,7 +1801,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET editor" @@ -1838,8 +1841,8 @@ msgstr "Show query box" msgid "No rows selected" msgstr "No rows selected" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Change" @@ -1847,18 +1850,18 @@ msgstr "Change" msgid "Query execution time" msgstr "Query execution time" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Save" @@ -1870,7 +1873,7 @@ msgstr "Hide search criteria" msgid "Show search criteria" msgstr "Show search criteria" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Zoom Search" @@ -1916,12 +1919,12 @@ msgstr "Query results" msgid "Data point content" msgstr "Data point content" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Copy" @@ -1941,7 +1944,7 @@ msgstr "Select Foreign Key" msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Choose column to display" @@ -2031,7 +2034,7 @@ msgstr "Generate" msgid "Change Password" msgstr "Change Password" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "More" @@ -2122,63 +2125,63 @@ msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dec" @@ -2216,32 +2219,32 @@ msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sat" @@ -2355,16 +2358,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "per second" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "per minute" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "per hour" @@ -2386,20 +2389,206 @@ msgstr "" msgid "Font size" msgstr "Font size" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Save edited data" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Restore column order" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Begin" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Previous" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Next" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "End" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Start row" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Number of rows" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Mode" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontal" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontal (rotated headers)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertical" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "Headers every %s rows" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Sort by key" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Options" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Partial texts" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Full texts" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Relational key" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Relational display column" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Show binary contents" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Show BLOB contents" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Show binary contents as HEX" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Hide browser transformation" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Well Known Text" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Well Known Binary" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Kill" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "in query" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Showing rows" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "total" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Query took %01.4f sec" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Query results operations" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Print view (with full texts)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Display chart" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Visualise GIS data" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Create view" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Link not found" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Too many error messages, some are not displayed." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "File was not an uploaded file." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "The uploaded file exceeds the upload_max_filesize directive in php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2407,27 +2596,27 @@ msgstr "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "The uploaded file was only partially uploaded." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Missing a temporary folder." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Failed to write file to disk." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "File upload stopped by extension." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Unknown error in file upload." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2435,26 +2624,39 @@ msgstr "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Error while moving uploaded file." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Cannot read (moved) upload file." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Open new phpMyAdmin window" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Cookies must be enabled past this point." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indexes" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unique" @@ -2467,8 +2669,8 @@ msgstr "Packed" msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Comment" @@ -2491,128 +2693,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Databases" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Structure" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Insert" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operations" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Tracking" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Table seems to be empty!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Database seems to be empty!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Query" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privileges" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Routines" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Events" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Users" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synchronise" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binary log" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variables" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Charsets" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Plug-ins" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Engines" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Error" @@ -2637,7 +2839,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d row inserted." msgstr[1] "%1$d rows inserted." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Error while creating PDF:" @@ -2730,16 +2932,98 @@ 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 +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 +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 +msgid "Value" +msgstr "Value" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Table Search" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Edit/Insert" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Select columns (at least one):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Add search conditions (body of the \"where\" clause):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Number of rows per page" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Display order:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Use this column to label each point" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Maximum rows to plot" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Browse foreign values" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Additional search criteria" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "Do a \"query by example\" (wildcard: \"%\") for two different columns" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Do a \"query by example\" (wildcard: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Browse/Edit the points" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "How to use" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Reset" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "No valid image path for theme %s found!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "No preview available." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "take it" @@ -2758,7 +3042,7 @@ msgstr "Theme %s not found!" msgid "Theme path not found for theme %s!" msgstr "Theme path not found for theme %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Theme" @@ -3108,13 +3392,13 @@ msgstr "An enumeration, chosen from the list of defined values" msgid "Cannot connect: invalid settings." msgstr "Cannot connect: invalid settings." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Welcome to %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3123,7 +3407,7 @@ msgstr "" "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:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3139,59 +3423,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Failed to use Blowfish from mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Log in" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "You can enter hostname/IP address and port separated by space." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Username:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Password:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Server Choice" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Cookies must be enabled past this point." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Log-in without a password is forbidden by configuration (see AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Cannot log in to the MySQL server" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Wrong username/password. Access denied." @@ -3223,7 +3503,7 @@ msgstr "shared" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tables" @@ -3235,13 +3515,13 @@ msgstr "Tables" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Overhead" @@ -3266,19 +3546,11 @@ msgstr "Check privileges for database "%s"." msgid "Check Privileges" msgstr "Check Privileges" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "possible exploit" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "numeric key detected" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Failed to read configuration file" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3286,12 +3558,12 @@ msgstr "" "This usually means there is a syntax error in it, please check any errors " "shown below." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Could not load default configuration from: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3299,204 +3571,190 @@ msgstr "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Invalid server index: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Invalid authentication method set in configuration:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "You should upgrade to %s %s or later." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "GLOBALS overwrite attempt" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "possible exploit" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "numeric key detected" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Documentation" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL query" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Failed to connect to SQL validator!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explain SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Without PHP Code" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Create PHP Code" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Refresh" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Inline edit of this query" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profiling" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Sun" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Missing parameter:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Begin" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Previous" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Next" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "End" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Click to toggle" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Browse your computer:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Select from the web server upload directory %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "There are no files to upload" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Execute" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Print" @@ -3526,8 +3784,8 @@ msgid "Closed" msgstr "Closed" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Disabled" @@ -3668,9 +3926,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Reset" @@ -3893,10 +4151,6 @@ msgstr "Hide table structure actions" msgid "Show binary contents as HEX by default" msgstr "Show binary contents as HEX by default" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Show binary contents as HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Show database listing as a list instead of a drop down" @@ -3953,7 +4207,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Maximum execution time" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Save as file" @@ -3962,7 +4216,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4066,7 +4320,7 @@ msgid "MIME type" msgstr "MIME type" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relations" @@ -5652,9 +5906,9 @@ msgstr "Requires SQL Validator to be enabled" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Password" @@ -5939,32 +6193,24 @@ msgstr "Please check privileges of directory containing database." msgid "Details..." msgstr "Details..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Connection for controluser as defined in your configuration failed." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Change password" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "No Password" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Re-type" @@ -5985,22 +6231,22 @@ msgstr "Create database" msgid "Create" msgstr "Create" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "No Privileges" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Name" @@ -6156,25 +6402,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Encoding Conversion:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s from %2$s branch" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "no branch" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Git revision" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "committed on %1$s by %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "authored on %1$s by %2$s" @@ -6292,173 +6538,27 @@ msgstr "Format-Specific Options:" msgid "Language" msgstr "Language" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Save edited data" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Restore column order" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Start row" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Number of rows" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Mode" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontal" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontal (rotated headers)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertical" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Headers every %s rows" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Sort by key" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Options" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Partial texts" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Full texts" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Relational key" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Relational display column" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Show binary contents" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Show BLOB contents" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Hide browser transformation" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Well Known Text" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Well Known Binary" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "The row has been deleted" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Kill" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "in query" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Showing rows" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "total" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Query took %01.4f sec" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Query results operations" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Print view (with full texts)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Display chart" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Visualise GIS data" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Create view" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Link not found" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Version information" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Data home directory" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "The common part of the directory path for all InnoDB data files." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Data files" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Autoextend increment" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6466,11 +6566,11 @@ msgstr "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Buffer pool size" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6478,79 +6578,79 @@ msgstr "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB Status" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Buffer Pool Usage" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "pages" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Free pages" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Dirty pages" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Pages containing data" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Pages to be flushed" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Busy pages" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Latched pages" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Buffer Pool Activity" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Read requests" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Write requests" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Read misses in %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Write waits in %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Data pointer size" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6558,11 +6658,11 @@ msgstr "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Automatic recovery mode" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6570,11 +6670,11 @@ msgstr "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Maximum size for temporary sort files" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6584,11 +6684,11 @@ msgstr "" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Maximum size for temporary files on index creation" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6598,11 +6698,11 @@ msgstr "" "than using the key cache by the amount specified here, prefer the key cache " "method." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Repair threads" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6610,11 +6710,11 @@ msgstr "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Sort buffer size" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6622,11 +6722,11 @@ msgstr "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Index cache size" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6634,11 +6734,11 @@ msgstr "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Record cache size" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6648,11 +6748,11 @@ msgstr "" "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Log cache size" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6660,11 +6760,11 @@ msgstr "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Log file threshold" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6672,11 +6772,11 @@ msgstr "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Transaction buffer size" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6684,11 +6784,11 @@ msgstr "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Checkpoint frequency" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6696,11 +6796,11 @@ msgstr "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Data log threshold" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6712,11 +6812,11 @@ msgstr "" "value of this variable can be increased to increase the total amount of data " "that can be stored in the database." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Garbage threshold" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6724,11 +6824,11 @@ msgstr "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Log buffer size" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6738,27 +6838,27 @@ msgstr "" "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Data file grow size" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "The grow size of the handle data (.xtd) files." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Row file grow size" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "The grow size of the row pointer (.xtr) files." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Log file count" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6770,7 +6870,7 @@ msgstr "" "will be deleted, otherwise they are renamed and given the next highest " "number." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6779,11 +6879,11 @@ msgstr "" "Documentation and further information about PBXT can be found on the " "%sPrimeBase XT Home Page%s." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Related Links" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "The PrimeBase XT Blog by Paul McCullagh" @@ -6830,14 +6930,14 @@ msgstr "Dumping data for table" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Event" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definition" @@ -6895,14 +6995,14 @@ msgstr "Display MIME types" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Host" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Generation Time" @@ -7108,21 +7208,12 @@ msgstr "Views" msgid "Export contents" msgstr "Export contents" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Open new phpMyAdmin window" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "No data found for GIS visualisation." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "GLOBALS overwrite attempt" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7223,12 +7314,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Table name" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Column names" @@ -7297,92 +7388,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Function" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Hide" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binary" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binary - do not edit" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "web server upload directory" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Edit/Insert" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Continue insertion with %s rows" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "and then" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Insert as new row" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Insert as new row and ignore errors" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Show insert query" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Go back to previous page" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Insert another new row" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Go back to this page" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Edit next row" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Value" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" @@ -7397,32 +7472,32 @@ msgstr "None" msgid "Convert to Kana" msgstr "Convert to Kana" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "From" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "To" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Submit" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Add table prefix" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Add prefix" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 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:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "No change" @@ -7632,82 +7707,82 @@ msgstr "Reload navigation frame" msgid "This format has no options" msgstr "This format has no options" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "not OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Enabled" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "General relation features" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Display Features" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Creation of PDFs" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Displaying Column Comments" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Please see the documentation on how to update your column_comments table" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Bookmarked SQL query" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL history" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Persistent recently used tables" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Persistent tables' UI preferences" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "User preferences" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Quick steps to setup advanced features:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Create the needed tables with the examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Create a pma user and give access to these tables." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7715,11 +7790,11 @@ msgstr "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Re-login to phpMyAdmin to load the updated configuration file." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "no description" @@ -7727,7 +7802,7 @@ msgstr "no description" msgid "Slave configuration" msgstr "Slave configuration" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Change or reconfigure master server" @@ -7741,13 +7816,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "User name" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -7760,7 +7835,7 @@ msgid "Slave status" msgstr "Slave status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variable" @@ -7776,38 +7851,38 @@ msgstr "" "Only slaves started with the --report-host=host_name option are visible in " "this list." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Add slave replication user" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Any user" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Use text field" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Any host" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "This Host" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Use Host Table" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7823,7 +7898,7 @@ msgstr "Generate Password" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7854,88 +7929,89 @@ msgstr "Event %1$s has been created." msgid "One or more errors have occured while processing your request:" msgstr "One or more errors have occurred while processing your request:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Edit event" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Error in processing request" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Details" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Event name" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Event type" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Change to %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Execute at" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Execute every" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Start" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "End" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "On completion preserve" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Definer" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: 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" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "You must provide an event name" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "You must provide a valid interval value for the event." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "You must provide a valid execution time for the event." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "You must provide a valid type for the event." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "You must provide an event definition." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "New" @@ -7968,7 +8044,7 @@ msgstr "" "problems." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Invalid routine type: \"%s\"" @@ -7987,69 +8063,69 @@ msgstr "Routine %1$s has been modified." msgid "Routine %1$s has been created." msgstr "Routine %1$s has been created." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Edit routine" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Routine name" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parameters" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Direction" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Length/Values" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Add parameter" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Remove last parameter" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Return type" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Return length/values" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Return options" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Is deterministic" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Security type" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "SQL data access" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "You must provide a routine name" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Invalid direction \"%s\" given for parameter." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8057,37 +8133,37 @@ msgstr "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "You must provide a routine definition." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Execution results of routine %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Execute routine" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Routine parameters" @@ -8105,36 +8181,36 @@ msgstr "Trigger %1$s has been modified." msgid "Trigger %1$s has been created." msgstr "Trigger %1$s has been created." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Edit trigger" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Trigger name" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Time" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "You must provide a trigger name" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "You must provide a valid timing for the trigger" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "You must provide a valid event for the trigger" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "You must provide a valid table name" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "You must provide a trigger definition." @@ -8218,7 +8294,7 @@ msgstr "There are no events to display." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8227,7 +8303,7 @@ msgstr "The %s table doesn't exist!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8235,7 +8311,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8246,27 +8322,27 @@ msgstr "Schema of the %s database - Page %s" msgid "This page does not contain any tables!" msgstr "This page does not contain any tables!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "SCHEMA ERROR: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Relational schema" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Table of contents" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Attributes" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8374,7 +8450,7 @@ msgstr "Unknown language: %1$s." msgid "Current Server" msgstr "Current server" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Source database" @@ -8392,7 +8468,7 @@ msgstr "Remote server" msgid "Difference" msgstr "Difference" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Target database" @@ -8411,7 +8487,7 @@ msgstr "Run SQL query/queries on server %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Clear" @@ -8420,11 +8496,11 @@ msgstr "Clear" msgid "Columns" msgstr "Columns" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" @@ -8519,7 +8595,7 @@ msgstr "" "The SQL validator could not be initialised. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "Tracking of %s is activated." @@ -8545,8 +8621,8 @@ msgstr "" "escaping or quotes, using this format: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Index" @@ -8596,13 +8672,13 @@ msgstr "None" msgid "As defined:" msgstr "As defined:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primary" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Fulltext" @@ -8615,17 +8691,17 @@ msgstr "first" msgid "after %s" msgstr "after %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Add %s column(s)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "You have to add at least one column." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Storage Engine" @@ -8633,41 +8709,6 @@ msgstr "Storage Engine" msgid "PARTITION definition" msgstr "PARTITION definition" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Table Search" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Select columns (at least one):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Add search conditions (body of the \"where\" clause):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Number of rows per page" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Display order:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Browse foreign values" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Do a \"query by example\" (wildcard: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8820,11 +8861,11 @@ msgstr "" msgid "Manage your settings" msgstr "Manage your settings" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Configuration has been saved" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8837,7 +8878,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Could not save configuration" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8866,7 +8907,7 @@ msgstr "Server connection collation" msgid "Appearance Settings" msgstr "Appearance Settings" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "More settings" @@ -8886,9 +8927,9 @@ msgstr "Software version" msgid "Protocol version" msgstr "Protocol version" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "User" @@ -9022,128 +9063,128 @@ msgstr "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "No databases" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Filter tables by name" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Filter tables by name" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Create table" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Please select a database" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Show/Hide left menu" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Save position" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Create relation" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Reload" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Help" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Angular links" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Direct links" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Snap to grid" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Small/Big All" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Toggle small/big" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Toggle relation lines" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export coordinates for PDF schema" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Build Query" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Move Menu" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Hide/Show all" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Hide/Show Tables with no relation" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Number of tables" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Delete relation" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Relation operator" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Except" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "subquery" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Rename to" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "New name" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Aggregate" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Active options" @@ -9155,51 +9196,51 @@ msgstr "Page has been created" msgid "Page creation failed" msgstr "Page creation failed" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Page" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Import from selected page" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Export to selected page" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Create a page and export to it" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "New page name: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Export/Import to scale" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "recommended" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Error: relation already exists." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Error: Relation not added." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation added" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Internal relation added" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relation deleted" @@ -9211,51 +9252,51 @@ msgstr "Error saving coordinates for Designer." msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Cannot save settings, submitted form contains errors" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Could not import configuration" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Configuration contains incorrect data for some fields." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Do you want to import remaining settings?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Saved on: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Import from file" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Import from browser's storage" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Settings will be imported from your browser's local storage." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "You have no saved settings!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "This feature is not supported by your web browser" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Merge with current configuration" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9264,36 +9305,36 @@ msgstr "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Save to browser's storage" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Settings will be saved in your browser's local storage." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Existing settings will be overwritten!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "You can reset all your settings and restore them to default values." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Import files" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "All" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "File doesn't exist" @@ -9301,17 +9342,17 @@ msgstr "File doesn't exist" msgid "Select binary log to view" msgstr "Select binary log to view" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Files" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -9327,7 +9368,7 @@ msgstr "Position" msgid "Original position" msgstr "Original position" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Information" @@ -9335,31 +9376,31 @@ msgstr "Information" msgid "Character Sets and Collations" msgstr "Character Sets and Collations" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d database has been dropped successfully." msgstr[1] "%1$d databases have been dropped successfully." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Databases statistics" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Master replication" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Slave replication" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Enable Statistics" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9371,152 +9412,152 @@ msgstr "" msgid "Storage Engines" msgstr "Storage Engines" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Modules" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Begin" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Plug-in" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Module" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Library" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Version" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Author" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Licence" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "disabled" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Allows creating new tables." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Allows creating new views." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Allows deleting data." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Allows dropping tables." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Allows to set up events for the event scheduler" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limits the number of queries the user may send to the server per hour." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9524,58 +9565,58 @@ msgstr "" "Limits the number of commands that change any table or database the user may " "execute per hour." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Allows viewing processes of all users" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Allows reading data." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9585,162 +9626,162 @@ msgstr "" "required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping triggers" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "No privileges." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "None" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Note: MySQL privilege names are expressed in English" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administration" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Global privileges" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Database-specific privileges" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Resource limits" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Setting these options to 0 (zero) removes the limit." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Login Information" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Do not change the password" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "No user found." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "The user %s already exists!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "You have added a new user." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "You have updated the privileges for %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "You have revoked the privileges for %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "The password for %s was changed successfully." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Deleting %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "No users selected for deleting!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Reloading the privileges" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "The selected users have been deleted successfully." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Edit Privileges" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Export all" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Any" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Privileges for all users" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Privileges for %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Users overview" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9753,49 +9794,49 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: server_privileges.php:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Add privileges on the following database" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Add privileges on the following table" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Create a new user with the same privileges and ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... keep the old one." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... delete the old one from the user tables." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9803,81 +9844,81 @@ msgstr "" "... delete the old one from the user tables and reload the privileges " "afterwards." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Database for user" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "Create database with same name and grant all privileges" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Grant all privileges on database "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "database-specific" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "User has been added." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Unknown error" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Unable to connect to master %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Unable to read master log position. Possible privilege problem on master." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Unable to change master" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Master server changed successfully to %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "This server is configured as master in a replication process." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Show master status" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Show connected slaves" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9886,11 +9927,11 @@ msgstr "" "This server is not configured as master in a replication process. Would you " "like to configure it?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Master configuration" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9904,28 +9945,28 @@ msgstr "" "ignore all databases by default and allow only certain databases to be " "replicated. Please select the mode:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Replicate all databases; Ignore:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Ignore all databases; Replicate:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Please select databases:" -#: server_replication.php:255 -msgid "" -"Now, add the following lines at the end of [mysqld] section in your my.cnf " -"and please restart the MySQL server afterwards." -msgstr "" -"Now, add the following lines at the end of [mysqld] section in your my.cnf " -"and please restart the MySQL server afterwards." - #: server_replication.php:257 msgid "" +"Now, add the following lines at the end of [mysqld] section in your my.cnf " +"and please restart the MySQL server afterwards." +msgstr "" +"Now, add the following lines at the end of [mysqld] section in your my.cnf " +"and please restart the MySQL server afterwards." + +#: server_replication.php:259 +msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" @@ -9934,81 +9975,81 @@ msgstr "" "should see a message informing you, that this server is configured as " "master" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread not running!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread not running!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Server is configured as slave in a replication process. Would you like to:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "See slave status table" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Synchronise databases with master" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Control slave:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Full start" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Full stop" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Reset slave" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Start SQL Thread only" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Stop SQL Thread only" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Start IO Thread only" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Stop IO Thread only" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Error management:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Skipping errors might lead into unsynchronised master and slave!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Skip current error" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Skip next" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "errors." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10017,127 +10058,127 @@ msgstr "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s was successfully killed." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Handler" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Query cache" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Threads" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Temporary data" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Key cache" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Joins" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Sorting" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Transaction coordinator" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Show open tables" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Show slave hosts" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Show slave status" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Runtime Information" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "All status variables" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Monitor" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Advisor" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Refresh rate: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filters" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Containing the word:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Show only alert values" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filter by category..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Show unformatted values" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Related links:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Run analyser" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Instructions" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10145,7 +10186,7 @@ msgstr "" "The Advisor system can provide recommendations on server variables by " "analysing the server status variables." -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10155,7 +10196,7 @@ msgstr "" "calculations and by rule of thumb which may not necessarily apply to your " "system." -#: server_status.php:920 +#: server_status.php:919 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 " @@ -10165,7 +10206,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:922 +#: server_status.php:921 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 " @@ -10176,31 +10217,31 @@ msgstr "" "no clearly measurable improvement." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Questions since startup: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Statements" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Network traffic since startup: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10208,16 +10249,16 @@ msgstr "" "This MySQL server works as master and slave in replication process." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" "This MySQL server works as master in replication process." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "This MySQL server works as slave in replication process." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10225,11 +10266,11 @@ msgstr "" "For further information about replication status on the server, please visit " "the replication section." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Replication status" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10237,35 +10278,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Received" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Sent" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Failed attempts" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Aborted" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Command" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10273,11 +10314,11 @@ msgstr "" "The number of connections that were aborted because the client died without " "closing the connection properly." -#: server_status.php:1321 +#: server_status.php:1320 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:1322 +#: server_status.php:1321 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 " @@ -10287,33 +10328,33 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:1323 +#: server_status.php:1322 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." +"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-" +"based instead of disk-based." msgstr "" -"The number of connection attempts (successful or not) to the MySQL server." +"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-" +"based instead of disk-based." #: 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-" -"based instead of disk-based." -msgstr "" -"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-" -"based instead of disk-based." - -#: server_status.php:1326 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10321,39 +10362,39 @@ 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)." +msgstr "" +"The number of rows written with INSERT DELAYED for which some error occurred " +"(probably duplicate key)." + #: server_status.php:1328 msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"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 rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"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 -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:1330 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10363,208 +10404,208 @@ msgstr "" "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." +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: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." +"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 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 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 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." +"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 "" -"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." +"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." #: 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 "" -"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." - -#: 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 "" "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." +"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 " +"advantage of the indexes you have." 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." +"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 " +"advantage of the indexes you have." #: 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 " -"advantage of the indexes you have." -msgstr "" -"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 " -"advantage of the indexes you have." - -#: server_status.php:1341 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 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." +"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 - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." 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." +"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 - " +"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." #: 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 - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -msgstr "" -"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 - " -"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." - -#: 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." +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." 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." +"The number of sequential read-aheads InnoDB initiated. This happens when " +"InnoDB does a sequential full table scan." #: 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: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." +"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 " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." msgstr "" -"The number of logical reads that InnoDB could not satisfy from buffer pool " -"and had to do a single-page read." +"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 " +"counter counts instances of these waits. If the buffer pool size was set " +"properly, this value should be small." #: 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 " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." -msgstr "" -"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 " -"counter counts instances of these waits. If the buffer pool size was set " -"properly, this value should be small." - -#: 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:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -10572,35 +10613,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:1370 +#: server_status.php:1369 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10608,51 +10649,51 @@ 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "The number of pages read." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "The number of pages written." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:1387 +#: 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." @@ -10660,65 +10701,65 @@ 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." +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: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." +"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 "" -"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 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." #: 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 "" -"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." - -#: server_status.php:1390 msgid "Percentage of used key cache (calculated value)" msgstr "Percentage of used key cache (calculated value)" -#: server_status.php:1391 +#: server_status.php:1390 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." +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" 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." +"Key cache miss calculated as rate of physical reads compared to read " +"requests (calculated value)" #: 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: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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 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:1397 +#: server_status.php:1396 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 " @@ -10728,7 +10769,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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10736,11 +10777,11 @@ msgstr "" "The maximum number of connections that have been in use simultaneously since " "the server started." -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10748,19 +10789,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10770,51 +10811,51 @@ msgstr "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:1407 +#: server_status.php:1406 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." +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." 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." +"The number of non-cached queries (not cachable, or not cached due to the " +"query_cache_type setting)." #: 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:1410 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10822,35 +10863,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:1414 +#: server_status.php:1413 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.)" +"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 without keys that check for key usage after each row. " -"(If this is not 0, you should carefully check the indexes of your tables.)" +"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 -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: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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10858,11 +10899,11 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10870,39 +10911,39 @@ 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." +msgstr "" +"The number of queries that have taken more than long_query_time seconds." + #: server_status.php:1422 msgid "" -"The number of queries that have taken more than long_query_time seconds." +"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 "" -"The number of queries that have taken more than long_query_time seconds." +"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." #: 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 "" -"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." - -#: 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:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 +10955,7 @@ msgstr "" "should first optimise your queries, and then either split your table or " "tables or use replication." -#: server_status.php:1429 +#: server_status.php:1428 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 +10965,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10940,47 +10981,47 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "Thread cache hit rate (calculated value)" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Start Monitor" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Instructions/Setup" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Done rearranging/editing charts" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Add chart" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Rearrange/edit charts" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Refresh rate" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Chart columns" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Chart arrangement" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -10988,15 +11029,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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Reset to default" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Monitor Instructions" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11010,7 +11051,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:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11022,11 +11063,11 @@ msgstr "" "table is supported by MySQL 5.1.6 and onwards. You may still use the server " "charting features however." -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Using the monitor:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11036,7 +11077,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:1655 +#: server_status.php:1654 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 +11089,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:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Please note:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11064,196 +11105,196 @@ 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:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Preset chart" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Status variable(s)" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Select series:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Commonly monitored" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "or type variable name:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Display as differential value" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Apply a divisor" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Append unit to data values" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Add this series" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Clear series" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Series in Chart:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Log statistics" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Selected time range:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Remove variable data in INSERT statements for better grouping" -#: server_status.php:1752 +#: server_status.php:1751 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:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Results are grouped by query text." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Query analyser" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d second" msgstr[1] "%d seconds" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minute" msgstr[1] "%d minutes" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Could not connect to the source" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Could not connect to the target" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' database does not exist." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Structure Synchronisation" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Data Synchronisation" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "not present" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Structure Difference" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Data Difference" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Add column(s)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Remove column(s)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Alter column(s)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Remove index(s)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Apply index(s)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Update row(s)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Insert row(s)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Would you like to delete all the previous rows from target tables?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Apply Selected Changes" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Synchronise Databases" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Selected target tables have been synchronised with source tables." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Target database has been synchronised with source database" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Executed queries" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Enter manually" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Current connection" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Configuration: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11261,19 +11302,19 @@ msgstr "" "Target database will be completely synchronised with source database. Source " "database will remain unchanged." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Setting variable failed" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Server variables and settings" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Session value" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Global value" @@ -11604,153 +11645,153 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters." msgid "Wrong data" msgstr "Wrong data" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Using bookmark \"%s\" as default browse query." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Do you really want to execute following query?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Showing as PHP code" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Validated SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL result" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Generated by" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Label" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Table %1$s has been altered successfully" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "The columns have been moved successfully." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Bar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Column" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Line" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Spline" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Pie" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Stacked" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Chart title" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "X-Axis:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Series:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "X-Axis label:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "X Values" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Y-Axis label:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Y Values" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Table %s already exists!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Table %1$s has been created." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "View dump (schema) of table" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Display GIS Visualisation" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Width" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Height" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Label column" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- None --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Spatial column" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Redraw" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Save to file" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "File name" @@ -11766,29 +11807,29 @@ msgstr "Can't rename index to PRIMARY!" msgid "No index parts defined!" msgstr "No index parts defined!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Add index" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Edit index" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Index name:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" must be the name of and only of a primary key!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Index type:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Add to index  %s column(s)" @@ -11811,150 +11852,150 @@ msgstr "Table %s has been moved to %s." msgid "Table %s has been copied to %s." msgstr "Table %s has been copied to %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "The table name is empty!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Alter table order by" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(singly)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Move table to (database.table):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Table options" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Rename table to" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Copy table to (database.table):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Switch to copied table" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Table maintenance" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragment table" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Table %s has been flushed" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Flush the table (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Delete data or table" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Empty the table (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Delete the table (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Partition maintenance" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analyse" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Check" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimise" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Rebuild" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Repair" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Remove partitioning" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Check referential integrity:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Showing tables" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Space usage" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Effective" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Row Statistics" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "static" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dynamic" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Row length" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Row size" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Next autoindex" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Error creating foreign key on %1$s (check data types)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Internal relation" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -11962,103 +12003,103 @@ msgstr "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Foreign key constraint" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Spatial" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Distinct values" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Add primary key" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Add unique index" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Add SPATIAL index" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Add FULLTEXT index" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "None" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Column %s has been dropped" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "A primary key has been added on %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "An index has been added on %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Show more actions" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "Move columns" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "Move the columns by dragging them up and down." -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Edit view" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Propose table structure" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Add column" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "At End of Table" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "At Beginning of Table" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "After %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Create an index on  %s columns" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "partitioned" @@ -12208,68 +12249,38 @@ msgstr "Track these data manipulation statements:" msgid "Create version" msgstr "Create version" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Do a \"query by example\" (wildcard: \"%\") for two different columns" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Additional search criteria" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Use this column to label each point" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Maximum rows to plot" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Browse/Edit the points" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "How to use" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Reset" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Get more themes!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Available MIME types" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME types printed in italics do not have a separate transformation function" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Available transformations" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Description" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "You don't have sufficient privileges to be here right now!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "The profile has been updated." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "VIEW name" diff --git a/po/es.po b/po/es.po index 438a17e7a6..65b4c99fb0 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-06-03 22:21+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Mostrar todo" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Número de página:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "principal o su navegador está bloqueando las actualizaciones en ventanas " "múltiples debido a sus parámetros de seguridad." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Continuar" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Nombre de la clave" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Descripción" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Use este valor" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "La base de datos %1$s ha sido creada." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Comentario de la base de datos: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Comentarios de la tabla" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Columna" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Nulo" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Predeterminado" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Enlaces a" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Comentarios" @@ -197,14 +198,14 @@ msgstr "Comentarios" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "No" @@ -217,120 +218,120 @@ msgstr "No" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Sí" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Ver el volcado (esquema) de la base de datos" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "No se han encontrado tablas en la base de datos." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Seleccionar todo" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Deseleccionar todo" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "¡El nombre de la base de datos está vacío!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "La base de datos %1$s ha sido renombrada a %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "La base de datos %1$s ha sido copiada a %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Renombrar la base de datos a" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Eliminar base de datos" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "La base de datos %s ha sido eliminada." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Eliminar la base de datos (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Copiar la base de datos a" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Únicamente la estructura" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Estructura y datos" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Solamente datos" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREAR BASE DE DATOS antes de copiar" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Añada %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Añadir el valor AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Añadir restricciones" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Seleccionar la base de datos copiada" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Cotejamiento" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -339,61 +340,61 @@ msgstr "" "El almacenamiento de la configuración de phpMyAdmin ha sido desactivado. " "Para saber por qué haz clic %saquí%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Editar o exportar esquema relacional" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabla" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Filas" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Tamaño" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "en uso" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Creación" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Última actualización" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Última revisión" # singular: tabla # plural: tablas -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -404,212 +405,212 @@ msgstr[1] "%s tablas" msgid "You have to choose at least one column to display" msgstr "Debe elegir al menos una columna para mostrar" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Cambiar al %sconstructor visual%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Ordenar" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Ascendente" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Descendente" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Mostrar" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Criterio" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Insertar" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "y luego" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Borrar" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "O" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Modificar" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Añadir/borrar filas de criterio" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Añadir/borrar columnas" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Modificar la consulta" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Usar tablas" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Consulta a la base de datos %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Ejecutar la consulta" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Acceso denegado" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "al menos una de estas palabras" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "Todas las palabras" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "La frase exacta" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "como expresión regular" -#: db_search.php:216 +#: db_search.php:219 #, 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:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultado" msgstr[1] "Total: %s resultados" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Buscar en la base de datos" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palabras o valores a buscar (comodín: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Encontrado:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Las palabras están separadas por un espacio (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Dentro de las tablas:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Dentro de la columna:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "No se han encontrado tablas en la base de datos" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "desconocido" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Se ha vaciado la tabla %s" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Se descartó el modo de visualización %s" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Se ha eliminado la tabla %s" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "El seguimiento está activo." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "El seguimiento no está activo." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -618,186 +619,187 @@ msgstr "" "Esta vista tiene al menos este número de filas. Refiérase a la " "%sdocumentation%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replicación" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Número de filas" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Para los elementos que están marcados:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Marcar todos" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Marcar las tablas con residuo a depurar" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Vista de impresión" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Vaciar" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Eliminar" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Revisar la tabla" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimizar la tabla" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Reparar la tabla" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizar la tabla" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Agregar prefijo a la tabla" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Reemplazar prefijo de la tabla" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copiar tabla con prefijo" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Diccionario de datos" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Tablas con seguimiento" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Base de datos" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Última versión" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Creado/a" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Actualizado" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Estado actual" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Acción" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Borrar los datos de seguimiento para esta tabla" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "activo/a" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "no activo/a" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versiones" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Informe de seguimiento" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Instantánea de la estructura" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Tablas sin seguimiento" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Hacer seguimiento a la tabla" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Registro de la base de datos" @@ -809,16 +811,16 @@ msgstr "¡Tipo erróneo!" msgid "Selected export type has to be saved in file!" msgstr "¡El formato de exportación seleccionado debe grabarse en el archivo!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "¡Parámetros incorrectos!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "No hay suficiente espacio para guardar el archivo %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -826,12 +828,12 @@ msgstr "" "El archivo %s ya existe en el servidor, cambie el nombre del archivo o " "revise la opción de sobreescritura." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "El servidor web no tiene permiso para guardar el archivo %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "El volcado ha sido guardado al archivo %s." @@ -842,86 +844,86 @@ msgstr "El volcado ha sido guardado al archivo %s." msgid "Invalid export type" msgstr "Tipo de exportación inválido" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Valor para la columna \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utilizar OpenStreetMaps como capa base" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometría" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Punto" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punto %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Agregar un punto" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Cadena de líneas" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Círculo exterior" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Círculo interior" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Agregar una cadena de líneas" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Agregar un círculo interior" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Polígono" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Agregar un polígono" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Agregar geometría" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Salida" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -929,7 +931,7 @@ msgstr "" "Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena " "ubicada debajo en el campo \"Valor\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -938,21 +940,21 @@ msgstr "" "Usted probablemente intentó cargar un archivo demasiado grande. Refiérase a " "%sla documentation%s para hallar modos de superar esta limitación." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Mostrando el favorito" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "El favorito ha sido borrado." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "No fue posible leer el archivo" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -962,7 +964,7 @@ msgstr "" "Este tipo de compresión puede no estar implementado o quizá no ha sido " "habilitado en su archivo de configuración." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -972,29 +974,29 @@ msgstr "" "el tamaño del archivo excedió el máximo permitido por su configuración PHP. " "Ver [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "No se pudo convertir el conjunto de caracteres del archivo sin la biblioteca " "correspondiente" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "No se pudieron cargar los plugins de importación. ¡Revise su instalación!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "El favorito %s fue creado" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "La importación se ejecutó exitosamente, se ejecutaron %d consultas." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1002,7 +1004,7 @@ msgstr "" "Se ha agotado el tiempo de ejecución del script; si desea completar la " "importación reenvíe el mismo archivo y la importación continuará." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1011,23 +1013,23 @@ msgstr "" "usualmente significa que phpMyAdmin no será capaz de completar esta " "importación a menos que usted incremente el tiempo de ejecución de php." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Volver" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funciona mejor con un navegador que reconoce frames." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Las sentencias \"DROP DATABASE\" están desactivadas." @@ -1036,7 +1038,7 @@ msgstr "Las sentencias \"DROP DATABASE\" están desactivadas." msgid "Do you really want to execute \"%s\"?" msgstr "¿Realmente desea ejecutar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "¡Está a punto de DESTRUIR una base de datos completa!" @@ -1076,7 +1078,7 @@ msgstr "Agregar índice" msgid "Edit Index" msgstr "Editar índice" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Agregar %d columna(s) al índice" @@ -1094,16 +1096,16 @@ msgstr "¡El nombre del servidor está vacío!" msgid "The user name is empty!" msgstr "¡El nombre de usuario está vacío!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "¡La contraseña está vacía!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Agregar usuario" @@ -1120,23 +1122,24 @@ msgstr "Eliminando los usuarios seleccionados" msgid "Close" msgstr "Cerrar" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Editar" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Gráfico de tráfico en vivo" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Gráfico de procesos/conexiones en vivo" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Gráfico de consultas en vivo" @@ -1146,24 +1149,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Otro" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1183,7 +1186,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Procesos" @@ -1201,7 +1204,7 @@ msgstr "Preguntas desde la última actualización" msgid "Questions (executed statements by the server)" msgstr "Preguntas (sentencias ejecutadas por el servidor)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Estadísticas de Consulta" @@ -1246,14 +1249,14 @@ msgid "System swap" msgstr "Intercambio de sistema" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1305,32 +1308,32 @@ msgstr "Bytes enviados" msgid "Bytes received" msgstr "Bytes recibidos" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Conexiones" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1346,12 +1349,12 @@ msgstr "%d tabla(s)" msgid "Questions" msgstr "Preguntas" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Tráfico" # This is the text showed in the tab -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Configuración" @@ -1371,11 +1374,11 @@ msgstr "Agregar gráfico a la grilla" msgid "Please add at least one variable to the series" msgstr "Agregue al menos una variable a la serie" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Ninguna" @@ -1475,7 +1478,7 @@ msgstr "Cambiar configuraciones" msgid "Current settings" msgstr "Configuraciones actuales" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Título del gráfico" @@ -1562,7 +1565,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Tiempo" @@ -1657,10 +1660,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:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1708,9 +1711,9 @@ msgstr "Variable/fórmula utilizada" msgid "Test" msgstr "Prueba" -#: 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 +#: 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 msgid "Cancel" msgstr "Cancelar" @@ -1722,11 +1725,11 @@ msgstr "Cargando" msgid "Processing Request" msgstr "Procesando Petición" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Error al Procesar la Petición" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "No se seleccionaron bases de datos." @@ -1738,9 +1741,9 @@ msgstr "Eliminando Columna" msgid "Adding Primary Key" msgstr "Añadiendo Clave Primaria" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1780,15 +1783,15 @@ msgstr "Esconder índices" msgid "Show indexes" msgstr "Mostrar índices" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Revisión de claves foráneas:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Habilitado)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Deshabilitado)" @@ -1817,7 +1820,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" @@ -1857,8 +1860,8 @@ msgstr "Mostrar ventana de consultas SQL" msgid "No rows selected" msgstr "No se seleccionaron filas" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Cambiar" @@ -1866,18 +1869,18 @@ msgstr "Cambiar" msgid "Query execution time" msgstr "Tiempo de ejecución de la consulta" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Guardar" @@ -1889,7 +1892,7 @@ msgstr "Ocultar criterio de búsqueda" msgid "Show search criteria" msgstr "Mostrar criterio de búsqueda" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Búsqueda gráfica" @@ -1935,12 +1938,12 @@ msgstr "Resultados de la consulta" msgid "Data point content" msgstr "Contenido del punto de datos" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Copiar" @@ -1960,7 +1963,7 @@ msgstr "Seleccione la clave foránea" msgid "Please select the primary key or a unique key" msgstr "Seleccione la clave primaria o una clave única" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Elegir la columna a mostrar" @@ -2056,7 +2059,7 @@ msgstr "Generar" msgid "Change Password" msgstr "Cambar contraseña" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Más" @@ -2147,63 +2150,63 @@ msgid "December" msgstr "Diciembre" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dic" @@ -2241,32 +2244,32 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sab" @@ -2383,16 +2386,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "por hora" @@ -2415,21 +2418,208 @@ msgstr "" msgid "Font size" msgstr "Tamaño de fuente" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Guardar datos editados" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Restaurar orden de las columnas" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Comenzar" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Anterior" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Siguiente" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Fin" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Fila de inicio" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Número de filas" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Modo" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontal" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontal (encabezados rotados)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertical" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "Cabeceras cada %s filas" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Ordenar según la clave" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Opciones" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Textos parciales" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Textos completos" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Clave relacional" + +# Display option apparently related to +# http://www.phpmyadmin.net/documentation/#relation +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Mostrar columna de relación" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Mostrar contenido binario" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Mostrar contenido BLOB" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Mostrar contenido binario como HEXadecimal" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Ocultar transformación del navegador" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Texto muy conocido" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Binario muy conocido" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Matar el proceso" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Podría ser aproximado. Ver [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "en la consulta" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Mostrando registros" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "total" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "La consulta tardó %01.4f seg" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operaciones sobre los resultados de la consulta" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Previsualización para imprimir (documento completo)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Mostrar gráfico" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Visualizar datos GIS" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Crear vista" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "No se encontró el enlace" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Demasiados mensajes de error, algunos no son mostrados." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "El archivo no era un archivo subido." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "El archivo que intentó subir excede la directiva upload_max_filesize en php." "ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2437,27 +2627,27 @@ msgstr "" "El archivo que intentó subir excede la directiva MAX_FILE_SIZE especificada " "en el formulario HTML." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "El archivo que intentó subir no alcanzó el 100%." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Falta una carpeta temporal." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "No fue posible grabar el archivo a disco." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "La subida del archivo fue detenida por extensión." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Error desconocido al subir el archivo." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2465,26 +2655,39 @@ msgstr "" "Se detectó un error al mover el archivo subido, ver [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Error al mover el archivo subido." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "No se puede leer el archivo subido (y movido)." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Abrir nueva ventana de phpMyAdmin" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Las cookies deben estar activadas." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Único" @@ -2497,8 +2700,8 @@ msgstr "Empaquetado" msgid "Cardinality" msgstr "Cardinalidad" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Comentario" @@ -2521,128 +2724,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Bases de datos" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Servidor" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Estructura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Insertar" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operaciones" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Seguimiento" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "La tabla, ¡parece estar vacía!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "La base de datos, ¡parece estar vacía!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Generar una consulta" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilegios" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutinas" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Eventos" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Diseñador" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Usuarios" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sincronizar" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Registro binario" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variables" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Juegos de caracteres" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Complementos" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Motores" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Error" @@ -2667,7 +2870,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d fila insertada." msgstr[1] "%1$d filas insertadas." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Error al crear PDF:" @@ -2762,16 +2965,99 @@ 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 +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 +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 +msgid "Value" +msgstr "Valor" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Búsqueda de tablas" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Editar/Insertar" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Seleccionar campos (al menos uno):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" +"Insertar las condiciones de búsqueda (cuerpo de la cláusula \"where\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "registros por página" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Mostrar en este orden:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Utilice esta columna para etiquetar cada punto" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Máximo número de filas a graficar" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Mostrar los valores foráneos" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Criterios de búsqueda adicionales" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Hacer una \"consulta basada en ejemplo\" (comodín: \"%\") para dos columnas " +"distintas" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Hacer una \"consulta basada en ejemplo\" (comodín: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Navegar/editar los puntos" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Forma de utilización" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "Reiniciar ampliación" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "¡No se encontró la ruta de imágenes para el tema %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "No existe una previsualización disponible." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "tómelo" @@ -2790,7 +3076,7 @@ msgstr "¡No se encontró el tema %s!" msgid "Theme path not found for theme %s!" msgstr "¡No se encontró la ruta del tema %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Tema" @@ -3155,13 +3441,13 @@ msgstr "Una enumeración, elegida de una lista de valores definidos" msgid "Cannot connect: invalid settings." msgstr "No se estableció la conexión: los parámetros están incorrectos." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Bienvenido a %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3170,7 +3456,7 @@ 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." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3186,42 +3472,38 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "¡No se pudo utilizar Blowfish de la biblioteca mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Pasado este punto, debe tener Javascript activado" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Iniciar sesión" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Puede escribir el nombre del proveedor de servicios/dirección IP y el " "puerto, separado por un espacio." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Servidor:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Usuario:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Contraseña:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Elección del servidor" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Las cookies deben estar activadas." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3229,20 +3511,20 @@ msgstr "" "El inicio de sesión sin contraseña está prohibido por la configuración (ver " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "No ha habido actividad desde hace %s o más segundos; inicie sesión nuevamente" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "El servidor MySQL no autorizó su ingreso" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "" "El nombre de usuario o la contraseña es incorrecto. El acceso fue denegado." @@ -3275,7 +3557,7 @@ msgstr "compartido" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tablas" @@ -3287,13 +3569,13 @@ msgstr "Tablas" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Datos" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Residuo a depurar" @@ -3318,19 +3600,11 @@ msgstr "Comprobar los privilegios para la base de datos "%s"." msgid "Check Privileges" msgstr "Comprobar los privilegios" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "posible aprovechamiento" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "telado numérico detectado" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "No se pudo leer el archivo de configuración" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3338,12 +3612,12 @@ msgstr "" "Esto generalmente significa que tiene un error de sintáxis, revisa los " "errores que se muestran a continuación." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "No se pudo cargar la configuración predeterminada desde: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3351,208 +3625,194 @@ msgstr "" "¡DEBE tener definido [code]$cfg['PmaAbsoluteUri'][/code] en su archivo de " "configuración!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "El nombre del host no es válido para el servidor %1$s. Revise su " "configuración." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticación no válido definido en la configuración:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Usted debería actualizar su %s a la versión %s o más reciente." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "intento de sobre-escritura de la variable GLOBALS" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "posible aprovechamiento" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "telado numérico detectado" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Máximo: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Documentación" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "es" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "consulta SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL ha dicho: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "No pudo conectarse a un validador de SQL!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Omitir la explicación del SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Sin código PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Actualizar" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Saltar la validación de SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validar SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Edición en linea de esta consulta" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "En línea" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Perfilando" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a las %H:%M:%S" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos y %s segundos" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Parámetro faltante:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Comenzar" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Anterior" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Siguiente" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Fin" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Saltar a la base de datos "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Pulse para conmutar" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Buscar en su ordenador:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format 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:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" "No se puede acceder al directorio que seleccionó para subir los archivos" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "No hay archivos para subir" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Ejecutar" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Imprimir" @@ -3587,8 +3847,8 @@ msgid "Closed" msgstr "Ocultos" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Deshabilitado" @@ -3729,9 +3989,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Reiniciar" @@ -3959,10 +4219,6 @@ msgstr "Esconder acciones sobre la estructura de la tabla" msgid "Show binary contents as HEX by default" msgstr "Mostrar el contenido binario en HEXadecimal por defecto" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Mostrar contenido binario como HEXadecimal" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Muestra las bases de datos en una lista en lugar de un desplegable" @@ -4019,7 +4275,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Tiempo máximo de ejecución" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Guardar como archivo" @@ -4028,7 +4284,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formato" @@ -4134,7 +4390,7 @@ msgid "MIME type" msgstr "MIME-type" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relaciones" @@ -5761,9 +6017,9 @@ msgstr "Requiere que el Validador SQL esté habilitado" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Contraseña" @@ -6063,14 +6319,6 @@ msgstr "Revisa los permisos del directorio que contiene la base de datos." msgid "Details..." msgstr "Detalles..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Podría ser aproximado. Ver [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6079,18 +6327,18 @@ msgstr "" "fracasó." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Cambio de contraseña" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Sin contraseña" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Debe volver a escribir" @@ -6111,22 +6359,22 @@ msgstr "Crear base de datos" msgid "Create" msgstr "Crear" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Sin privilegios" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nombre" @@ -6283,25 +6531,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Conversión de codificación:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s de rama %2$s" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "sin rama" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Revisión Git" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "incorporada el %1$s por %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "creada el %1$s por %2$s" @@ -6422,176 +6670,29 @@ msgstr "Opciones específicas al formato:" msgid "Language" msgstr "Idioma" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Guardar datos editados" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Restaurar orden de las columnas" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Fila de inicio" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Número de filas" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Modo" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontal" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontal (encabezados rotados)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertical" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "Cabeceras cada %s filas" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Ordenar según la clave" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Opciones" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Textos parciales" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Textos completos" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Clave relacional" - -# Display option apparently related to -# http://www.phpmyadmin.net/documentation/#relation -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Mostrar columna de relación" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Mostrar contenido binario" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Mostrar contenido BLOB" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Ocultar transformación del navegador" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Texto muy conocido" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Binario muy conocido" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "La fila se ha borrado" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Matar el proceso" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "en la consulta" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Mostrando registros" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "total" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "La consulta tardó %01.4f seg" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operaciones sobre los resultados de la consulta" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Previsualización para imprimir (documento completo)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Mostrar gráfico" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Visualizar datos GIS" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Crear vista" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "No se encontró el enlace" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Acerca de esta versión" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Directorio raíz de los datos" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "La parte constante de la ruta del directorio para todos los archivos de " "datos InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Archivos de datos" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Incremente el valor AUTOEXTEND" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6599,11 +6700,11 @@ msgstr "" "El tamaño a incrementar para que se extienda el ancho de una tabla capaz de " "autoextenderse cuando se llena." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Tamaño de la reserva de búfers" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6611,79 +6712,79 @@ msgstr "" "El tamaño del búfer de memoria usado por InnoDB para almacenar, en el cache, " "los datos e índices de sus tablas." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Reserva de búfers" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Estado del InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Uso de la reserva de búfers" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "páginas" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Páginas libres" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Páginas que requieren ser depuradas" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Páginas que contienen datos" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Páginas que serán eliminadas" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Páginas activas" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Páginas vinculadas" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Actividad de la reserva de búfers" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Lea las solicitudes" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Escribir las solicitudes" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Leer los fallos" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Escribir las esperas" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Leer los fallos en %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Escribir las esperas en %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Tamaño del puntero de datos" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6692,11 +6793,11 @@ msgstr "" "CREATE TABLE para las tablas MyISAM cuando no se ha especificado la opción " "MAX_ROWS." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Modalidad de recuperación automática" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6705,12 +6806,12 @@ msgstr "" "catastróficamente, como fuera determinado mediante la opción al arranque del " "servidor --myisam-recover." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" "Tamaño máximo para los archivos temporales generados durante la organización" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6720,12 +6821,12 @@ msgstr "" "genera un nuevo índice MyISAM del archivo temporal (durante REPAIR TABLE, " "ALTER TABLE, o LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" "Tamaño máximo de los archivos temporales durante la generación del índice" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6735,11 +6836,11 @@ msgstr "" "fuese mayor que el uso del caché de claves por la cantidad especificada " "aquí, preferir el método de caché de claves." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Reparar los procesos" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6748,11 +6849,11 @@ msgstr "" "tablas MyISAM (cada índice con su propio proceso) durante el proceso de " "reparación mediante ordenado." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Organizar el tamaño del búfer de memoria" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6761,11 +6862,11 @@ msgstr "" "durante la operación REPAIR TABLE o cuando se generan índices con CREATE " "INDEX o ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Tamaño del caché del índice" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6774,11 +6875,11 @@ msgstr "" "predeterminado es 32MB. La memoria asignada aquí se usa solamente para el " "caché de las páginas índice." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Tamaño del caché del registro" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6789,11 +6890,11 @@ msgstr "" "memoria se utiliza para el caché de cambios a los archivos de datos handle (." "xtd) y apuntador de la fila (.xtr)." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Tamaño del caché de registro" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6802,11 +6903,11 @@ msgstr "" "utilizado para hacer el caché de los datos de los registros de " "transacciones. El valor predeterminado es 16MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Umbral del archivo de registro" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6814,11 +6915,11 @@ msgstr "" "El tamaño del registro de transacciones antes del cambio y creación de un " "nuevo registro. El valor predeterminado es 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Tamaño del búfer de la transacción" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6826,11 +6927,11 @@ msgstr "" "El tamaño de búfer global de registrode transacciones (el motor asigna 2 " "búfers de este tamaño). El valor predeterminado es 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Frecuencia del punto de revisión" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6838,11 +6939,11 @@ msgstr "" "La cantidad de datos escritos al registro de transacciones antes de hacer un " "punto de revisión. El valor predeterminado es 24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Umbral del registro de datos" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6855,11 +6956,11 @@ msgstr "" "incrementar para aumentar la cantidad total de datos que se pueden almacenar " "en la base de datos." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Umbral de chatarra" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6867,11 +6968,11 @@ msgstr "" "El porcentaje de chatarra en un archivo de registro de datos antes de ser " "compactado. Este es un valor entre 1 y 99. El valor predeterminado es 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Tamaño del búfer de registro" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6881,27 +6982,27 @@ msgstr "" "valor predeterminado es 256MB. El motor asigna un búfer por hilo, pero " "sólamente si el hilo es requerido para escribir un registro de datos." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Tamaño que puede crecer el archivo de datos" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Tamaño que puede crecer el archivo de gestión de datos (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Tamaño que puede crecer el archivo de filas" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Tamaño que puede crecer el archivo del apuntador de filas (.xtr)." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Cantidad de archivos de registro" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6913,7 +7014,7 @@ msgstr "" "registros antiguos se eliminarán; si no, su nombre cambia y recibe el " "siguiente número más alto." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6922,11 +7023,11 @@ msgstr "" "Se puede encontrar documentación y más información sobre PBXT en la %spágina " "inicial de PrimeBase XT%s." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Enlaces relacionados" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "Blog de PrimeBase por Paul McCullagh" @@ -6974,14 +7075,14 @@ msgstr "Volcado de datos para la tabla" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Evento" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definición" @@ -7039,14 +7140,14 @@ msgstr "Tipos MIME disponibles" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Servidor" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Tiempo de generación" @@ -7256,21 +7357,12 @@ msgstr "Vistas" msgid "Export contents" msgstr "Exportar contenidos" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Abrir nueva ventana de phpMyAdmin" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "No se encontraron datos para la visualización GIS." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "intento de sobre-escritura de la variable GLOBALS" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7374,12 +7466,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Nombre de la tabla" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Nombre de las columnas" @@ -7452,93 +7544,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Función" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Ocultar" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binario" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binario - no editar" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "directorio en el servidor web para subir los archivos" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Editar/Insertar" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar inserción con %s filas" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "y luego" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Insertar como una nueva fila" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Agregar como nueva fila e ignorar errores" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Mostrar consulta de inserción" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Volver" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Insertar un nuevo registro" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Volver a esta página" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Editar la siguiente fila" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Valor" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" @@ -7554,32 +7630,32 @@ msgstr "Ninguno" msgid "Convert to Kana" msgstr "Convertir a Kana" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "De" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "A" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Enviar" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Agregar prefijo a la tabla" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Agregar prefijo" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "¿Realmente desea ejecutar la siguiente consulta?" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Sin cambios" @@ -7789,81 +7865,81 @@ msgstr "Recargar el marco de navegación" msgid "This format has no options" msgstr "Este formato no tiene opciones" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "no recibió el OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Habilitado" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Opciones de relación general" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Mostrar las opciones" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Creación de los PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Mostrando los comentarios de la columna" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Transformación del navegador" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 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:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Consulta guardada en favoritos" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Historial-SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Tablas persistentes utilizadas recientemente" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Preferencias de interfaz de tablas persistentes" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Preferencias de usuario" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Pasos rápidos para configurar funcionalidades avanzadas:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Crear las tablas necesarias con examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Crear un usuario pma y permitir acceso a estas tablas." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7872,13 +7948,13 @@ msgstr "" "(config.inc.php), por ejemplo comenzando desde config." "sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Inicie sesión en phpMyAdmin nuevamente para cargar el archivo de " "configuración actualizado." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "Sin descripción" @@ -7886,7 +7962,7 @@ msgstr "Sin descripción" msgid "Slave configuration" msgstr "Configuración de esclavo" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Cambiar o reconfigurar el servidor maestro" @@ -7900,13 +7976,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Nombre de usuario" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Puerto" @@ -7919,7 +7995,7 @@ msgid "Slave status" msgstr "Estado del esclavo" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variable" @@ -7935,38 +8011,38 @@ msgstr "" "Sólo los esclavos iniciados con la opción --report-host=host_name son " "visibles en esta lista." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Agregar un usuario de replicación esclavo" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Cualquier usuario" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Use el campo de texto" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Cualquier servidor" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Este Host" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Usar la tabla Anfitrión (Host)" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7982,7 +8058,7 @@ msgstr "Generar la contraseña" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8013,88 +8089,89 @@ msgstr "Se creó el evento %1$s." msgid "One or more errors have occured while processing your request:" msgstr "Ocurrieron uno o más errores al procesar el pedido:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Editar evento" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Error al procesar la petición" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detalles" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Nombre del evento" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Tipo de evento" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Cambiar a %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Ejecutar en" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Ejecutar cada" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Inicio" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Fin" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Preservar al completar" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Definidor" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: 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\"" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Debe proveer un nombre de evento" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Debe proveer un valor de intervalo válido para el evento." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Debe proveer un tiempo de ejecución válido para el evento." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Debe proveer un tipo válido para el evento." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 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:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Nuevo" @@ -8127,7 +8204,7 @@ msgstr "" "evitar problemas." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo de rutina inválido: \"%s\"" @@ -8146,69 +8223,69 @@ msgstr "Se modificó la rutina %1$s." msgid "Routine %1$s has been created." msgstr "Se creó la rutina %1$s." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Editar rutina" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Nombre de rutina" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parámetros" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Dirección" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Longitud/Valores" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Agregar parámetro" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Eliminar último parámetro" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Retornar el tipo" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Retornar longitud/valores" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Retornar opciones" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Es determinístico" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Tipo de seguridad" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "Acceso de datos SQL" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Debe proveer un nombre de rutina" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, 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:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8216,37 +8293,37 @@ msgstr "" "Debe proveer longitud/valores para los parámetros de tipo ENUM, SET, VARCHAR " "y VARBINARY." -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Debe proveer una definición de rutina." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Resultados de la ejecución de la rutina %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Ejecutar rutina" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Parámetros de rutina" @@ -8265,36 +8342,36 @@ msgstr "Se modificó el disparador %1$s." msgid "Trigger %1$s has been created." msgstr "Disparador %1$s creado." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Editar disparador" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Nombre del disparador" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Tiempo" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Debe proveer un nombre de disparador" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Debe proveer una sincronización válida para el disparador" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Debe proveer un evento válido para el disparador" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Debe proveer un nombre de tabla válido" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Debe proveer una definición del disparador." @@ -8378,7 +8455,7 @@ msgstr "No existen eventos para mostrar." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8387,7 +8464,7 @@ msgstr "¡La tabla %s no existe!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8395,7 +8472,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Configure las coordenadas para la tabla %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8406,27 +8483,27 @@ msgstr "Esquema de la base de datos %s - Página %s" msgid "This page does not contain any tables!" msgstr "¡Esta página no contiene ninguna tabla!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "ERROR DE ESQUEMA: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Esquema relacionado" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Tabla de contenidos" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atributos" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8534,7 +8611,7 @@ msgstr "Idioma desconocido: %1$s." msgid "Current Server" msgstr "Servidor actual" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Base de datos de origen" @@ -8552,7 +8629,7 @@ msgstr "Servidor remoto" msgid "Difference" msgstr "Diferencia" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Base de datos objetivo" @@ -8571,7 +8648,7 @@ msgstr "Ejecute la o las consultas SQL en el servidor %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Limpiar" @@ -8580,11 +8657,11 @@ msgstr "Limpiar" msgid "Columns" msgstr "Columnas" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Permitir que todo usuario pueda acceder a este favorito" @@ -8682,7 +8759,7 @@ msgstr "" "El validador de SQL no pudo inicializarse. Revise si ha instalado las " "extensiones PHP necesarias, como indica la %sdocumentación%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "Seguimiento de %s activado." @@ -8708,8 +8785,8 @@ msgstr "" "de escape ni comillas, usando este formato: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Índice" @@ -8762,13 +8839,13 @@ msgstr "Ninguno" msgid "As defined:" msgstr "Personalizado:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primaria" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Texto completo" @@ -8781,17 +8858,17 @@ msgstr "primera" msgid "after %s" msgstr "después de %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Agregar %s columna(s)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Debe agregar al menos una columna." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Motor de almacenamiento" @@ -8799,42 +8876,6 @@ msgstr "Motor de almacenamiento" msgid "PARTITION definition" msgstr "definición de la PARTICIÓN" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Búsqueda de tablas" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Seleccionar campos (al menos uno):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" -"Insertar las condiciones de búsqueda (cuerpo de la cláusula \"where\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "registros por página" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Mostrar en este orden:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Mostrar los valores foráneos" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Hacer una \"consulta basada en ejemplo\" (comodín: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8992,11 +9033,11 @@ msgstr "" msgid "Manage your settings" msgstr "Administrar tu configuración" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Se guardó la configuración" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9009,7 +9050,7 @@ msgstr "" msgid "Could not save configuration" msgstr "No se pudo guardar la configuración" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9038,7 +9079,7 @@ msgstr "Cotejamiento de la conexión al servidor" msgid "Appearance Settings" msgstr "Configuraciones de apariencia" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Más configuraciones" @@ -9058,9 +9099,9 @@ msgstr "Versiones de programa" msgid "Protocol version" msgstr "Versión del protocolo" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Usuario" @@ -9200,127 +9241,127 @@ msgstr "" "El servidor está utilizando Suhosin. Refiérase a la %sdocumentación%s por " "posibles inconvenientes." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "No hay bases de datos" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "Filtrar bases de datos por nombre" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Filtrar tablas por nombre" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Crear tabla" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Seleccionar una base de datos" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Ocultar/mostrar menú izquierdo" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Guardar posición" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Crear relación" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Cargar nuevamente" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Ayuda" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Enlaces angulares" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Enlaces directos" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Cuadrícula magnética" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Pequeño/grande todos" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Alterne entre pequeño y grande" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Conmutar líneas de relación" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para el esquema PDF" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Crear consulta" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Mover el Menú" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Ocultar/mostrar todo" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Ocultar/mostrar Tablas que no tengan relación" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Número de tablas" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Eliminar la relación" # Relation refers to actual mathematical operations not the DB-related term -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Operador de relación" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Excepto" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "sub-consulta" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Cambiar el nombre a" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Nuevo nombre" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Agregar" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Opciones activas" @@ -9332,51 +9373,51 @@ msgstr "Se creó la página" msgid "Page creation failed" msgstr "Falló la creación de la página" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Página" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Importar de la página seleccionada" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Exportar a la página seleccionada" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Crear una página y exportar a ella" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Nuevo nombre de página: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Exporte/Importe a escala" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "recomendado" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Error: la relación ya existe." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Error: no se añadió la relación." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Se añadió una relación CLAVE FORÁNEA" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Se añadió la relación interna" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "La relación fue eliminada" @@ -9388,54 +9429,54 @@ msgstr "Error guardando las coordenadas para el Diseñador." msgid "Modifications have been saved" msgstr "Se han guardado las modificaciones" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" "No se pudo guardar la configuración, el formulario enviado contiene errores" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "No se pudo importar la configuración" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "La configuración contiene datos incorrectos para algunos campos." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "¿Desea importar las configuraciones restantes?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Guradado el: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importar de un archivo" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Importar del almacenamiento del navegador" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" "Se importarán las configuraciones del almacenamiento local del navegador." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "¡No se encontraron configuraciones guardadas!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Esta funcionalidad no está soportada por tu navegador" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Combinar con la configuración actual" # I still don't like translating "script" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9444,39 +9485,39 @@ msgstr "" "Se pueden definir más configuraciones modificando config.inc.php. Por " "ejemplo, utilizado %sscripts de configuración%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Guardar en almacenamiento del navegador" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" "La configuración será guardada en el almacenamiento local del navegador." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "¡Se reemplazarán las configuraciones existentes!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Se pueden reiniciar todas las configuraciones y devolverlas a sus valores " "predeterminados." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importar archivos" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Todos/as" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "La tabla %s no fue hallada o no fue definida en %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "El archivo no existe" @@ -9484,17 +9525,17 @@ msgstr "El archivo no existe" msgid "Select binary log to view" msgstr "Seleccionar el registro binario que desea examinar" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Archivos" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Truncar las consultas que ya se han mostrado" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Mostrar las consultas enteras" @@ -9511,7 +9552,7 @@ msgstr "Posición" msgid "Original position" msgstr "Posición original" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Información" @@ -9519,31 +9560,31 @@ msgstr "Información" msgid "Character Sets and Collations" msgstr "Conjunto de caracteres y sus cotejamientos" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d bases de datos han sido eliminadas exitosamente." msgstr[1] "%1$d bases de datos han sido eliminadas exitosamente." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Estadísticas de la base" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Replicación maestra" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Replicación esclava" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Activar las estadísticas" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9555,156 +9596,156 @@ msgstr "" msgid "Storage Engines" msgstr "Motores de almacenamiento" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Ver el volcado (schema) de la base de datos" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Módulos" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Empezar" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Complemento" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Módulo" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Biblioteca" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Versión" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Autor" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Licencia" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "desactivado" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Incluye todos los privilegios excepto GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar la estructura de las tablas existentes." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar y eliminar las rutinas almacenadas." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Permite crear nuevas bases de datos y tablas." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Permite crear el almacenamiento de rutinas." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Permite la creación de tablas nuevas." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Permite la creación de tablas temporales." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar y cambiar el nombre de las cuentas de usuario." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Permite crear nuevas vistas." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Permite borrar datos." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos y tablas." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Permite eliminar tablas." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Permite organizar los eventos para el gestor de eventos" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Permite ejecutar las rutinas almacenadas." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar y exportar datos de y hacia archivos." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite añadir usuarios y privilegios sin conectarse nuevamente a la tabla " "de privilegios." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Permite crear y eliminar índices." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Permite insertar y reemplazar datos." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Permite poner candados a las tablas para el proceso actual." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita el número de conexiones nuevas que el usuario puede abrir por hora." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita el número de consultas que el usuario puede enviar al servidor por " "hora." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9712,61 +9753,61 @@ msgstr "" "Limita el número de comandos que cambian cualquier tabla o base de datos que " "el usuario puede ejecutar por hora." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita el número de conexiones simultáneas que el usuario pueda tener." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Permite ver los procesos de todos los usuarios" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "No tiene efecto en esta versión de MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite volver a cargar los parámetros del servidor y depurar los cachés del " "servidor." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da el derecho al usuario para preguntar dónde están los esclavos / maestros." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Necesario para los esclavos de replicación." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Permite leer los datos." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Concede acceso a la lista completa de bases de datos." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite llevar a cabo las consultas SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Permite desconectar el servidor." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9777,167 +9818,167 @@ msgstr "" "tales como montar parámetros de variables globales o matar procesos de otros " "usuarios." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Permite crear y eliminar un disparador" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Permite cambiar los datos." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Sin privilegios." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Ninguno" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Privilegios específicos para la tabla" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" "Nota: Los nombres de los privilegios de MySQL están expresados en inglés" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administración" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Privilegios globales" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Privilegios específicos para la base de datos" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Límites de recursos" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Nota: si cambia los parámetros de estas opciones a 0 (cero), remueve el " "límite." # It is talking about the user account not the act of logging in -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Información de la cuenta" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "No cambiar la contraseña" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Usuario(s) no encontrado(s)." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "¡El usuario %s ya existe!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Ha agregado un nuevo usuario." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Ha actualizado los privilegios para %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ha revocado los privilegios para %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "La contraseña para %s se cambió exitosamente." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Borrando %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "¡No se han seleccionado usuarios para eliminar!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Cargando los privilegios nuevamente" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Los usuarios seleccionados fueron borrados exitosamente." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Los privilegios fueron cargados nuevamente de manera exitosa." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Editar los privilegios" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Revocar" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Exportar todo" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "cualquiera" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Privilegios para todos los usuarios" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Privilegios para %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Vista global de usuarios" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Conceder" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Eliminar a los usuarios seleccionados" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9951,52 +9992,52 @@ msgstr "" "manuales en él. En este caso, nuevamente deberá %scargar la página de " "privilegios%s antes de continuar." -#: server_privileges.php:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Privilegios específicos para la columna" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Añadir privilegios a esta base de datos" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 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:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Cambiar la información de la cuenta / Copiar el usuario" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Crear un nuevo usuario con los mismos privilegios y..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "...mantener el anterior." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "...borrar el viejo de las tablas de usuario." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10004,85 +10045,85 @@ msgstr "" " ...borrar el viejo de las tablas de usuario y luego volver a cargar los " "privilegios." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Base de datos para el usuario" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Otorgar todos los privilegios al nombre que contiene comodín (username\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Otorgar todos los privilegios para la base de datos "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios con acceso a "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "específico para la base de datos" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "comodín" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Se agregó el usuario." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Error desconocido" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "No se pudo conectar al maestro %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "No se pudo leer la posición de registro del maestro. Posible problema de " "privilegios en el maestro." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "No se pudo cambiar maestro" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "El servidor maestro fue cambiado exitosamente a %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como maestro en un proceso de replicación." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Mostrar el estado del maestro" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Mostrar esclavos conectados" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10091,11 +10132,11 @@ msgstr "" "Este servidor no está configurado como maestro en un proceso de replicación. " "¿Desea configurarlo?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Configuración del maestro" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10109,19 +10150,19 @@ msgstr "" "ignorar todas las bases de datos y sólo permitir que ciertas bases de datos " "sean replicadas. Elija el modo:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Replicar todas las bases de datos; ignorar:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Ignorar todas las bases de datos; replicar:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Seleccionar bases de datos:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10130,7 +10171,7 @@ msgstr "" "archivo my.cnf y luego reinicie el servidor MySQL." # See translation string 4 -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10140,84 +10181,84 @@ msgstr "" "continuación deberás ver un mensaje informando que el servidor está " "configurado como maestro" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "¡El hilo SQL esclavo no está ejecutando!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "¡El hilo IO escalvo no está ejecutando!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "El servidor está configurado como esclavo en un proceso de replicación. " "Deseas:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Ver la tabla de estado del esclavo" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Sincronizar bases de datos con el maestro" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Controlar esclavo:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Inicio completo" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Parada completa" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Reiniciar esclavo" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Iniciar hilo SQL sólamente" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Parar hilo SQL sólamente" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Iniciar hilo IO sólamente" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Parar hilo IO sólamente" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Manejo de errores:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "¡Omitir errores podría llevar a que el esclavo y maestro no estén " "sincronizados!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Omitir error actual" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Omitir siguiente" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "errores." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10226,12 +10267,12 @@ msgstr "" "Este servidor no está configurado como esclavo en un proceso de replicación. " "¿Desea configurarlo?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "El proceso %s fue destruido exitosamente." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10239,115 +10280,115 @@ msgstr "" "phpMyAdmin no fue capaz de destruir el proceso %s. Probablemente ya ha sido " "cerrado." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Gestor" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Cache de consultas" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Procesos" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Datos temporales" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Inserciones demoradas («delayed inserts»)" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Caché de claves" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Vínculos (Joins)" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Ordenación" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Coordinador de transacción" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Vaciar el cache de todas las tablas" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Mostrar las tablas que están abiertas" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Mostrar los hosts esclavos" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Mostrar el estado del esclavo" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Vaciar el cache de consultas" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Información acerca del tiempo de ejecución del proceso principal" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Todas las variables de estado" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Monitorizar" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Consejero" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Velocidad de actualización: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filtros" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Que contengan la palabra:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Mostrar sólo valores de alerta" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filtrar por categoría..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Mostrar valores sin formato" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Enlaces relacionados:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Ejecutar analizador" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Instrucciones" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10355,7 +10396,7 @@ msgstr "" "El sistema de consejos puede proveer recomendaciones para las variables del " "servidor analizando las variables de estado del servidor." -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10365,7 +10406,7 @@ msgstr "" "cálculos simples y reglas generales que no serán necesariamente válidas en " "su sistema." -#: server_status.php:920 +#: server_status.php:919 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 " @@ -10375,7 +10416,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:922 +#: server_status.php:921 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 " @@ -10386,31 +10427,31 @@ msgstr "" "una mejora diferenciable." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Preguntas desde el inicio: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Sentencias" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Tráfico de red desde el inicio: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10418,19 +10459,19 @@ msgstr "" "Este servidor MySQL trabaja como maestro y esclavo en un " "proceso de replicación." -#: server_status.php:1078 +#: server_status.php:1077 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:1080 +#: server_status.php:1079 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:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10438,11 +10479,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:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Estado de replicación" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10451,35 +10492,35 @@ msgstr "" "pueden excederse. Por tanto, las estadísticas reportadas por el servidor " "MySQL pueden ser incorrectas." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Recibido" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Enviado" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "Número máx. de conexiones concurrentes" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Intentos fallidos" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Abortado" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "Identificación" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Comando" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10487,11 +10528,11 @@ msgstr "" "La cantidad de conexiones que fueron abandonadas porque el cliente murió sin " "cerrar la conexión apropiadamente." -#: server_status.php:1321 +#: server_status.php:1320 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:1322 +#: server_status.php:1321 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,19 +10542,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:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 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:1325 +#: server_status.php:1324 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 +10567,11 @@ msgstr "" "tmp_table_size para hacer que las tablas temporales se basen en memoria en " "lugar de basarse en disco." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "El número de archivos temporales que fueron creados por mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10538,7 +10579,7 @@ msgstr "" "El número de tablas temporales en memoria creadas automáticamente por el " "servidor mientras se ejecutaban las sentencias." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10546,7 +10587,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:1329 +#: server_status.php:1328 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 +10595,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "El número de filas INSERT DELAYED escritas." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "El número de sentencias FLUSH ejecutadas." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "El número de sentencias COMMIT internas." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10581,7 +10622,7 @@ msgstr "" "Handler_discover indica el número ocasiones que las tablas han sido " "descubiertas." -#: server_status.php:1335 +#: 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, " @@ -10592,7 +10633,7 @@ msgstr "" "de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, " "asumiendo que col1 está indizado." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10601,7 +10642,7 @@ msgstr "" "este valor es alto, es una buena indicación de que sus consultas y tablas " "están indexadas apropiadamente." -#: server_status.php:1337 +#: server_status.php:1336 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 +10652,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:1338 +#: server_status.php:1337 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 +10661,7 @@ msgstr "" "clave. Este método de lectura se usa principalmente para optimizar a ORDER " "BY ... DESC." -#: server_status.php:1339 +#: 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 " @@ -10633,7 +10674,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:1340 +#: server_status.php:1339 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,37 +10687,37 @@ msgstr "" "o que sus consultas no están escritas para tomar ventaja de los índices que " "tiene." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "El número de sentencias ROLLBACK internas." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 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:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "El número de páginas actualmente sucias." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "El número de páginas libres." -#: server_status.php:1348 +#: 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 " @@ -10686,7 +10727,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:1349 +#: server_status.php:1348 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 " @@ -10698,11 +10739,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:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total de la reserva de búfers, en páginas." -#: server_status.php:1351 +#: 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." @@ -10711,7 +10752,7 @@ msgstr "" "una consulta va a escanear una gran porción de una tabla pero en orden " "aleatorio." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10719,11 +10760,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:1353 +#: server_status.php:1352 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:1354 +#: 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." @@ -10731,7 +10772,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:1355 +#: server_status.php:1354 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 " @@ -10746,55 +10787,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:1356 +#: server_status.php:1355 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:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "El número de operaciones fsync() hechas hasta el momento." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "El número actual de operaciones fsync() pendientes." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "El número actual de lecturas pendientes." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "El número actual de escrituras pendientess." -#: server_status.php:1361 +#: server_status.php:1360 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:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "El número total de lectura de datos." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "El número total de escritura de datos." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "La cantidad de datos escritas hasta el momento, en bytes." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -10802,35 +10843,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "El número de solicitudes de escritura al registro." -#: server_status.php:1369 +#: server_status.php:1368 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:1370 +#: server_status.php:1369 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "El número de fsyncs pendientes al archivo de registro." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Escrituras pendientes al archivo de registro." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "El número de bytes escritos al archivo de registro." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "El número de páginas creadas." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10839,52 +10880,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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "El número de páginas leídas." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "El número de páginas escritas." -#: server_status.php:1378 +#: server_status.php:1377 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:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "El número de filas eliminadas de tablas InnoDB." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "El número de filas insertadas en tablas InnoDB." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "El número de filas leídas de las tablas InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "El número de filas actualizadas en tablas InnoDB." -#: server_status.php:1387 +#: 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." @@ -10893,7 +10934,7 @@ msgstr "" "aún no han sido volcados al disco. Antes se conocía como " "Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -10901,7 +10942,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:1389 +#: server_status.php:1388 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 " @@ -10911,15 +10952,15 @@ msgstr "" "de desbordamiento que indica el número máximo de bloques que algún momento " "se llegaron a usar." -#: server_status.php:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "Porcentaje de uso del caché de claves (valor calculado)" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10930,7 +10971,7 @@ msgstr "" "demasiado pequeño. La tasa de fallos en el caché puede calcularse como " "Key_reads/Key_read_requests." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10938,22 +10979,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:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 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:1397 +#: server_status.php:1396 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 " @@ -10964,7 +11005,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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10972,11 +11013,11 @@ msgstr "" "El máximo número de conexiones que han sido utilizadas simultáneamente desde " "que inició el servidor." -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10984,21 +11025,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "El número de archivos que están abiertos." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "El número de tablas que están abiertas." -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -11008,19 +11049,19 @@ msgstr "" "altas pueden indicar problemas de fragmentación que pueden ser solucionados " "ejecutando la consulta FLUSH QUERY CACHE." -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "La cantidad de memoria libre para el cache de consultas." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "El número de hits al cache." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "El número de consultas añadidos al cache." -#: server_status.php:1408 +#: 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 " @@ -11033,7 +11074,7 @@ msgstr "" "la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben " "ser removidas del cache." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11041,20 +11082,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:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "El número de consultas registradas en el cache." -#: server_status.php:1411 +#: server_status.php:1410 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:1412 +#: server_status.php:1411 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:1413 +#: server_status.php:1412 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." @@ -11062,13 +11103,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -11077,7 +11118,7 @@ msgstr "" "de cada fila. (Si no es 0, deberá revisar los índices de sus tablas " "cuidadosamente.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11085,19 +11126,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11105,12 +11146,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:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11118,14 +11159,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:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11135,23 +11176,23 @@ msgstr "" "hacer. Si este valor es grande, debe considerar incrementar el valor de la " "varible de sistema sort_buffer_size." -#: server_status.php:1424 +#: server_status.php:1423 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:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "El número de filas sorted." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -11163,7 +11204,7 @@ msgstr "" "primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o " "usar replicación." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11173,11 +11214,11 @@ msgstr "" "puede calcularse como Threads_created/Connections. Si este valor es rojo, " "debe incrementar su thread_cache_size." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "El número de conexiones abiertas actualmente." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11189,47 +11230,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:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "Porcentaje de aciertos del caché de hilos (valor calculado)" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "El número de procesos que no están en reposo." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Iniciar monitorización" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Instrucciones/Configuración" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Se finalizó la reorganización/edición de gráficos" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Agregar gráfico" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Reorganizar/editar gráficos" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Velocidad de actualización" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Columnas del gráfico" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Ordenación de los gráficos" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -11238,15 +11279,15 @@ msgstr "" "navegador. Sería recomendable exportarla si tiene una configuración " "complicada." -#: server_status.php:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Restaurar valor predeterminado" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Instrucciones de monitorización" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11261,7 +11302,7 @@ msgstr "" "«general_log» produce mucha información y aumenta la carga en el servidor " "hasta en un 15%" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11274,11 +11315,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:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Utilizando el monitorizador:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11289,7 +11330,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:1655 +#: server_status.php:1654 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 " @@ -11302,11 +11343,11 @@ msgstr "" "una tabla de consultas agrupadas donde podrá pulsar en cualquier sentencia " "SELECT para analizarla." -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Notar que:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11319,197 +11360,197 @@ 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:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Gráfico predefinido" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Variable(s) de estado" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Seleccionar serie:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Monitorizaciones comunes" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "o ingrese el nombre de variable:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Mostrar como un valor diferencial" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Aplicar una división" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Agregar unidad a los valores" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Agregar esta serie" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Vaciar serie" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Series en el gráfico:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Estadísticas de registros" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Rango de tiempo seleccionado:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Sólo recuperar sentencias SELECT, INSERT, UPDATE y DELETE" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Eliminar datos variables en sentencias INSERT para mejor agrupación" -#: server_status.php:1752 +#: server_status.php:1751 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:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Los resultados se agruparán por el texto de la consulta." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Analizador de consultas" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d segundo" msgstr[1] "%d segundos" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minuto" msgstr[1] "%d minutos" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "No pudo conectarse a la fuente" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "No pudo conectarse al objetivo" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "la base de datos '%s' no existe." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Sincronización de estructura" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Sincronización de datos" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "ausente" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Diferencia de estructura" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Diferencia de datos" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Agregar columna(s)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Eliminar columna(s)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Modificar columna(s)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Eliminar índice(s)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Aplicar índice(s)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Actualizar fila(s)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Agregar fila(s)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "¿Desea eliminar todas las filas existentes en las tablas objetivo?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Aplicar los cambios seleccionados" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Sincronizar bases de datos" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Las tablas objetivo seleccionadas fueron sincronizadas con las tablas fuente." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "La base de datos objetivo fue sincronizada con la base de datos fuente" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Consultas ejecutadas" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Ingresar manualmente" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Conexión actual" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Configuración: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Zócalo" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11517,19 +11558,19 @@ msgstr "" "La base de datos objetivo será completamente sincronizada con la base de " "datos fuente. La base de datos fuente no sufrirá cambios." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Falló la definición de la variable" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Variables y parámetros del servidor" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Valor de la sesión" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Valor global" @@ -11874,154 +11915,154 @@ msgstr "" msgid "Wrong data" msgstr "Datos incorrectos" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" "Utilizando el favorito \"%s\" como consulta predeterminada para examinar." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "¿Realmente desea ejecutar la siguiente consulta?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Resultado SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Generado por" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas con los índices de la tabla `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Etiqueta" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "Las columnas fueron movidas exitosamente." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Barra" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Columna" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Línea" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Ranuras" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Torta" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Apiladas" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Título del gráfico" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "Eje X:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Series:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Etiqueta del eje X:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "Valores X" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Etiqueta del eje Y:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Valores Y" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "¡La tabla %s ya existe!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "La Tabla %1$s se creó." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Mostrar volcado (esquema) de la tabla" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Mostrar visualización GIS" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Anchura" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Altura" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Etiqueta de columna" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- ninguno --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Columna espacial" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Redibujar" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Guardar a un archivo" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Nombre del archivo" @@ -12037,30 +12078,30 @@ msgstr "No puede cambiar el nombre del índice a ¡PRIMARY!" msgid "No index parts defined!" msgstr "¡No se han definido las partes del índice!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Agregar índice" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Editar índice" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Nombre del índice :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" debe ser el nombre exclusivamente de una clave " "primaria)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Tipo de índice :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Añadir al índice  %s columna(s)" @@ -12083,151 +12124,151 @@ msgstr "La tabla %s ha sido movida a %s." msgid "Table %s has been copied to %s." msgstr "La tabla %s se copió a %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "¡El nombre de la tabla está vacío!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Modificar el ORDER BY de la tabla" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(solamente)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Mover tabla a (Base de datos.tabla):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Opciones de la tabla" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Cambiar el nombre de la tabla a" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Copiar la tabla a (base de datos.tabla):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Cambiar a la tabla copiada" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Mantenimiento de la tabla" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmentar la tabla" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Se ha vaciado el caché de la tabla %s" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Vaciar el caché de la tabla (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Borrar datos o tabla" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Vaciar la tabla (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Borrar la tabla (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Mantenimiento de la partición" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partición %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analice" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Revise" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimice" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Reconstruya" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Repare" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Remueva la partición" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Comprobar la integridad referencial:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Mostrando las tablas" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Espacio utilizado" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efectivo/a" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Estadísticas de la fila" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "estático" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinámico/a" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Longitud de la fila" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Tamaño de la fila" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Índice automático siguiente" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Ocurrió un error al crear la clave foránea en %1$s (revise los tipos de dato)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Relación interna" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12235,103 +12276,103 @@ msgstr "" "No es necesaria una relación interna cuando existe una relación CLAVE " "FORÁNEA correspondiente." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Restricción de clave foránea" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Espacial" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Valores distintos" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Agregar clave primaria" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Agregar índice único" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Agregar índice espacial («SPATIAL»)" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Agregar índice FULLTEXT" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Ninguna" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Se ha eliminado la columna %s" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Se agregó una clave primaria en %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Se añadió un índice en %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Mostrar más acciones" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "Mover columnas" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "Mueva las columnas arrastrándolas hacia arriba o hacia abajo." -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Editar vista" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Vista de relaciones" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Planteamiento de la estructura de tabla" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Añadir columna" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Al final de la tabla" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Al comienzo de la tabla" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Después de %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Crear un índice en  %s columna(s)" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "particionado" @@ -12481,69 +12522,39 @@ msgstr "Hacer un seguimiento de estas sentencias de manipulación de datos:" msgid "Create version" msgstr "Crear versión" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Hacer una \"consulta basada en ejemplo\" (comodín: \"%\") para dos columnas " -"distintas" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Criterios de búsqueda adicionales" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Utilice esta columna para etiquetar cada punto" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Máximo número de filas a graficar" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Navegar/editar los puntos" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Forma de utilización" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "Reiniciar ampliación" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "¡Obtener más temas!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "MIME-types disponibles" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-types impresos en itálicas no tienen una función de transformación " "adicional" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Transformaciones disponibles" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Descripción" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "¡Usted no tiene suficientes privilegios para estar aquí ahora!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Se actualizó el perfil." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "VER nombre" diff --git a/po/et.po b/po/et.po index 16064c4e06..e3ab2cb9a8 100644 --- a/po/et.po +++ b/po/et.po @@ -5,7 +5,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 23:33+0200\n" "Last-Translator: LiivaneLord \n" "Language-Team: estonian \n" @@ -16,21 +16,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Näita kõiki" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Leht:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "Veebilehitseja sihtakent ei saanud uuendada. Võib-olla sulgesid ülemakna või " "sinu veebilehitseja turvasätted blokeerivad akna värskendamist." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Mine" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Võtme nimi" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Kirjeldus" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Kasuta seda väärtust" @@ -108,88 +108,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s andmebaas on loodud." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Andmebaasi kommentaar: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Tabeli kommentaarid" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Veerg" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Vaikimisi" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Viitab aadressile" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Kommentaarid" @@ -198,14 +199,14 @@ msgstr "Kommentaarid" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ei" @@ -218,120 +219,120 @@ msgstr "Ei" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Jah" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Vaata andmebaasi tõmmist (skeemi)" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Andmebaasist tabeleid ei leitud." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Vali kõik" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Ära vali ühtegi" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Andmebaasi nimi on tühi!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s andmebaasi uueks nimeks on %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s andmebaas on kopeeritud kohta %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Anna andmebaasile nimeks" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Kustuta andmebaas" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "%s andmebaas on kustutatud." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Kustuta andmebaas (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Kopeeri andmebaas kohta" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Ainult struktuur" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktuur ja andmed" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Ainult andmed" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE enne kopeerimist" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Lisa %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Lisa AUTO_INCREMENT väärtus" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Lisa piiranguid" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Mine kopeeritud andmebaasile" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Kodeering" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -340,59 +341,59 @@ msgstr "" "phpMyAdmini seadistuse salvestus on deaktiveeritud. Põhjuse kohta saad " "lugeda, kui vajutad %ssiia%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Muuda või ekspordi seoseskeemi" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabel" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Ridu" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Suurus" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "kasutusel" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Loodud" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Viimati uuendatud" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Viimane kontroll" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -403,210 +404,210 @@ msgstr[1] "%s tabelit" msgid "You have to choose at least one column to display" msgstr "Pead valima vähemalt ühe veeru, mida näidata" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Mine %sgraafilisele loojale%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sorteeri" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Kasvav" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Kahanev" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Näita" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriteerium" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "And" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Või" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Muuda" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Lisa/Kustuta kriteeriumiridu" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Lisa/Kustuta veergusid" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Uuenda päringut" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Kasuta tabeleid" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL päring %s andmebaasis:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Saada päring" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Ligipääs keelatud" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "vähemalt üks sõna" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "kõik sõnad" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "täpne vaste" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "regulaaravaldisena" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s otsingu tulemused:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Kustutada %s tabeli vasted?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Kokku: %s vaste" msgstr[1] "Kokku: %s vastet" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Otsi andmebaasist" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Sõnad või väärtused, mida otsida (metamärk: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Leia:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Sõnad on eraldatud tühikuga (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Tabelitest:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Veerust:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Andmebaasist tabeleid ei leitud" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "tundmatu" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "%s tabel on tühjendatud" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "%s vaade on kustutatud" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "%s tabel on kustutatud" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Jälgimine on aktiveeritud." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Jälgimist pole aktiveeritud." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -614,185 +615,186 @@ msgid "" msgstr "" "Sellel vaatel on vähemalt nii palju ridu. Palun loe %sdokumentatsiooni%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Vaade" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Paljundamine" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Summa" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s on selle MySQL serveri vaikimisi varundusmootor." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Valitutega:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Vali kõik" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Kontrolli ballastiga tabeleid" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspordi" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Prindi vaade" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Tühjenda" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Kustuta" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Kontrolli tabelit" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimeeri tabelit" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Paranda tabelit" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analüüsi tabelit" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Lisa tabelile eesliide" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Asenda tabeli eesliide" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopeeri tabel koos eesliitega" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Andmesõnastik" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Jälgitud tabelid" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Andmebaas" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Viimane versioon" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Loodud" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Uuendatud" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Staatus" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Tegevus" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Kustuta selle tabeli jälgimise andmed" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "aktiivne" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "ei ole aktiivne" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versioonid" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Jälgimise raport" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Struktuuri hetkepilt" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Jälgimata tabelid" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Jälgi tabelit" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Andmebaasi logi" @@ -804,16 +806,16 @@ msgstr "Halb tüüp!" msgid "Selected export type has to be saved in file!" msgstr "Valitud eksportimise tüüp tuleb salvestada faili!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Halvad parameetrid!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s faili salvestamiseks pole piisavalt ruumi." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -821,12 +823,12 @@ msgstr "" "%s fail on juba serveris olemas, muutke faili nime või kontrollige " "ülekirjutamise valikuid." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Veebiserveril pole %s faili salvestamiseks õigusi." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Tõmmis salvestati %s faili." @@ -835,86 +837,86 @@ msgstr "Tõmmis salvestati %s faili." msgid "Invalid export type" msgstr "Vale ekspordi tüüp" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" veeru väärtus" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Use OpenStreetMaps as Base Layer" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geomeetria" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Punkt" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Lisa punkt" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Rea sõne" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Välimine ring" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Sisemine ring" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Lisa rea sõne" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Lisa sisemine ring" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Hulktahukas" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Lisa hulktahukas" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Lisa geomeetria" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Väljund" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -922,7 +924,7 @@ msgstr "" "Vali \"Function\" veerust \"GeomFromText\" ja kleebi allolev sõne \"Value\" " "väljale" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -931,21 +933,21 @@ msgstr "" "Tõenäoliselt üritasid üles laadida liiga suurt faili. Selle piirangu kohta " "loe %sdokumentatsioonist%s." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Näitan järjehoidjat" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Järjehoidja on kustutatud." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Faili ei saanud lugeda" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -954,7 +956,7 @@ msgstr "" "Üritasid laadida mittetoetatava tihendamisega faili (%s). Selle tugi on pole " "loodud või on seadistuses keelatud." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -964,27 +966,27 @@ msgstr "" "maht ületab sinu PHP seadistuses lubatud maksimaalset mahtu. Vaata [a@./" "Documentation.html#faq1_16@Documentation]KKK 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Faili märgitabelit ei saa teisendada ilma märgitabeli teisendusteegita" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Ei saanud importimise pluginaid laadida, palun kontrolli oma paigaldust!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "%s järjehoidja on loodud" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importimine lõpetati edukalt, teostati %d päringut." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -992,7 +994,7 @@ msgstr "" "Ületati skripti ooteaeg. Kui tahad importimise lõpetada, siis saada see fail " "uuesti ja importimine jätkub poolelijäänud kohast." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1001,24 +1003,24 @@ msgstr "" "phpMyAdmin ei suuda importimist lõpetada, kuni sa ei suurenda php aja " "piiranguid." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Tagasi" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin on parema välimusega raamimisvõimelises veebilehitsejas." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" käsud on keelatud." @@ -1027,7 +1029,7 @@ msgstr "\"DROP DATABASE\" käsud on keelatud." msgid "Do you really want to execute \"%s\"?" msgstr "Kas tõesti tahad käivitada \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Oled KUSTUTAMAS kogu andmebaasi!" @@ -1067,7 +1069,7 @@ msgstr "Lisa indeks" msgid "Edit Index" msgstr "Muuda indeksit" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Lisa indeksisse %d veerg(u)" @@ -1085,16 +1087,16 @@ msgstr "Hostinimi on tühi!" msgid "The user name is empty!" msgstr "Kasutajanimi on tühi!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Parool on tühi!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Paroolid ei kattu!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Lisa kasutaja" @@ -1111,23 +1113,24 @@ msgstr "Valitud kasutajate kustutamine" msgid "Close" msgstr "Sulge" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Muuda" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Elava liikluse diagramm" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Elava ühenduse/protsessi diagramm" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Elava päringu diagramm" @@ -1137,24 +1140,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Kokku" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Muud" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1174,7 +1177,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Protsessid" @@ -1192,7 +1195,7 @@ msgstr "Päringuid pärast viimast värskendust" msgid "Questions (executed statements by the server)" msgstr "Päringuid (serveri poolt käivitatud käsud)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Päringu statistika" @@ -1237,14 +1240,14 @@ msgid "System swap" msgstr "Süsteemisaale" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1296,32 +1299,32 @@ msgstr "Saadetud baidid" msgid "Bytes received" msgstr "Vastuvõetud baidid" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Ühendused" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1335,11 +1338,11 @@ msgstr "%d tabel(it)" msgid "Questions" msgstr "Päringud" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Liiklus" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Sätted" @@ -1359,11 +1362,11 @@ msgstr "Lisa diagramm ruudustikku" msgid "Please add at least one variable to the series" msgstr "Palun lisa seeriasse vähemalt üks muutuja" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Puudub" @@ -1463,7 +1466,7 @@ msgstr "Muuda sätteid" msgid "Current settings" msgstr "Praegused sätted" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Diagrammi pealkiri" @@ -1547,7 +1550,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Aeg" @@ -1640,10 +1643,10 @@ msgstr "" "Imporditud seadistusega diagrammi ruudustiku loomine ebaõnnestus. " "Lähtestamine vaikimisi seadistusse..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Impordi" @@ -1691,9 +1694,9 @@ msgstr "Kasutatud muutuja / valem" msgid "Test" msgstr "Testi" -#: 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 +#: 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 msgid "Cancel" msgstr "Katkesta" @@ -1705,11 +1708,11 @@ msgstr "Laadimine" msgid "Processing Request" msgstr "Taotluse töötlemine" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Viga taotluse töötlemisel" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Ühtegi andmebaasi ei ole valitud." @@ -1721,9 +1724,9 @@ msgstr "Veeru kustutamine" msgid "Adding Primary Key" msgstr "Primaarvõtme lisamine" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1763,15 +1766,15 @@ msgstr "Peida indeksid" msgid "Show indexes" msgstr "Näita indekseid" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Võõrvõtme kontroll:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Lubatud)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Keelatud)" @@ -1799,7 +1802,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET muutja" @@ -1838,8 +1841,8 @@ msgstr "Näita päringu kasti" msgid "No rows selected" msgstr "Ridu pole valitud" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Muuda" @@ -1847,18 +1850,18 @@ msgstr "Muuda" msgid "Query execution time" msgstr "Päringu sooritamise aeg" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Salvesta" @@ -1870,7 +1873,7 @@ msgstr "Peida otsingu kriteerium" msgid "Show search criteria" msgstr "Näita otsingu kriteeriumi" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Suurenda otsingut" @@ -1918,12 +1921,12 @@ msgstr "Päringu tulemused" msgid "Data point content" msgstr "Andmepunkti sisu" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignoreeri" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Kopeeri" @@ -1943,7 +1946,7 @@ msgstr "Vali võõrvõti" msgid "Please select the primary key or a unique key" msgstr "Palun vali primaarvõti või unikaalne nimi" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Vali veerg, mida näidata" @@ -2034,7 +2037,7 @@ msgstr "Genereeri" msgid "Change Password" msgstr "Muuda parooli" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Rohkem" @@ -2125,63 +2128,63 @@ msgid "December" msgstr "Detsember" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Jaan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Veebr" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Märts" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Aprill" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Juuni" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Juuli" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dets" @@ -2219,32 +2222,32 @@ msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Lau" @@ -2357,16 +2360,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "sekundis" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "minutis" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "tunnis" @@ -2389,46 +2392,232 @@ msgstr "" msgid "Font size" msgstr "Fondi kõrgus" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Salvesta muudetud andmed" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Taasta veeru järjekord" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Algus" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Eelmine" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Järgmine" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Lõpp" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Alusta reaga" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Ridade hulk" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Meetod" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horisontaalselt" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horisontaalne (pööratud päised)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertikaalselt" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "Päised iga %s rea tagant" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Sorteeri võtme alusel" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Valikud" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Osalised tekstid" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Täistekstid" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Seose võti" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Seose näitamise veerg" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Näita binaarsisu" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Näita BLOB sisu" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Näita binaarset sisu HEX-ina" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Peida veebilehitseja transformatsioon" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Well Known Text" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Well Known Binary" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Rida on kustutatud" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Sulge" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Võib olla umbkaudne. Vaata [a@./Documentation.html#faq3_11@Documentation]KKK " +"3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "päringus" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Näitan ridu" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "kokku" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "päring kestis %01.4f sekundit" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Päringu tulemuste tegevused" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Prindi vaade (täispikkade tekstidega)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Näita diagrammi" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Visualiseeri GIS andmed" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Loo vaade" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Linki ei leitud" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Liiga palju veasõnumeid, mõningaid pole näha." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Fail ei olnud üleslaetud fail." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Üleslaetud fail ületab upload_max_filesize väärtust php.ini failis." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Üleslaetud fail ületab MAX_FILE_SIZE väärtust, mis täpsustati HTML vormis." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Üleslaetud fail laeti üles vaid osaliselt." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Ajutine kaust puudub." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Faili salvestamine kettale ebaõnnestus." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Laiend peatas faili üleslaadimise." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Faili üleslaadimises on tundmatu viga." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2436,26 +2625,39 @@ msgstr "" "Üleslaetud faili liigutamisel esines viga, vaata [a@./Documentation." "html#faq1_11@Documentation]KKK 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Üleslaetud faili liigutamisel esines viga." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Ei saa lugeda (liigutatud) üleslaetud faili." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Ava uus phpMyAdmini aken" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Küpsised peavad olema lubatud." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "Javascript peab olema lubatud" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksid" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Ainulaadne" @@ -2468,8 +2670,8 @@ msgstr "Pakitud" msgid "Cardinality" msgstr "Hulk" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kommentaar" @@ -2492,128 +2694,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Andmebaasid" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktuur" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Lisa" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Tegevused" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Jälgimine" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tabel tundub olevat tühi!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Andmebaas tundub olevat tühi!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Päring" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Õigused" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Funktsioonid" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Sündmused" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Kujundaja" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Kasutajad" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sünkroniseeri" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binaarne logi" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Muutujad" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Märgitabelid" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Pluginad" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Mootorid" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Viga" @@ -2638,7 +2840,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Lisati %1$d rida." msgstr[1] "Lisati %1$d rida." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "PDF loomisel esines viga:" @@ -2729,16 +2931,99 @@ 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 +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 +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 +msgid "Value" +msgstr "Väärtus" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Tabeli otsing" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Muuda/Lisa" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Vali veerud (vähemalt üks):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Lisa otsingu tingimusi (\"WHERE\" klausel):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Ridade hulk lehe kohta" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Näitamise järjekord:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Kasuta seda veergu iga punkti nimetamiseks" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Suurim ridade hulk diagrammis" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Sirvi võõrvõtme väärtusi" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Täiendav otsingu kriteerium" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Teosta kahe erineva veergu jaoks \"päring näite alusel\" (metamärk: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Teosta \"päring näite alusel\" (metamärk: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Sirvi/Muuda punkte" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Kuidas kasutada" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Lähtesta" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "%s välimusele õiget pildi asukohta ei leitud!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Eelvaade pole saadaval." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "võta see" @@ -2757,7 +3042,7 @@ msgstr "%s välimust ei leitud!" msgid "Theme path not found for theme %s!" msgstr "%s välimuse asukohta ei leitud!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Välimus" @@ -3107,13 +3392,13 @@ msgstr "Loetelu, mis on valitud määratletud väärtuste nimekirjast" msgid "Cannot connect: invalid settings." msgstr "Ei saa ühendust: vigased sätted." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Tere tulemast %s'i" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3122,7 +3407,7 @@ msgstr "" "Arvatavasti ei loonud sa seadistuse faili. Võid selle loomiseks kasutada " "%1$spaigaldaja skripti%2$s." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3138,59 +3423,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Failed to use Blowfish from mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Javascript peab olema lubatud" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Logi sisse" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Saad tühikuga eraldades sisestada hostinime/IP-aadressi ja porti." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Kasutajanimi:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Parool:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Serveri valik" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Küpsised peavad olema lubatud." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Paroolita sisselogimine on seadistuses keelatud (vaata AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s sekundi jooksul aktiivsust polnud. Palun logi uuesti sisse" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Ei saa MySQL serverisse sisse logida" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Vale kasutajanimi/parool. Ligipääs keelatud." @@ -3222,7 +3503,7 @@ msgstr "jagatud" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabelid" @@ -3234,13 +3515,13 @@ msgstr "Tabelid" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Andmed" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Ballast" @@ -3265,19 +3546,11 @@ msgstr "Kontrolli "%s" andmebaasi õigusi." msgid "Check Privileges" msgstr "Kontrolli õigusi" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "võimalik turvaauk" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "tuvastati arvvõti" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Seadistuse faili lugemine ebaõnnestus" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3285,12 +3558,12 @@ msgstr "" "See tähendab tavaliselt, et selles on süntaksi viga, palun kontrolli kõiki " "allolevaid vigu." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Ei saanud laadida vaikimisi seadistuse faili kohast: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3298,204 +3571,190 @@ msgstr "" "[code]$cfg['PmaAbsoluteUri'][/code] väärtus PEAB sinu seadistusfailis olema " "määratud!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Vale serveri indeks: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Vale hostinimi %1$s serverile. Palun kontrolli oma seadistust." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Seadistuses on valitud vale autentimise meetod:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Peaksid uuendama %s %s või uuemale versioonile." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "GLOBALS ülekirjutamise katse" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "võimalik turvaauk" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "tuvastati arvvõti" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Maksimaalne: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentatsioon" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL päring" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL vastas: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "SQL valideerijaga ühendamine ebaõnnestus!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Selgita SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Jäta SQL selgitus vahele" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Ilma PHP koodita" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Loo PHP kood" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Uuenda" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Jäta SQL'i valideerimine vahele" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valideeri SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Selle päringu kiirmuutmine" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Kiirmuutmine" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profileerimine" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Päike" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y kell %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päeva, %s tundi, %s minutit ja %s sekundit" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Puudulik parameeter:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Algus" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Eelmine" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Järgmine" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Lõpp" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Mine "%s" andmebaasi." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Seda %s funktsionaalsust mõjutas tuntud viga, vaata %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Muuda" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Sirvi oma arvutist:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vali veebiserveri üleslaadimise kataloogist %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Valitud üleslaadimise kataloogile ei pääse ligi" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Seal pole faile, mida üles laadida" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Teosta" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Prindi" @@ -3525,8 +3784,8 @@ msgid "Closed" msgstr "Suletud" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Keelatud" @@ -3667,9 +3926,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Lähtesta" @@ -3892,10 +4151,6 @@ msgstr "Peida tabeli struktuuri tegevused" msgid "Show binary contents as HEX by default" msgstr "Näita binaarset sisu vaikimisi HEX-ina" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Näita binaarset sisu HEX-ina" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Näita andmebaase rippmenüü asemel nimekirjana" @@ -3951,7 +4206,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Suurim teostamise aeg" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Salvesta failina" @@ -3960,7 +4215,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formaat" @@ -4064,7 +4319,7 @@ msgid "MIME type" msgstr "MIME-tüüp" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Seosed" @@ -5649,9 +5904,9 @@ msgstr "Nõuab, et SQL valideerija oleks lubatud" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Parool" @@ -5935,32 +6190,24 @@ msgstr "Palun kontrolli andmebaasi sisaldava kataloogi õigusi." msgid "Details..." msgstr "Detailid..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Võib olla umbkaudne. Vaata [a@./Documentation.html#faq3_11@Documentation]KKK " -"3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Sinu seadistuses määratud kontrollkasutajaga ühendamine ebaõnnestus." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Muuda parooli" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Ilma paroolita" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Tipi uuesti" @@ -5981,22 +6228,22 @@ msgstr "Loo andmebaas" msgid "Create" msgstr "Loo" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Ei oma õigusi" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nimi" @@ -6153,25 +6400,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Kodeerimise teisendus:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s from %2$s branch" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "no branch" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Git'i versioon" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "committed on %1$s by %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "authored on %1$s by %2$s" @@ -6288,263 +6535,117 @@ msgstr "Formaadipõhised valikud:" msgid "Language" msgstr "Keel" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Salvesta muudetud andmed" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Taasta veeru järjekord" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Alusta reaga" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Ridade hulk" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Meetod" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horisontaalselt" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horisontaalne (pööratud päised)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertikaalselt" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Päised iga %s rea tagant" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Sorteeri võtme alusel" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Valikud" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Osalised tekstid" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Täistekstid" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Seose võti" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Seose näitamise veerg" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Näita binaarsisu" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Näita BLOB sisu" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Peida veebilehitseja transformatsioon" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Well Known Text" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Well Known Binary" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Rida on kustutatud" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Sulge" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "päringus" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Näitan ridu" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "kokku" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "päring kestis %01.4f sekundit" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Päringu tulemuste tegevused" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Prindi vaade (täispikkade tekstidega)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Näita diagrammi" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Visualiseeri GIS andmed" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Loo vaade" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Linki ei leitud" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Versioon" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Andmete kodukataloog" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Ühine kataloogi nimeosa kõigi InnoDB andmefailide jaoks." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Andmefailid" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Automaatse laiendamise suurendamine" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" "Tabeliruumi täitumisel selle suurendamine antud suurendamise mahu võrra." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Puhvertsooni maht" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" "Mälupuhvri maht, mida InnoDB kasutab oma andmete ja indeksite puhverdamiseks." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Puhvertsoon" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB staatus" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Puhvertsooni kasutus" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "lehte" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Vabad lehed" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Räpased lehed" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Lehed andmetega" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Puhastada vajavad lehed" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Hõivatud lehed" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Lukustatud lehed" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Puhvertsooni aktiivsus" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Lugemise taotlused" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Kirjutamise taotlused" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Lugemisvead" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Kirjutamise järjekord" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Lugemisvigade %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Kirjutamise järjekorra %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Andmeviida maht" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6552,11 +6653,11 @@ msgstr "" "Vaikimisi viida maht baitides, mida kasutatakse CREATE TABLE käsuga MyISAM " "tabelite jaoks, kui MAX_ROWS valik on määramata." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Automaatne taastamine" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6564,11 +6665,11 @@ msgstr "" "Rikutud MyISAM tabelite automaatne taastamine, seadistatud --myisam-recover " "serveri käivitamise valikuga." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Ajutiste sorteerimise failide suurim maht" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6577,11 +6678,11 @@ msgstr "" "MySQL'il on lubatud kasutada ajutise faili suurimat mahtu MyISAM indeksi " "uuesti loomisel (teostades REPAIR TABLE, ALTER TABLE või LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Ajutiste failide suurim maht indeksi loomisel" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6591,11 +6692,11 @@ msgstr "" "siintäpsustatud kasutatud võtme puhvri mahtu, siis eelista võtme puhvri " "meetodit." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Taastamise lõimud" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6604,11 +6705,11 @@ msgstr "" "parandamise käigus MyISAM tabeli indeksid paralleelselt (iga indeks eraldi " "lõimus)." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Sorteerimise puhvri maht" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6616,11 +6717,11 @@ msgstr "" "Puhver, mida kasutatakse MyISAM indeksite sorteerimiseks REPAIR TABLE ajal " "või kui luuakse indekseid käskudega CREATE INDEX või ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Indeksi puhvri maht" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6628,11 +6729,11 @@ msgstr "" "See on indeksi puhvri jaoks eraldatud mälu hulk. Vaikimisi väärtus on 32MB. " "Siin eraldatud mälu kasutatakse ainult indeksi lehtede puhverdamiseks." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Salvestuse puhvri maht" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6642,11 +6743,11 @@ msgstr "" "32MB. Seda mälu kasutatakse andmete käsitlemise (.xtd) ja rea osutaja (.xtr) " "failide muudatuste puhverdamiseks." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Logi puhvri maht" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6654,21 +6755,21 @@ msgstr "" "See on ülekande logi andmete puhverdamiseks eraldatud mälu hulk. Vaikimisi " "on 16MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Logi faili maht" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "See on ülekande logi maht. Vaikimisi on 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Ülekande puhvri maht" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6676,11 +6777,11 @@ msgstr "" "Globaalse ülekande logi puhvri maht (mootor eraldab sellest mahust 2 " "puhvrit). Vaikimisi on 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Kontrollpunkti sagedus" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6688,11 +6789,11 @@ msgstr "" "See on kontrollpunkti läbimiseni ülekande logisse kirjutatud andmete hulk. " "Vaikimisi väärtus on 24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Andmete logi maht" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6704,11 +6805,11 @@ msgstr "" "väärtust saab suurendada, et suurendada andmebaasis säilitatavate andmete " "koguhulka." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Prahi lävi" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6716,11 +6817,11 @@ msgstr "" "Prahi protsent andmete logi failis enne selle kokkusurumist. See on väärtus " "1 kuni 99. Vaikimisi on 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Logi puhvri maht" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6730,27 +6831,27 @@ msgstr "" "Mootor eraldab iga lõimu jaoks ühe puhvri, kuid seda ainult siis, kui haru " "on vajalik andmete logi kirjutamise jaoks." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Andmete faili suurendamise maht" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Andmete käsitlemise (.xtd) failide suurendamise maht." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Rea faili suurendamise maht" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Rea osutaja (.xtr) failide suurendamise maht." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Logifailide hulk" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6762,7 +6863,7 @@ msgstr "" "kustutatakse, muul juhul nimetatakse need ümber ja antakse järgmine kõrgeim " "number." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6771,11 +6872,11 @@ msgstr "" "PBXT kohta leiab dokumentatsiooni ja edasist teavet %sPrimeBase XT kodulehelt" "%s." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Seotud lingid" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "The PrimeBase XT blogi, kirjutajaks Paul McCullagh" @@ -6822,14 +6923,14 @@ msgstr "Andmete tõmmistamine tabelile" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Sündmus" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definitsioon" @@ -6887,14 +6988,14 @@ msgstr "Näita MIME-tüüpe" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Host" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Loomise aeg" @@ -7101,21 +7202,12 @@ msgstr "Vaated" msgid "Export contents" msgstr "Ekspordi sisu" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Ava uus phpMyAdmini aken" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "GIS visualiseerimiseks andmeid ei leitud." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "GLOBALS ülekirjutamise katse" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7214,12 +7306,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Tabeli nimi" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Veeru nimed" @@ -7287,93 +7379,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funktsioon" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Peida" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binaarne" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binaarne - ära muuda" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "veebiserveri üleslaadimiskataloogi" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Muuda/Lisa" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Jätka %s rea lisamist" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "ja siis" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Lisa uue reana" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Lisa uue reana ja ignoreeri vigu" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Näita lisamise päringut" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Mine eelmisele lehele tagasi" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Lisa järgmine uus rida" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Mine tagasi sellele lehele" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Muuda järgmist rida" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Väärtus" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisatud rea id: %1$d" @@ -7388,32 +7464,32 @@ msgstr "Puudub" msgid "Convert to Kana" msgstr "Konverdi Kana'ks" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Kohast" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Kohta" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Saada" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Lisa tabeli eesliide" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Lisa eesliide" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 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:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Ei muudetud" @@ -7623,81 +7699,81 @@ msgstr "Lae navigeerimise raam uuesti" msgid "This format has no options" msgstr "Sellel formaadil pole valikuid" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Ei ole korras" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Lubatud" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Peamised seoste võimalused" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Näita võimalusi" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF-ide koostamine" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Veeru kommentaaride näitamine" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Veebilehitseja transformatsioon" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Palun loe dokumentatsioonist, kuidas uuendada oma column_comments tabelit" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Järjehoidjaga SQL päring" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL ajalugu" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Püsivad hiljuti kasutatud tabelid" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Püsivate tabelite UI eelistused" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Kasutaja eelistused" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Täpsemate võimaluste seadistamise kiirsammud:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "Loo vajalikud tabelid script/create_tables.sql failiga." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Loo pma kasutaja ja anna juurdepääs nendele tabelitele." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7705,11 +7781,11 @@ msgstr "" "Luba täpsemad võimalused seadistuse failis (config.inc.php). " "Näiteks alustades config.sample.inc.php failist." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Uuendatud seadistuse faili laadimiseks logi phpMyAdmini uuesti sisse." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "kirjeldus puudub" @@ -7717,7 +7793,7 @@ msgstr "kirjeldus puudub" msgid "Slave configuration" msgstr "Alluva seadistus" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Muuda või seadista ülemserver uuesti" @@ -7731,13 +7807,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Kasutajanimi" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -7750,7 +7826,7 @@ msgid "Slave status" msgstr "Alluva staatus" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Muutuja" @@ -7766,38 +7842,38 @@ msgstr "" "Selles nimekirjas näeb ainult neid alluvaid, mis algavad --report-" "host=host_name valikuga." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Lisa alluva paljundamise kasutaja" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Kasuta tekstivälja" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Kõik hostid" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Kohalik" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "See host" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Kasuta hosti tabelit" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7813,7 +7889,7 @@ msgstr "Genereeri parool" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7844,88 +7920,89 @@ msgstr "%1$s sündmus on loodud." msgid "One or more errors have occured while processing your request:" msgstr "Sinu taotluse töötlemisel esines üks või mitu viga:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Muuda sündmust" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Taotluse töötlemisel esines viga" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detailid" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Sündmuse nimi" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Sündmuse tüüp" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Muuda väärtuseks %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Käivita kell" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Käivita iga" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Algus" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Lõpp" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Lõpetamisel säilita" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Määraja" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: 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\"" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Sa pead andma sündmuse nime" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Sa pead andma sündmusele õige intervalli väärtuse." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Sa pead andma sündmusele õige käivitamise aja." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Sa pead andma sündmusele õige tüübi." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "Sa pead andma sündmuse definitsiooni." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Uus" @@ -7958,7 +8035,7 @@ msgstr "" "täiustatud 'mysqli' laiendit." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Vale funktsiooni tüüp: \"%s\"" @@ -7977,69 +8054,69 @@ msgstr "%1$s funktsiooni on muudetud." msgid "Routine %1$s has been created." msgstr "%1$s funktsioon on loodud." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Muuda funktsiooni" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Funktsiooni nimi" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parameetrid" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Suund" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Pikkus/Väärtused" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Lisa parameeter" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Kustuta viimane parameeter" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Pöördumise tüüp" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Pöördumise pikkus/väärtused" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Pöördumise valikud" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Ette määratud" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Turvalisuse tüüp" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "SQL andmete juurdepääs" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Sa pead andma funktsiooni nime" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Parameetrile anti vale suund \"%s\"." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8047,37 +8124,37 @@ msgstr "" "Sa pead andma ENUM, SET, VARCHAR ja VARBINARY tüüpi funktsiooni " "parameetritele pikkuse/väärtused." -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Sa pead andma funktsiooni definitsiooni." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "%s funktsiooni käivitamise tulemused" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Käivita funktsioon" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Funktsiooni parameetrid" @@ -8095,36 +8172,36 @@ msgstr "%1$s päästikut on muudetud." msgid "Trigger %1$s has been created." msgstr "%1$s päästik on loodud." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Muuda päästikut" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Päästiku nimi" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Aeg" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Sa pead andma päästiku nime" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Sa pead andma päästikule õige ajastuse" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Sa pead andma päästikule õige sündmuse" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Sa pead sisestama õige tabeli nime" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Sa pead andma päästiku definitsiooni." @@ -8208,7 +8285,7 @@ msgstr "Pole sündmusi, mida näidata." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8217,7 +8294,7 @@ msgstr "%s tabelit pole olemas!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8225,7 +8302,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Palun seadista koordinaadid %s tabelile" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8236,27 +8313,27 @@ msgstr "%s andmebaasi skeem - Leht %s" msgid "This page does not contain any tables!" msgstr "See leht ei sisalda ühtegi tabelit!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "SKEEMI VIGA: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Seoseskeem" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Sisu tabel" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atribuudid" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Lisaks" @@ -8364,7 +8441,7 @@ msgstr "Tundmatu keel: %1$s." msgid "Current Server" msgstr "Praegune server" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Lähteandmebaas" @@ -8382,7 +8459,7 @@ msgstr "Kauge server" msgid "Difference" msgstr "Erinevus" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Sihtandmebaas" @@ -8401,7 +8478,7 @@ msgstr "Teosta SQL päring(ud) %s serveris" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Puhasta" @@ -8410,11 +8487,11 @@ msgstr "Puhasta" msgid "Columns" msgstr "Veerud" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehoidjale" @@ -8509,7 +8586,7 @@ msgstr "" "SQL valideerijat ei saanud käivitada. Palun kontrolli, et oled paigaldanud " "vajalikud PHP laiendid nagu on kirjeldatud %sdokumentatsioonis%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "%s jälgimine on aktiveeritud." @@ -8535,8 +8612,8 @@ msgstr "" "jutumärkideta lihtsalt üksik väärtus, formaadis: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indeks" @@ -8586,13 +8663,13 @@ msgstr "Puudub" msgid "As defined:" msgstr "Nagu määratud:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primaarne" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Täistekst" @@ -8605,17 +8682,17 @@ msgstr "esimene" msgid "after %s" msgstr "peale %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Lisa %s veerg(u)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Pead lisama vähemalt ühe veeru." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Varundusmootor" @@ -8623,41 +8700,6 @@ msgstr "Varundusmootor" msgid "PARTITION definition" msgstr "PARTITION definitsioon" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Tabeli otsing" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Vali veerud (vähemalt üks):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Lisa otsingu tingimusi (\"WHERE\" klausel):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Ridade hulk lehe kohta" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Näitamise järjekord:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Sirvi võõrvõtme väärtusi" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Teosta \"päring näite alusel\" (metamärk: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8807,11 +8849,11 @@ msgstr "" msgid "Manage your settings" msgstr "Halda oma sätteid" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Seadistus on salvestatud" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8824,7 +8866,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Ei saanud seadistust salvestada" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8853,7 +8895,7 @@ msgstr "Serveri ühenduse kodeering" msgid "Appearance Settings" msgstr "Välimuse sätted" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Rohkem sätteid" @@ -8873,9 +8915,9 @@ msgstr "Tarkvara versioon" msgid "Protocol version" msgstr "Protokolli versioon" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Kasutaja" @@ -9009,126 +9051,126 @@ msgstr "" "Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe " "%sdokumentatsioonist%s." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Andmebaasid puuduvad" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "Filtreeri andmebaase nime alusel" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Filtreeri tabeleid nime alusel" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Loo tabel" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Palun vali andmebaas" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Näita/Peida vasak menüü" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Salvesta asukoht" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Loo seos" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Lae uuesti" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Abi" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Nurgelised lingid" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Otselingid" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Kasuta ruudustikku" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Kõik Väikeseks/Suureks" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Lülitu väiksele/suurele" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Muuda seose ridu" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Impordi/Ekspordi koordinaadid PDF skeemile" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Loo päring" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Liiguta menüü" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Peida/Näita kõiki" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Peida/Näita tabeleid, millel puudub seos" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Tabelite hulk" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Kustuta seos" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Seose operaator" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "V.a" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "alampäring" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Muuda nimeks" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Uus nimi" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Agregaat" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Aktiivsed valikud" @@ -9140,51 +9182,51 @@ msgstr "Leht on loodud" msgid "Page creation failed" msgstr "Lehe loomine ebaõnnestus" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Leht" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Impordi valitud lehelt" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Ekspordi valitud lehele" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Loo leht ja ekspordi sellele" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Uue lehe nimi: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Ekspordi/Impordi skaalas" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "soovituslik" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Viga: seos on juba olemas." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Viga: Seost ei lisatud." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY seos on lisatud" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Sisemine seos on loodud" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Seos on kustutatud" @@ -9196,51 +9238,51 @@ msgstr "Kujundaja jaoks koordinaatide salvestamisel esines viga." msgid "Modifications have been saved" msgstr "Muutused on salvestatud" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Ei saanud sätteid salvestada, saadetud vorm sisaldab vigu" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Ei saanud seadistust importida" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Seadistus sisaldab mõnede väljade jaoks valet infot." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Kas tahad ülejäänud sätted importida?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Salvestatud: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Impordi failist" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Impordi veebilehitseja salvestuskohast" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Sätted imporditakse sinu veebilehitseja kohalikust salvestuskohast." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Sul pole salvestatud sätteid!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Sinu veebilehitseja ei toeta seda võimalust" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Lõimi käesoleva seadistusega" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9249,36 +9291,36 @@ msgstr "" "Saad rakendada rohkem sätteid, kui muudad config.inc.php faili, nt kasutades " "%sPaigaldaja skripti%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Salvesta veebilehitseja salvestuskohta" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Sätted salvestatakse sinu veebilehitseja kohalikku salvestuskohta." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Olemasolevad sätted kirjutatakse üle!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "Saad lähtestada kõik sätted ja taastada need vaikimisi väärtustele." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Impordi faile" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Kõik" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabelit ei leitud või puudub kohas %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Faili pole olemas" @@ -9286,17 +9328,17 @@ msgstr "Faili pole olemas" msgid "Select binary log to view" msgstr "Vali binaarne logi, mida soovid vaadata" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Faili" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Lühenda näidatavaid päringuid" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Näita täispikkasid päringuid" @@ -9312,7 +9354,7 @@ msgstr "Asukoht" msgid "Original position" msgstr "Algne asukoht" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informatsioon" @@ -9320,31 +9362,31 @@ msgstr "Informatsioon" msgid "Character Sets and Collations" msgstr "Märgitabelid ja kodeeringud" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d andmebaas kustutati edukalt." msgstr[1] "%1$d andmebaasi kustutati edukalt." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Andmebaaside statistika" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Ülema paljundamine" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Alluva paljundamine" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Luba statistika" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9356,153 +9398,153 @@ msgstr "" msgid "Storage Engines" msgstr "Varundusmootorid" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Vaata andmebaaside tõmmist (skeemi)" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Moodulid" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Esimene" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Plugin" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Moodul" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Teek" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Versioon" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Autor" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Litsents" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "keelatud" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Sisaldab kõiki õigusi, v.a GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Lubab muuta olemasolevate tabelite struktuuri." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Lubab muuta ja kustutada salvestatud funktsioone." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Lubab luua uusi andmebaase ja tabeleid." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Lubab luua salvestatud funktsioone." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Lubab luua uusi tabeleid." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Lubab luua ajutisi tabeleid." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Lubab luua, kustutada ja ümber nimetada kasutajakontosid." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Lubab luua uusi vaateid." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Lubab kustutada andmeid." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Lubab kustutada andmebaase ja tabeleid." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Lubab kustutada tabeleid." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Lubab luua sündmusi sündmuse ajastaja jaoks" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Lubab käivitada salvestatud funktsioone." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Lubab andmeid failidest importida ja failideks eksportida." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "Lubab õiguste tabelit laadimata lisada kasutajaid ja õigusi." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Lubab luua ja kustutada indekseid." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Lubab lisada ja asendada andmeid." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Lubab käesoleva lõimu jaoks tabeleid lukustada." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Piirab uute ühenduste hulka, mida kasutaja võib tunni aja jooksul avada." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Piirab päringute hulka, mida kasutaja võib tunni aja jooksul serverile saata." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9510,58 +9552,58 @@ msgstr "" "Piirab tabelit või andmebaasi muutvate käskude hulka, mida kasutaja võib " "tunni aja jooksul käivitada." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Piirab samaaegsete ühenduste hulka, mida kasutajal võib olla." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Lubab vaadata kõikide kasutajate protsesse" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Muudatusi selles MySQL versioonis ei toimunud." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Lubab uuesti laadida serveri sätteid ja puhastada serveri puhvreid." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Lubab kasutajal küsida, kus alluvad / ülemad asuvad." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Vajalik alluvate paljundamiseks." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Lubab lugeda andmeid." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Annab ligipääsu kogu andmebaaside nimekirjale." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Lubab teostada SHOW CREATE VIEW päringuid." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Lubab serveri välja lülitada." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9571,164 +9613,164 @@ msgstr "" "on vajalik enamike administratiivsete tegevuste jaoks, nagu näiteks " "globaalsete muutujate seadmiseks või teiste kasutajate lõimude sulgemiseks." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Lubab luua ja kustutada päästikuid" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Lubab muuta andmeid." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Õigused puuduvad." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Puudub" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Tabelipõhised õigused" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Märkus: MySQL õigused on inglisekeelsed" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administreerimine" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globaalsed õigused" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Andmebaasipõhised õigused" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Ressursi piirangud" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Märkus: Nende valikute muutmisel väärtuseks 0 (null) eemaldab piirangu." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Sisselogimise teave" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Ära muuda parooli" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Kasutajat ei leitud." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Kasutaja %s on juba olemas!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Lisasid uue kasutaja." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Uuendasid %s õigusi." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Tühistasid %s õigused" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "%s parool on edukalt vahetatud." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "%s kustutamine" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Kustutavaid kasutajaid pole valitud!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Õiguste uuesti laadimine" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Valitud kasutajad on edukalt kustutatud." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Õigused on edukalt uuesti laetud." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Muuda õigusi" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Tühista" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Ekspordi kõik" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Kõik" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Kõikide kasutajate õigused" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "%s õigused" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Kasutajate ülevaade" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Kustuta valitud kasutajad" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Kustuta kasutajatega samanimelised andmebaasid." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9740,131 +9782,131 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Valitud kasutajat õiguste tabelist ei leitud." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Veerupõhised õigused" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Lisa õigusi järgnevas andmebaasis" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Lisa õigusi järgnevas tabelis" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Muuda sisselogimise teavet / Kopeeri kasutajat" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Loo uus kasutaja samade õigustega ja ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... hoia eelmine alles." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... kustuta eelmine kasutajate tabelist." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Andmebaas kasutajale" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "Loo samanimeline andmebaas ja anna kõik õigused" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Anna kõik õigused metamärgiga nimele (kasutajanimi\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Anna kõik õigused "%s" andmebaasis" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Kasutajad, kellel on ligipääs "%s" andmebaasile" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "globaalne" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "andmebaasipõhine" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "metamärk" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Kasutaja on lisatud." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Tundmatu viga" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Ei saa ühendada ülema %s'ga." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Ei saa lugeda ülema logi asukohta. Võimalikud on probleemid ülema õigustega." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Ei saa ülemat muuta" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Ülema serveriks muudeti edukalt %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "See server on paljundamisel seatud ülemaks." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Näita ülema staatust" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Näita ühendatud alluvaid" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9873,11 +9915,11 @@ msgstr "" "See server ei ole paljundamisel seatud ülemaks. Kas soovid seda teha?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Ülema seadistus" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9890,19 +9932,19 @@ msgstr "" "paljundada enamus andmebaase) või ignoreerid vaikimisi kõiki andmebaase ja " "lubad paljundada ainult mõningaid andmebaase. Palun vali meetod:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Paljunda kõiki andmebaase, ignoreeri:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Ignoreeri kõiki andmebaase, paljunda:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Palun vali andmebaasid:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -9910,7 +9952,7 @@ msgstr "" "Nüüd lisa järgnevad read oma my.cnf faili [mysqld] sektsiooni lõppu ja peale " "seda palun taaskäivita MySQL server." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -9920,80 +9962,80 @@ msgstr "" "Seejärel peaksid nägema sõnumeid, mis teavitavad sind, et see server on seadistatud ülemaks" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Alluva SQL lõim ei tööta!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Alluva IO lõim ei tööta!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Server on seadistatud paljundamisel alluvaks. Kas soovid:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Näita alluva staatuse tabelit" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Sünkroniseeri andmebaasid ülemaga" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Kontrolli alluvat:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Täielik käivitus" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Täielik peatamine" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Taaskäivita alluv" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Käivita ainult SQL lõim" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Peata ainult SQL lõim" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Käivita ainult IO lõim" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Peata ainult IO lõim" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Vea haldus:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Vigade vahelejätmine võib rikkuda sünkroonsust ülema ja alluva vahel!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Jäta käesolev viga vahele" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Jäta vahele järgmine" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "viga." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10002,134 +10044,134 @@ msgstr "" "See server ei ole paljundamisel seadistatud alluvaks. Kas soovid seda teha?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "%s lõim katkestati edukalt." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin ei suutnud katkestada %s lõimu. Tõenäoliselt on see juba suletud." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Töötleja" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Päringute puhver" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Lõimud" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Ajutised andmed" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Viivitatud lisamised" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Võtme puhver" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Liitmised" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Sorteerimine" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Ülekande koordineerija" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Tühjenda (sulge) kõik tabelid" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Näita avatud tabeleid" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Näita alluvaid hoste" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Näita alluva staatust" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Tühjenda päringute puhver" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Jooksev informatsioon" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Kõik staatuse muutujad" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Jälgija" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Kontrollsüsteem" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Värskendamissagedus: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filtrid" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Sisaldab sõna:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Näita ainult 'alert' väärtusi" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filtreeri kategooria alusel..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Näita vormindamata väärtusi" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Seotud lingid:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Käivita analüüsija" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Juhendid" -#: server_status.php:916 +#: server_status.php:915 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:918 +#: server_status.php:917 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 " @@ -10138,7 +10180,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:920 +#: server_status.php:919 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 " @@ -10148,7 +10190,7 @@ msgstr "" "(lugedes dokumentatsiooni) ja kuidas tehtud muudatusi tagasi võtta. Halb " "muudatus võib kaasa tuua jõudluse languse." -#: server_status.php:922 +#: server_status.php:921 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 " @@ -10159,31 +10201,31 @@ msgstr "" "saavutatud mingit praktiliselt mõõdetavat arengut." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Päringud alates käivitumisest: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Käsud" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Võrguliiklus alates käivitumisest: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10191,15 +10233,15 @@ msgstr "" "See MySQL server töötab paljundamisel ülemana ja alluvana." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "See MySQL server töötab paljundamisel ülemana." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "See MySQL server töötab paljundamisel alluvana." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10207,11 +10249,11 @@ msgstr "" "Lisateabe saamiseks serveri paljundamise staatuse kohta, palun vaata paljundamise sektsiooni." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Paljundamise staatus" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10219,35 +10261,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Vastu võetud" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Saadetud" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "Maks. paralleelühendusi" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Ebaõnnestunud katseid" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Katkestatud" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Käsk" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10255,11 +10297,11 @@ msgstr "" "Ühenduste hulk, mis katkestati seetõttu, et klient lahkus liinilt ilma " "ühendust korralikult sulgemata." -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Ühenduste hulk, millel ei õnnestunud MySQL serveriga ühendada." -#: server_status.php:1322 +#: server_status.php:1321 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 " @@ -10269,17 +10311,17 @@ msgstr "" "ületas binlog_cache_size väärtuse ja mis kasutasid ülekannete käskude " "salvestamiseks ajutist faili." -#: server_status.php:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "Ülekannete hulk, mis kasutasid ajutist binaarse logi puhvrit." -#: server_status.php:1324 +#: server_status.php:1323 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:1325 +#: server_status.php:1324 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,11 +10333,11 @@ msgstr "" "suurendada tmp_table_size väärtust, et ajutised tabelid oleksid " "mälupõhised, mitte kettapõhised." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Mysqld poolt loodud ajutiste failide hulk." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10303,7 +10345,7 @@ msgstr "" "Mälupõhiste ajutiste tabelite hulk, mis on loodud automaatselt serveri poolt " "käskude täitmise ajal." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10311,7 +10353,7 @@ msgstr "" "INSERT DELAYED käsuga kirjutatud ridade hulk, millel esines mõni viga " "(tõenäoliselt korduv võti)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10319,23 +10361,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Kirjutatud INSERT DELAYED ridade hulk." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Käivitatud FLUSH käskude hulk." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Sisemiste COMMIT käskude hulk." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Tabelist kustutatud ridade hulk." -#: server_status.php:1334 +#: 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 " @@ -10345,7 +10387,7 @@ msgstr "" "nimega tabelit. Seda nimetatakse avastamiseks. Handler_discover näitab, mitu " "korda on tabeleid avastatud." -#: server_status.php:1335 +#: 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, " @@ -10355,7 +10397,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:1336 +#: server_status.php:1335 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." @@ -10363,7 +10405,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:1337 +#: server_status.php:1336 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 " @@ -10372,7 +10414,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:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10380,7 +10422,7 @@ msgstr "" "Võtme järjekorras eelmise rea lugemise taotluste hulk. Seda lugemise " "meetodit kasutatakse peamiselt ORDER BY ... DESC optimeerimiseks." -#: server_status.php:1339 +#: 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 " @@ -10392,7 +10434,7 @@ msgstr "" "palju päringuid, millega peab MySQL kontrolliga terveid tabeleid või kasutad " "liitmisi, mis ei kasuta võtmeid korralikult." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10404,35 +10446,35 @@ msgstr "" "korralikult indekseeritud või sinu päringud ei ole kirjutatud selliselt, et " "need kasutaksid ära indeksid, mis sul on." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Sisemiste ROLLBACK käskude hulk." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Tabeli rea uuendamise taotluste hulk." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Tabelisse rea lisamise taotluste hulk." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Andmeid (räpased või puhtad) sisaldavate lehtede hulk." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Hetkel räpaseid andmeid sisaldavate lehtede hulk." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Vabade lehtede hulk." -#: server_status.php:1348 +#: 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 " @@ -10442,7 +10484,7 @@ msgstr "" "loetakse või kirjutatakse või mida ei saa mingil muul põhjusel tühjendada " "ega eemaldada." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10454,11 +10496,11 @@ msgstr "" "valemiga Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Puhvertsooni kogumaht lehtedes." -#: server_status.php:1351 +#: 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." @@ -10466,7 +10508,7 @@ msgstr "" "InnoDB algatatud \"juhuslike\" ettelugemiste hulk. See juhtub siis, kui " "päring peab kontrollima palju tabeleid, aga juhuslikus järjekorras." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10474,11 +10516,11 @@ msgstr "" "InnoDB algatatud järjestike ettelugemiste hulk. See juhtub siis, kui InnoDB " "teeb järjestikulist kogu tabeli kontrolli." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB poolt tehtud loogiliste lugemise taotluste hulk." -#: server_status.php:1354 +#: 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." @@ -10486,7 +10528,7 @@ msgstr "" "Loogiliste lugemiste hulk, mida InnoDB puhvertsoonist teha ei saanud ja mida " "pidi tegema ühelehelise lugemisena." -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10500,51 +10542,51 @@ msgstr "" "palju veel ootama peab. Kui puhvertsooni maht on õigesti seadistatud, siis " "see väärtus peaks olema madal." -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB puhvertsooni tehtud kirjutamiste hulk." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Seni tehtud fsync() operatsioonide hulk." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Hetkel järjekorras olevate fsync() operatsioonide hulk." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Hetkel järjekorras olevate lugemiste hulk." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Hetkel järjekorras olevate kirjutamiste hulk." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Seni loetud andmete koguhulk baitides." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Andmete lugemiste koguhulk." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Andmete kirjutamiste koguhulk." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Seni kirjutatud andmete koguhulk baitides." -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "Topeltkirjutamise operatsioonide jaoks kirjutatud lehtede hulk." -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "Teostatud topeltkirjutamise operatsioonide hulk." -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -10552,35 +10594,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Logi kirjutamise taotluste hulk." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Logi failisse füüsiliste kirjutamiste hulk." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "fsync() poolt logi failisse tehtud kirjutamiste hulk." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Järjekorras olevate logifailide fsync() operatsioonide hulk." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Järjekorras olevad logi faili kirjutamised." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Logi faili kirjutatud baitide hulk." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Loodud lehtede hulk." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10588,51 +10630,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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Loetud lehtede hulk." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Kirjutatud lehtede hulk." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Hetkel ootel olevate rea lukustamiste hulk." -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Rea lukustamise saamise keskmine aeg millisekundites." -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rea lukustamise saamiseks kulutatud aeg kokku millisekundites." -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rea lukustamise saamise maksimaalne aeg millisekundites." -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "Ootama pidanud rea lukustamised kokku." -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tabelitest kustutatud ridade hulk." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tabelitesse lisatud ridade hulk." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tabelitest loetud ridade hulk." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tabelites uuendatud ridade hulk." -#: server_status.php:1387 +#: 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." @@ -10640,7 +10682,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:1388 +#: 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." @@ -10648,7 +10690,7 @@ msgstr "" "Võtmepuhvris kasutamata plokkide hulk. Seda väärtust saad kasutada kasutusel " "oleva võtme puhvri mahu tuvastamiseks." -#: server_status.php:1389 +#: server_status.php:1388 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 " @@ -10658,15 +10700,15 @@ msgstr "" "näitab maksimaalset plokkide hulka, mis on kunagi samaaegselt kasutusel " "olnud." -#: server_status.php:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "Kasutatud võtme puhvri protsent (arvutatud väärtus)" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "Puhvrist võtmeploki lugemise taotluste hulk." -#: server_status.php:1392 +#: 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 " @@ -10676,7 +10718,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:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10684,22 +10726,22 @@ msgstr "" "Võtme puhvri puudujäägi arvutamisel võrreldakse füüsilisi lugemisi lugemise " "taotlustega (arvutatud väärtus)" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "Puhvrisse võtmeploki kirjutamise taotluste hulk." -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "Kettale võtmeploki füüsiliste kirjutamiste hulk." -#: server_status.php:1396 +#: server_status.php:1395 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:1397 +#: server_status.php:1396 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 " @@ -10709,7 +10751,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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10717,12 +10759,12 @@ msgstr "" "Maksimaalne ühenduste hulk, mis on korraga kasutusel olnud alates serveri " "käivitamisest." -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10730,19 +10772,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Avatud failide hulk." -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "Avatud striimide hulk (kasutatakse peamiselt sisselogimisel)." -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Avatud tabelite hulk." -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10752,19 +10794,19 @@ msgstr "" "killustumise probleemidele, mida saab lahendada FLUSH QUERY CACHE käsu " "täitmisega." -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Päringu puhvri jaoks vaba mälu hulk." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Puhvri kasutamise hulk." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Puhvrisse lisatud päringute hulk." -#: server_status.php:1408 +#: 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 " @@ -10776,7 +10818,7 @@ msgstr "" "puhver kasutab hiljutise kasutamise (LRU) strateegiat, et otsustada, milline " "päring puhvrist kustutada." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10784,19 +10826,19 @@ msgstr "" "Puhverdamata päringute hulk (pole puhverdatav või ei puhverdatud " "query_cache_type sätte tõttu)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Puhvris registreeritud päringute hulk." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Päringu puhvris olevate plokkide koguhulk." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Töökindla paljundamise staatus (pole veel kasutusele võetud)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10804,11 +10846,11 @@ msgstr "" "Indekseid mittekasutatavate liitmiste hulk. Kui see väärtus ei ole 0, siis " "peaksid hoolikalt kontrollima oma tabelite indekseid." -#: server_status.php:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10817,7 +10859,7 @@ msgstr "" "rida. (Kui see ei ole 0, siis peaksid hoolikalt kontrollima oma tabelite " "indekseid.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10825,15 +10867,15 @@ msgstr "" "Esimeses tabelis piirkonda kasutanud liitmiste hulk. (Tavaliselt pole " "kriitiline, kui see on suur.)" -#: server_status.php:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10841,24 +10883,24 @@ msgstr "" "Paljundamisel alluva SQL lõimu poolt ülekannete kordamise hulk kokku (alates " "käivitusest)." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 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:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -10868,23 +10910,23 @@ msgstr "" "suur, siis peaksid kaaluma süsteemi muutuja sort_buffer_size väärtuse " "vähendamist." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Piirkondlike sorteerimiste hulk." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Sorteeritud ridade hulk." -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "Tabeli kontrollimisel tehtud sorteerimiste hulk." -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "Koheselt teostatud tabeli lukustamiste hulk." -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10896,7 +10938,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:1429 +#: server_status.php:1428 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 " @@ -10906,11 +10948,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Hetkel avatud ühenduste hulk." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10921,47 +10963,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:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "Lõimu puhvri kasutushulk (arvutatud väärtus)" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Lõimude hulk, mis ei ole jõude." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Alusta jälgimist" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Juhendid/Paigaldus" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Diagrammide korrastamine/muutmine on valmis" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Lisa diagramm" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Korrasta/muuda diagramme" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Uuendamise sagedus" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Diagrammi veerud" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Diagrammi korrastus" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -10969,15 +11011,15 @@ msgstr "" "Diagrammide korrastust säilitatakse veebilehitseja kohalikus salvestuskohas. " "Kui paigaldamine on keeruline, võid seda eksportida." -#: server_status.php:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Lähtesta vaikimisi väärtustele" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Jälgija juhendid" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10991,7 +11033,7 @@ msgstr "" "general_log. Pane siiski tähele, et general_log toodab palju andmeid ja " "suurendab serveri laadimisaega kuni 15%" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11002,11 +11044,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:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Kasuta jälgijat:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11016,7 +11058,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:1655 +#: server_status.php:1654 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 " @@ -11028,11 +11070,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:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Palun pane tähele:" -#: server_status.php:1664 +#: server_status.php:1663 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,197 +11086,197 @@ 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:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Ettemääratud diagramm" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Staatuse muutuja(d)" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Vali seeria:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Tavaliselt jälgitav" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "või tipi muutuja nimi:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Näita eristatava väärtusena" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Kasuta jagajat" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Lisa andmete väärtustele ühikud" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Lisa see seeria" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Puhasta seeria" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Seeriad diagrammis:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Logi statistika" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Valitud ajavahemik:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Otsi ainult SELECT,INSERT,UPDATE ja DELETE käske" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Parema grupeerimise saavutamiseks kustuta INSERT käskudest muutuja andmed" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "Vali logi, millest statistikat luua." -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Tulemused on grupeeritud päringu teksti alusel." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Päringu analüüsija" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d sekund" msgstr[1] "%d sekundit" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minutit" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Ei saanud lähtekohaga ühendada" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Ei saanud sihtkohaga ühendada" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' andmebaasi pole olemas." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Struktuuri sünkroniseerimine" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Andmete sünkroniseerimine" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "puudub" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Struktuuri erinevus" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Andmete erinevus" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Lisa veerg(usid)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Kustuta veerg(usid)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Muuda veergu(sid)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Kustuta indeks(eid)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Rakenda indeks(eid)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Uuenda rida/ridu" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Lisa rida/ridu" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Kas soovid sihttabelitest kustutada kõik eelmised read?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Rakenda valitud muudatused" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Sünkroniseeri andmebaasid" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Valitud sihttabelid on sünkroniseeritud lähtetabelitega." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Sihtandmebaas on sünkroniseeritud lähteandmebaasiga" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Teostatud päringud" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Sisesta käsitsi" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Praegune ühendus" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Seadistus: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Sokkel" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11242,19 +11284,19 @@ msgstr "" "Sihtandmebaas sünkroniseeritakse täielikult lähteandmebaasiga. " "Lähteandmebaasi ei muudeta." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Muutuja seadmine ebaõnnestus" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Serveri muutujad ja sätted" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Seansi väärtus" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Globaalne väärtus" @@ -11587,153 +11629,153 @@ msgstr "Võti peaks sisaldama tähti, numbreid [em]ja[/em] erilisi sümboleid." msgid "Wrong data" msgstr "Valed andmed" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" järjehoidjat kasutatakse vaikimisi sirvimise päringuna." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Kas tõesti tahad käivitada selle päringu?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Näitan PHP koodina" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Valideeritud SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL tulemus" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Koostanud" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleemid `%s` tabeli indeksitega" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Nimi" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s tabel on edukalt muudetud" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "Veerud on edukalt liigutatud." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Lint" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Tulp" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Joon" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Sujuvjoon" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Sektor" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Jaotatud ühe tulbana" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Diagrammi pealkiri" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "X-telg:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Seeria:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "X-telje nimi:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "X väärtused" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Y-telje nimi:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Y väärtused" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "%s tabel on juba olemas!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "%1$s tabel on loodud." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Vaata tabeli tõmmist (skeemi)" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Näita GIS visualiseerimist" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Laius" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Kõrgus" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Nime veerg" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Puudub --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Ruumiline veerg" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Joonista uuesti" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Salvesta failina" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Faili nimi" @@ -11749,28 +11791,28 @@ msgstr "Ei saa muuta indeksi nimeks PRIMARY!" msgid "No index parts defined!" msgstr "Indeksi osasid pole defineeritud!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Lisa indeks" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Muuda indeksit" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Indeksi nimi:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" peab olema ainult primaarvõtme nimi!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Indeksi tüüp:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Lisa indeksisse  %s veerg(u)" @@ -11793,253 +11835,253 @@ msgstr "%s tabel liigutati %s andmebaasi." msgid "Table %s has been copied to %s." msgstr "%s tabel kopeeriti %s andmebaasi." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Tabeli nimi on tühi!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Muuda tabelit, sorteeri" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(üksikult)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Liiguta tabel kohta (andmebaas.tabel):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Tabeli valikud" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Muuda tabeli nimeks" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopeeri tabel kohta (andmebaas.tabel):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Mine kopeeritud tabelisse" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Tabeli hooldus" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmendi tabel" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "%s tabel on puhastatud" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Puhasta tabel (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Kustuta andmed või tabel" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Tühjenda tabel (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Kustuta tabel (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Partitsiooni hooldus" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "%s partitsioon" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analüüsi" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Kontrolli" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimeeri" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Loo uuesti" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Paranda" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Eemalda partitsioneerimine" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Kontrolli pärinevust:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Tabelite näitamine" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Ruumi kasutus" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efektiivne" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Rea statistika" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "staatiline" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dünaamiline" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Rea pikkus" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Rea laius" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Järgmine automaatne indeks" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Viga võõrvõtme loomisel kohas %1$s (kontrolli andmete tüüpe)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Sisemine seos" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Sisemine seos on mittevajalik, kui vastav FOREIGN KEY seos on juba olemas." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Võõrvõtme piirang" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Ruumiline" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Erista väärtusi" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Lisa primaarvõti" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Lisa ainulaadne indeks" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Lisa SPATIAL indeks" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Lisa FULLTEXT indeks" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Puudub" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "%s veerg on kustutatud" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Primaarvõti on lisatud kohas %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Indeks on lisatud kohas %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Näita rohkem tegevusi" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "Liiguta veergusid" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "Veergusid saad liigutada nende lohistamisega üles ja alla." -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Muuda vaadet" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Seose vaade" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Soovita tabeli struktuuri" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Lisa veerg" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Tabeli lõppu" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Tabeli algusesse" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Peale %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Loo indeks  %s veergudesse" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "partitsioneeritud" @@ -12190,68 +12232,37 @@ msgstr "Jälgi nende andmete töötluse käske:" msgid "Create version" msgstr "Loo versioon" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Teosta kahe erineva veergu jaoks \"päring näite alusel\" (metamärk: \"%\")" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Täiendav otsingu kriteerium" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Kasuta seda veergu iga punkti nimetamiseks" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Suurim ridade hulk diagrammis" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Sirvi/Muuda punkte" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Kuidas kasutada" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Lähtesta" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Hangi rohkem välimusi!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Saadavalolevad MIME-tüübid" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME-tüübid kursiivis ei oma eraldi transformatsiooni funktsiooni" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Saadavalolevad transformatsioonid" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Kirjeldus" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Sul pole siinviibimiseks piisavalt õigusi!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profiil on uuendatud." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "VIEW nimi" diff --git a/po/eu.po b/po/eu.po index 866cea477b..68eb99c922 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-02 12:41+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 0.10\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Dena erakutsi" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Orri zenbakia:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 #, fuzzy msgid "" "The target browser window could not be updated. Maybe you have closed the " @@ -39,59 +39,59 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Joan" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 #, fuzzy msgid "Keyname" msgstr "Giltzaren izena" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Deskribapena" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Erabili balio hau" @@ -109,88 +109,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s datu-basea sortua izan da." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Datu-basearen iruzkina: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Taularen iruzkinak" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Zutabea" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Nulua" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Lehenetsia" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Esteka:" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Iruzkinak" @@ -199,14 +200,14 @@ msgstr "Iruzkinak" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ez" @@ -219,123 +220,123 @@ msgstr "Ez" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Bai" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Ikusi datu-basearen iraulketa (eskema)" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Ez da taularik aurkitu datu-basean." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Dena hautatu" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 #, fuzzy msgid "Unselect All" msgstr "Desautatu dena" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Datu-basearen izena hutsik dago!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "%s datu-basea %s-(e)ra berrizendatua izan da" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "%s datu-basea hona kopiatua izan da: %s." -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Datu-basea berrizendatu izen honetara" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Datu-basea kendu" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "%s datu-basea ezabatua izan da." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Datu-basea ezabatu (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Datu-basea kopiatu" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Egitura soilik" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Egitura eta datuak" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Datuak soilik" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "DATU-BASEA SORTU kopiatu aurretik" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "%s gehitu" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Gehitu AUTO_INCREMENT balioa" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Murrizketak gehitu" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Kopiatutako datu-basea hautatu" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Ordenamendua" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -344,59 +345,59 @@ msgstr "" "Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . " "Zergatia jakiteko egizu klik %shemen%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Aldatu edo esportatu erlazio-eskema" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Taula" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Errenkadak" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Tamaina" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "lanean" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Sortzea" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Azken eguneraketa" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Azken egiaztapena" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -407,117 +408,117 @@ msgstr[1] "%s taulak" msgid "You have to choose at least one column to display" msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Aldatu %serakitzaile bisualrera%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Ordenatu" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Goranzko" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Beherantz" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Erakutsi" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Irizpidea" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Txertatu" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Eta" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Ezabatu" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Edo" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Aldatu" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Gehitu/ezabatu irizpide-errenkada" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Gehitu/ezabatu errenkadak" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Kontsulta eguneratu" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Taulak erabili" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-kontsulta %s datu-basean:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Kontsulta bidali" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Sarbidea ukatua" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "hitz hauetariko bat gutxienez" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "hitz guztiak" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "esaldi zehatza" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "adierazpen erregular moduan" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Bilaketaren emaitzak: \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -526,93 +527,93 @@ msgid_plural "%1$s matches inside table %2$s" msgstr[0] "%s emaitza %s taulan" msgstr[1] "%s emaitzak %s taulan" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "%s taulako aukeratuak ezabatu" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Guztira: %s emaitza" msgstr[1] "Guztira: %s emaitza" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Datu-basean bilatu" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Bilaketa egiteko hitza(k) edo balioa(k) (komodina: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Aurkitu:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Hitzak zuriune karakterrarekin berezituta daude (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Taulen barnean:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Zutabearen barnean:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Ez da taularik aurkitu datu-basean" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "ezezaguna" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "%s taula hustu egin da" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "%s Ikuspegia ezabatua izan da" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "%s taula ezabatu egin da" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Jarraipena aktibatuta dago." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Jarraipena ez dago aktibatuta." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -621,185 +622,186 @@ msgstr "" "Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation" "%s erreferentzia egin." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Ihardetsi" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Gehiketa" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s da MySQL zerbitzarian lehenetsitako biltegiratzeko mota." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Ikurdunak:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Guztiak egiaztatu" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esportatu" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Hutsik" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Ezabatu" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Taula egiaztatu" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Taula optimizatu" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Taula konpondu" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Taula aztertu" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Gehitu aurrizkia taulari" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Taularen aurrizkia aldatu" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Taula aurrizkiarekin kopiatu" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Datu-hiztegia" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Taulak jarraipenarekin" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Datu-basea" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Azken bertsioa" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Sortua" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Eguneratua" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Egoera" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Ekintza" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ezabatu taula honetako jarraipen datuak" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "aktibo" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "ez aktibo" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Bertsioak" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Jarraipen informea" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Egitura kaptura" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Jarraipen gabeko taulak" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Taularen jarraipena egin" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Datu-base egunkaria" @@ -811,16 +813,16 @@ msgstr "Mota okerra!" msgid "Selected export type has to be saved in file!" msgstr "Aukeratutako esportatze formatuak fitxategian gorde behar da!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Parametro okerrak!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ez dago leku-disko nahikoa %s fitxategia gordetzeko." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -828,12 +830,12 @@ msgstr "" "%s fitxategia aurretik bazegoen zerbitzarian, izena aldatu edo aukeratu " "gainean idazteko hobespena." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web-zerbitzariak dio %s fitxategia gordetzeko baimenik ez duzula." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Iraulketa %s fitxategian gorde da." @@ -842,176 +844,176 @@ msgstr "Iraulketa %s fitxategian gorde da." msgid "Invalid export type" msgstr "Esportatze mota baliogabea" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" zutaberako balioa" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Erabili OpenStreetMaps Oinarri geruza moduan" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Puntu" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "%d puntua" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Puntua gehitu" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Lerro kateak" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Kanpo eraztuna" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Barne eraztuna" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Lerro kate berria gehitu" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Gehitu barne eraztuna" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Poligono" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Gehitu poligonoa" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Gehitu geometria" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Irteera" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Erakutsi laster-marka" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Gordetako kontsulta ezabatu da." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Ezinezkoa fitxategia irakurtzea" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "%s laster-marka sortu da" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Inportatzea zuzen burutu da, %d kontsulta exekutatuta_." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Itzuli" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin askoz erabilerraza da frame-ak onartzen duen nabigatzaile " "batekin." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" sententziak ezgaituta daude." @@ -1021,7 +1023,7 @@ msgstr "\"DROP DATABASE\" sententziak ezgaituta daude." msgid "Do you really want to execute \"%s\"?" msgstr "Benetan nahi al duzu " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Datu-base osoa SUNTSITZERA zoaz!" @@ -1065,7 +1067,7 @@ msgstr "Indizea" msgid "Edit Index" msgstr "Editatu hurrengo lerroa" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -1084,16 +1086,16 @@ msgstr "Zerbitzariaren izena hutsik dago!" msgid "The user name is empty!" msgstr "Erabiltzailearen izena hutsik dago!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Pasahitza hutsik dago!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Pasahitzek ez dute bat egiten!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Gehitu erabiltzailea" @@ -1110,23 +1112,24 @@ msgstr "Hautatutako erabiltzaileak baztertu" msgid "Close" msgstr "Itxi" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Editatu" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Zuzeneko trafikoaren grafika" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "SQL kontsulta" @@ -1138,24 +1141,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Gutira" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Beste" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1177,7 +1180,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Prozesuak" @@ -1196,7 +1199,7 @@ msgstr "Galdera azken freskatzetik" msgid "Questions (executed statements by the server)" msgstr "Galdera (zerbitzariak exekutatuak)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Kontsulta estatistikak" @@ -1241,14 +1244,14 @@ msgid "System swap" msgstr "Sistemaren swap-a" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1306,32 +1309,32 @@ msgstr "" msgid "Bytes received" msgstr "Jasota" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Konexioak" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Byte" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1348,11 +1351,11 @@ msgstr "%s taula" msgid "Questions" msgstr "Eragiketak" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Trafikoa" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1375,11 +1378,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Batez" @@ -1479,7 +1482,7 @@ msgstr "Erlazioen ezaaugarri orokorrak" msgid "Current settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1567,7 +1570,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Denbora" @@ -1674,10 +1677,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Esportatu" @@ -1734,9 +1737,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1751,11 +1754,11 @@ msgstr "Lokal" msgid "Processing Request" msgstr "Prozesuak" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Ez dago datu-baserik aukeratuta." @@ -1767,9 +1770,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "Zuzena" @@ -1822,17 +1825,17 @@ msgstr "Indizeak" msgid "Show indexes" msgstr "Sareta erakutsi" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Gaituta" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1870,7 +1873,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET editorea" @@ -1911,8 +1914,8 @@ msgstr "SQL kontsulta" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Aldatu" @@ -1920,18 +1923,18 @@ msgstr "Aldatu" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Gorde" @@ -1945,7 +1948,7 @@ msgstr "SQL kontsulta" msgid "Show search criteria" msgstr "SQL kontsulta" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1997,12 +2000,12 @@ msgstr "SQL emaitza" msgid "Data point content" msgstr "Edukinen taula" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ezikusi" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2024,7 +2027,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2118,7 +2121,7 @@ msgstr "Egilea:" msgid "Change Password" msgstr "Pasahitza aldatu" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2232,27 +2235,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2260,37 +2263,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Abe" @@ -2339,32 +2342,32 @@ msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Lar" @@ -2497,16 +2500,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "segunduko" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "minutuko" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "orduko" @@ -2527,70 +2530,298 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Gehitu/ezabatu irizpide-zutabea" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Hasi" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Aurrekoa" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Hurrengoa" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Amaiera" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Lar" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows per page" +msgid "Number of rows" +msgstr "Errenkada kopurua orriko" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Astel" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontal" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontal (goiburukoak biratuta)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "bertikal" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Exekutatu aurretik aukeratutako kontsulta" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Gakoaren arabera ordenatu" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "Eragiketak" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Testu partzialak" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Testu osoak" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "Erlazio-eskema" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Erlazio-eskema" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Nabigatzailearen eraldaketa" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Hil" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "kontsultan" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Errenkadak erakusten" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "guztira" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Kontsulta exekutatzeko denbora %01.4f seg" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Inprimatzeko ikuspena (testu osoak)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "PDF eskema erakutsi" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Zerbitzariaren bertsioa" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Esteka aurkitugabea" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Puntu honetarako cookie-ek gaituta egon behar dute." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indizeak" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Bakarra" @@ -2603,8 +2834,8 @@ msgstr "" msgid "Cardinality" msgstr "Kardinalitatea" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2626,131 +2857,131 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Datu-baseak" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Zerbitzaria" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Egitura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Txertatu" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Eragiketak" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Kontsulta" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Pribilegioak" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Erabiltzailea" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Binarioa " -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Aldagaiak" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Karaktere-multzoa" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Errorea" @@ -2775,7 +3006,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2866,16 +3097,108 @@ 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 +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 +#, 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 +msgid "Value" +msgstr "balioa" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Bilatu" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Txertatu" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Eremuak hautatu (bat gutxienez):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Bilatzeko baldintzak txertatu (\"where\" klausularen gorputza):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Errenkada kopurua orriko" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Ordena erakutsi:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "SQL kontsulta" + +#: 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 "\"Adibide moduan\" kontsulta bat egin (komodina: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "\"Adibide moduan\" kontsulta bat egin (komodina: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Reset egin" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2894,7 +3217,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3191,20 +3514,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Ongietorriak %s(e)ra" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3220,60 +3543,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Puntu honetarako cookie-ek gaituta egon behar dute." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Hasi saioa" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Zerbitzaria" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Erabiltzaile-izena:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Pasahitza:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Zerbitzariaren hautaketa" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Puntu honetarako cookie-ek gaituta egon behar dute." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Ezinezkoa MySql zerbitzarian saioa hastea" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Erabiltzaile-izena/pasahitza okerra. Atzipena ukatuta." @@ -3305,7 +3622,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Taulak" @@ -3317,13 +3634,13 @@ msgstr "Taulak" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Datuak" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Arazteko hondakina" @@ -3350,30 +3667,22 @@ msgstr ""%s" datu-basearen pribilegioak egiaztatu." msgid "Check Privileges" msgstr "Pribilegioak egiaztatu" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3385,213 +3694,191 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktibak zure konfigurazio fitxategian " "zehaztuta behar du egon!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentazioa" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL kontsulta" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL-ek zera dio: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL-a azaldu" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "SQL-ren azalpena saltatu" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP Koderik gabe" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP kodea sortu" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL-ren balidapena saltatu" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL balidatu" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Iga" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d, %H:%M:%S" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s egun, %s ordu, %s minutu eta %s segundu" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Hasi" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Aurrekoa" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Hurrengoa" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Amaiera" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr ""%s" datu-basera joan." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Inprimatu" @@ -3623,8 +3910,8 @@ msgid "Closed" msgstr "Itxi gabeko komatxoak" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Ezgaituta" @@ -3776,9 +4063,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Reset egin" @@ -3987,10 +4274,6 @@ msgstr "Taularen egituraren proposamena " msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4049,7 +4332,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Bidali" @@ -4059,7 +4342,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formatoa" @@ -4179,7 +4462,7 @@ msgid "MIME type" msgstr "MIME-mota" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Erlazioak" @@ -5707,9 +5990,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Pasahitza" @@ -5981,30 +6264,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Pasahitza aldatu" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Pasahitzik ez" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Berridatzi" @@ -6027,13 +6304,13 @@ msgstr "Datu-base berri bat sortu" msgid "Create" msgstr "Sortu" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Pribilegiorik gabe" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "Orri berri bat sortu" @@ -6041,9 +6318,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Izena" @@ -6229,25 +6506,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Zerbitzariaren bertsioa" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Zerbitzariaren bertsioa" @@ -6358,408 +6635,241 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Gehitu/ezabatu irizpide-zutabea" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Lar" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of rows" -msgstr "Errenkada kopurua orriko" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Astel" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontal" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontal (goiburukoak biratuta)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "bertikal" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Exekutatu aurretik aukeratutako kontsulta" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Gakoaren arabera ordenatu" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "Eragiketak" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Testu partzialak" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Testu osoak" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "Erlazio-eskema" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Erlazio-eskema" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Nabigatzailearen eraldaketa" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Errenkada ezabatua izan da" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Hil" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "kontsultan" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Errenkadak erakusten" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "guztira" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Kontsulta exekutatzeko denbora %01.4f seg" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Inprimatzeko ikuspena (testu osoak)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "PDF eskema erakutsi" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Zerbitzariaren bertsioa" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Esteka aurkitugabea" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 #, fuzzy msgid "Version information" msgstr "Saioa hasteko informazioa" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 #, fuzzy msgid "Data files" msgstr "Datuak soilik" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB Egoera" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 #, fuzzy msgid "Pages to be flushed" msgstr "%s taularen cachea hustu egin da" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6767,48 +6877,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6816,20 +6926,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Erlazioak" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6889,15 +6999,15 @@ msgstr "Taula honen datuak irauli" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Bidalita" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6966,14 +7076,14 @@ msgstr "MIME-mota erabilgarriak" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Zerbitzaria" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Sortzeko denbora" @@ -7171,21 +7281,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7280,12 +7381,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Zutabe izenak" @@ -7350,95 +7451,77 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funtzioak" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binarioa" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binarioa - ez editatu" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Txertatu" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "eta orduan" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Txertatu errenkada berri batean" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Itzuli" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Erregistro berria gehitu" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Egin atzera orri honetara" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Editatu hurrengo lerroa" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "balioa" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7455,36 +7538,36 @@ msgstr "Batez" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Osti" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Bidali" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Benetan nahi al duzu " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Aldaketarik ez" @@ -7700,94 +7783,94 @@ msgstr "" msgid "This format has no options" msgstr "Formato honek ez du aukerarik" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Okerra" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "Zuzena" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Gaituta" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Erlazioen ezaaugarri orokorrak" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Eginbideak erakutsi" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF-en sorrera" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Zutabearen iruzkinak erakusten" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Nabigatzailearen eraldaketa" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Mesedez, Dokumentazioa begiratu zure zutabeen iruzkinen Taula nola " "eguneratzeko" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Kontsulta gogokoetan gordea" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-historia" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "Deskribapenik ez" @@ -7795,7 +7878,7 @@ msgstr "Deskribapenik ez" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7807,13 +7890,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Erabiltzaile-izena" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Ordenatu" @@ -7827,7 +7910,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Aldagaia" @@ -7842,38 +7925,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Edozein erabiltzaile" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Testu-eremua erabili" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Edozein ostalari" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Host hau" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Host taula erabili" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7887,7 +7970,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7919,101 +8002,102 @@ msgstr "%s taula ezabatu egin da" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Bidalita" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prozesuak" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy msgid "Event name" msgstr "Esportazio mota" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 #, fuzzy msgid "Event type" msgstr "Esportazio mota" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Aldatu" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Exekutatu aurretik aukeratutako kontsulta" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Egoera" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Amaiera" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "\"Insert\"ak osatu" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8044,7 +8128,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -8064,116 +8148,116 @@ msgstr "%s taula ezabatu egin da" msgid "Routine %1$s has been created." msgstr "%s taula ezabatu egin da" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Zutabe izenak" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Sortzea" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Luzera/Balioak*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy msgid "Remove last parameter" msgstr "Taula berrizendatu izen honetara: " -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Luzera/Balioak*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Taularen hobespenak" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Kontsulta mota" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8192,41 +8276,41 @@ msgstr "%s taula ezabatu egin da" msgid "Trigger %1$s has been created." msgstr "%s taula ezabatu egin da" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Erabiltzaile berria gehitu" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "Erabiltzaile-izena" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Denbora" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8327,7 +8411,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8337,7 +8421,7 @@ msgstr "\"%s\" taula ez da existitzen!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8345,7 +8429,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Mesedez, %s taularentzako koordinatuak konfiguratu" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8357,27 +8441,27 @@ msgstr "\"%s\" datu-basearen eskema- Orria %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Erlazio-eskema" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Edukinen taula" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atributuak" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8497,7 +8581,7 @@ msgstr "" msgid "Current Server" msgstr "Zerbitzaria" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Datu-basean bilatu" @@ -8516,7 +8600,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Datu-basean bilatu" @@ -8536,7 +8620,7 @@ msgstr "SQL kontsulta(k) exekutatu %s datu-basean" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8547,11 +8631,11 @@ msgstr "" msgid "Columns" msgstr "Zutabe izenak" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri" @@ -8648,7 +8732,7 @@ msgstr "" "beharrezkoak diren php luzapenak instalatu dituzun %sdokumentazioan%s " "azaltzen den moduan." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8682,8 +8766,8 @@ msgstr "" "edota alderantzikaturiko barrarik gabe, formato hau erabiliz: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indizea" @@ -8737,13 +8821,13 @@ msgstr "Batez" msgid "As defined:" msgstr "Honela definitua:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Lehen mailakoa" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Testu osoa" @@ -8757,20 +8841,20 @@ msgstr "" msgid "after %s" msgstr "%s(a)ren ondoren" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, 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:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8778,46 +8862,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Bilatu" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Eremuak hautatu (bat gutxienez):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Bilatzeko baldintzak txertatu (\"where\" klausularen gorputza):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Errenkada kopurua orriko" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Ordena erakutsi:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "\"Adibide moduan\" kontsulta bat egin (komodina: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8980,13 +9024,13 @@ msgstr "" msgid "Manage your settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Aldaketak gorde dira" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8997,7 +9041,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9026,7 +9070,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9052,9 +9096,9 @@ msgstr "Zerbitzariaren bertsioa" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Erabiltzailea" @@ -9181,146 +9225,146 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Datu-baserik ez" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Taularen \"Order By\" aldatu" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Taularen \"Order By\" aldatu" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Orri berri bat sortu" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Datu-base bat hautatu mesedez" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Esteka angularrak" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Traditional Chinese" msgid "Toggle relation lines" msgstr "Txinera tradizionala" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Kontsulta bidali" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "Dena erakutsi" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "Erlazioen ikuspegia" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Esportatu" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "kontsultan" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Taula berrizendatu izen honetara: " -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Erabiltzaile-izena" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Sortu" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9335,60 +9379,60 @@ msgstr "%s taula ezabatu egin da" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Erabilpena" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Fitxategiak inportatu" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Indize berri bat sortu" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Erabiltzaile-izena" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 #, fuzzy msgid "Internal relation added" msgstr "Barne-erlazioak" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 #, fuzzy msgid "Relation deleted" msgstr "Erlazioen ikuspegia" @@ -9401,89 +9445,89 @@ msgstr "" msgid "Modifications have been saved" msgstr "Aldaketak gorde dira" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Fitxategiak inportatu" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Fitxategiak inportatu" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Guztiak" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s taula ez da aurkitu edo ez da definitu hemen: %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9493,18 +9537,18 @@ msgstr "\"%s\" taula ez da existitzen!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "Eremuak" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Erakutsitako kontultak moztu" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Kontsulta osoak erakutsi" @@ -9520,7 +9564,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 #, fuzzy msgid "Information" msgstr "Saioa hasteko informazioa" @@ -9529,7 +9573,7 @@ msgstr "Saioa hasteko informazioa" msgid "Character Sets and Collations" msgstr "Karaktere-multzoak eta ordenamenduak" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9537,24 +9581,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s datu-base arrakastaz ezabatu dira." msgstr[1] "%s datu-base arrakastaz ezabatu dira." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Datu-baseen estatistikak" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Estatistikak gaitu" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9566,164 +9610,164 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Ikusi datu-baseen iraulketa (eskema)" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Hasi" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "PHP Bertsioa" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Ezgaituta" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Pribilegio guztiak, GRANT(baimendu) izanezik, dauzka." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Uneko taulen egiturak aldatzea baimentzen du." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Datu-base eta taula berriak sortzea baimentzen du." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 #, fuzzy msgid "Allows creating stored routines." msgstr "Taula berriak sortzea baimentzen du." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Taula berriak sortzea baimentzen du." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Aldi baterako taulak sortzea baimentzen du." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 #, fuzzy msgid "Allows creating new views." msgstr "Taula berriak sortzea baimentzen du." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Datuak ezabatzea baimentzen du." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Datu-base eta taulak ezabatzea baimentzen du." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Taulak ezabatzea baimentzen du." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" "Datuak fitxategietatik inportatzea eta fitxategietara esportatzea baimentzen " "du." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Erabiltzaileak eta pribilegioak gehitzea baimentzen du pribilegioen taula " "berkargatu gabe." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Datuak txertatu eta ordezkatzea baimentzen du." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Momentuko harian taulak blokeatzea baimentzen du." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Erabiltzaileak orduko zerbitzarira bidali dezakeen kontsulta kopurua " "mugatzen du." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9731,62 +9775,62 @@ msgstr "" "Erabiltzaileak orduko exekuta dezakeen taula edo datu-baserik alda dezaketen " "komando kopurua mugatzen du." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Ez du eraginik MySQL bertsio honetan." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Zerbitzariaren hobespenak berkargatu eta beraren cacheak hustea baimentzen " "du." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Erabiltzailea baimentzen du morroiak / nagusiak non dauden galdetzeko." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Erreplikazio morroientzat beharrezkoa." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Datuak irakurtzea baimentzen du." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Datu-base zenrrenda osorako sarrera ahalbidetzen du." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Zerbitzaria amatatzea baimentzen du." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9796,174 +9840,174 @@ msgstr "" "Aldagai orokorrak zehaztu edota beste erabiltzaileen hariak hiltzeko " "bezalako kudeaketa-eragiketa gehienentzat beharrezkoa da." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Indizeak sortu eta ezabatzea baimentzen du." -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Datuak aldatzea baimentzen du." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Pribilegiorik ez." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Batez" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Taularen pribilegio espezifikoak" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Oharra: MySQL-ren pribilegioen izenak ingelesez adierazita daude" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Kudeaketa" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Pribilegio orokorrak" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Datu-basearen pribilegio espezifikoak" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Baliabideen mugak" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Oharra: Aukera hauek zerora ezarriz gero muga kentzen da." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Saioa hasteko informazioa" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Pasahitza ez aldatu" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Ez da erabiltzailerik aurkitu." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Erabiltzaile berria gehitu duzu." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "%s-aren pribilegioak eguneratu dituzu." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zuk %s-(r)en pribilegioak ezeztatu dituzu" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-arentzako pasahitza arrakastaz aldatua izan da." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "%s ezabatzen" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Pribilegioak berkargatzen" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Editatu Pribilegioak" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Ezeztatu" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Esportatu" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Edozein" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Pribilegioak" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Pribilegioak" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Erabiltzailearen info orokorra" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Baimendu" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Hautatutako erabiltzaileak baztertu" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9977,49 +10021,49 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Zutabearen pribilegio espezifikoak" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Pribilegioak gehitu datu-base honetan" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Pribilegioak gehitu taula honetan" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... mantendu aurrekoa." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... zaharra ezabatu erabiltzaileen tauletatik." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10027,93 +10071,93 @@ msgstr "" " ... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu " "pribilegioak." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" datu-basearen pribilegioak egiaztatu." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr ""%s"-(e)ra sarbidea duten erabiltzaileak" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "orokorra" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "Datubasearentzat espezifikoa" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "komodina" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy msgid "User has been added." msgstr "%s eremua ezabatu da" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Pribilegioak arrakastaz berkargatu dira." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10122,123 +10166,123 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Datu-base bat hautatu mesedez" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Testu osoa" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Egitura soilik" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Egitura soilik" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "%s haria arrakastaz ezabatu da." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10246,149 +10290,149 @@ msgstr "" "phpMyAdmin-ek ezin izan du %s haria deuseztatu. Seguruena aurretik itxia " "izatea." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 #, fuzzy msgid "Query cache" msgstr "Kontsulta mota" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 #, fuzzy msgid "Delayed inserts" msgstr "Use delayed inserts" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 #, fuzzy msgid "Show open tables" msgstr "Taulak erakutsi" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 #, fuzzy msgid "Runtime Information" msgstr "Saioa hasteko informazioa" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy msgid "Refresh rate: " msgstr "Egilea:" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Pasahitza ez aldatu" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy msgid "Show only alert values" msgstr "Taulak erakutsi" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy msgid "Show unformatted values" msgstr "Taulak erakutsi" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Erlazioak" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Kontsulta mota" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "Funtzioak" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10396,118 +10440,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Sententziak" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Jasota" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Bidalita" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Erratutako saiakerak" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Deuseztatua" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Komandoa" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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,78 +10559,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10594,7 +10638,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10602,42 +10646,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10645,33 +10689,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10680,243 +10724,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Fitxategiaren karaktereen kodeketa:" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10924,99 +10968,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11024,18 +11068,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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,69 +11087,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Kontsulta mota" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Lar" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Gehitu %s zutabe" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Egilea:" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11114,7 +11158,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11122,18 +11166,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11141,11 +11185,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11153,89 +11197,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy msgid "Preset chart" msgstr "Taula berrizendatu izen honetara: " -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Taulak hautatu" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Erabiltzaile berria gehitu" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "SQL kontsulta" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Errenkadaren estatistikak" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Taulak hautatu" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Kontsulta mota" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11243,7 +11287,7 @@ msgid_plural "%d seconds" msgstr[0] "segunduko" msgstr[1] "segunduko" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11251,131 +11295,131 @@ msgid_plural "%d minutes" msgstr[0] "lanean" msgstr[1] "lanean" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Aplikatu aukeratutako aldaketak" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL kontsulta" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Konexioak" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Zerbitzariaren aldagai eta ezarpenak" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Saioaren balioa" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Balio orokorra" @@ -11667,178 +11711,178 @@ msgstr "" msgid "Wrong data" msgstr "Datu-baserik ez" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Benetan nahi al duzu " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL balidatu" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL emaitza" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Egilea:" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Etiketa" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Zutabea" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Fitxategiak inportatu" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "SQL kontsulta" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "balioa" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "balioa" -#: tbl_create.php:31 +#: tbl_create.php:30 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "%s erabiltzailea badago lehendik ere!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "%s taula ezabatu egin da" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Ikusi taularen iraulketa (eskema)" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Gutira" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Bidali" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -11856,32 +11900,32 @@ msgstr "Ezinezkoa indizearen izena ¡PRIMARY! berrizendatzea" msgid "No index parts defined!" msgstr "Ez da indiziaren zatiak definitu!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Print view" msgid "Edit index" msgstr "Inprimatzeko ikuspegia" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Indizearen izena :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\"-k, soilik, lehen mailako gako baten izena izan behar du!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Indize mota :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr " %s  zutabe indizean gehituta" @@ -11904,278 +11948,278 @@ msgstr "%s taula hona mugitu da: %s." msgid "Table %s has been copied to %s." msgstr "%s taula hona kopiatua izan da: %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Taularen izena hutsik dago!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Taularen \"Order By\" aldatu" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(soilik)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Taula hona mugitu (datu-basea.taula):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Taularen hobespenak" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Taula berrizendatu izen honetara" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Taula hona kopiatu: (datu-base.taula):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Kopiatutako taulara aldatu" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Taularen mantenua" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "%s taularen cachea hustu egin da" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Taularen cachea hustu (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Taula honen datuak irauli" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Datu-baserik ez" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Taularen mantenua" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Aztertu" -#: tbl_operations.php:778 +#: tbl_operations.php:784 #, fuzzy msgid "Check" msgstr "Txekiera" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "Taula konpondu" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Erreferentzien integritatea egiaztatu:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Taulak erakutsi" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Erabilitako lekua" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Eraginkorra" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Errenkadaren estatistikak" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamikoa" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Errenkadaren luzera" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Errenkadaren tamaina" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Barne-erlazioak" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Session value" msgid "Distinct values" msgstr "Saioaren balioa" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Batez" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "%s taula ezabatu egin da" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Lehen mailako gakoa gehitu zaio %s-(r)i" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Indize bat gehitu gehitu zaio %s-(r)i" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "PHP informazioa erakutsi" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Gehitu %s zutabe" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Inprimatzeko ikuspegia" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Erlazioen ikuspegia" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Taularen egituraren proposamena" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Gehitu %s zutabe" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Taularen amaieran" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Taularen hasieran" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "%s(a)ren ondoren" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12334,72 +12378,39 @@ msgstr "" msgid "Create version" msgstr "Zerbitzariaren bertsioa" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "\"Adibide moduan\" kontsulta bat egin (komodina: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "SQL kontsulta" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Reset egin" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "MIME-mota erabilgarriak" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "Etzanez inprimaturiko MIME-motek ez dute eraldaketa-funtzio berezirik" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Eraldaketa erabilgarriak" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Deskribapena" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ez daukazu baimen nahikorik hemen orain egoteko!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profila eguneratua izan da." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/fa.po b/po/fa.po index 31576172ad..072fa94317 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: persian \n" @@ -14,79 +14,79 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "نمايش همه" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "شماره صفحه:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "تاييد" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Keyname" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "توضیحات" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "این مقدار را استفاده کنید" @@ -104,88 +104,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "پايگاه داده %1$s ایجاد شده است." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "توضيحات پایگاه داده: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "توضيحات جدول" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "ستون" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "خالي" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "پيش‌فرض" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "پيوند به" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "توضيحات" @@ -194,14 +195,14 @@ msgstr "توضيحات" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "خير" @@ -214,122 +215,122 @@ msgstr "خير" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "بلي" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "نمايش الگوي پايگاه داده" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "در اين پايگاه داده هيچ جدولي وجود ندارد ." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "انتخاب همه" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "عدم انتخاب همه" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "نام پایگاه داده وارد نشده‌ است!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "نام پایگاه داده %s به %s تغییر داده شد" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "پایگاه داده %s در %s کپی شد" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "تغییر نام پایگاه داده به" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "حذف پایگاه داده" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "پايگاه داده %s حذف گرديد." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "حذف پایگاه داده" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "کپی کردن پابگاه داده به" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "فقط ساختار" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "ساختار و داده‌ها" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "فقط داده‌ها" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "پیش از کپی پایگاه داده ایجاد شود" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "افزودن %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "مقدار افزایشی خودکار اضافه شود" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "اعمال محدودیت ها" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "تعویض به پایگاه داده ی کپی شده" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "مقایسه" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| "ditional features for working with linked tables have been ctivated. To d " @@ -341,59 +342,59 @@ msgstr "" "امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شده‌است . براي پيداكردن " "دليل آن %sاينجا%s را بزنيد ." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "ویرایش یا صدور نمای رابطه ای" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "جدول" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "سطرها" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "اندازه" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "in use" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "ایجاد" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "آخرین به روز رسانی" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -403,120 +404,120 @@ msgstr[0] "%s جدول" msgid "You have to choose at least one column to display" msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" msgstr "سازنده ی تصویری" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "ترتيب" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "صعودي" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "نزولي" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "نمايش" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "معيارها" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "و" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "يا" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "اصلاح" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "اضافه/حذف معيارها" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "اضافه/حذف ستون ها" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "به‌هنگام سازي پرس و جو" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "بكارگيري جدولها" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "پرس و جوي SQL از پايگاه داده %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "دسترسي مجاز نيست" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "حداقل يكي از كلمات" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "تمامي كلمات" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "عبارت كامل" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "بعنوان مبين منظم(as regular expression)" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "نتيجه جستجوي \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -524,96 +525,96 @@ msgid "%1$s match inside table %2$s" msgid_plural "%1$s matches inside table %2$s" msgstr[0] "%s عبارت همتا در جدول %s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "داده های همتا در جدول %s حذف شوند؟" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "جستجو در پايگاه‌داده" -#: db_search.php:292 +#: db_search.php:295 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "كلمه(ها) يا مقدار(ها) براي جستجو (wildcard: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "نوع جستجو :" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "كلمات با علامت فاصله (\" \") جدا مي‌شوند." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "در جدول(هاي) :" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "در جدول:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "در پايگاه داده هيچ جدولي یافت نشد." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "ناشناس" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s خالي شد" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "نمای %s حذف گرديد." -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s حذف گرديد" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "پیگردی فعال می باشد." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "پیگردی فعال نمی باشد." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -622,192 +623,193 @@ msgstr "" "در این نما حداقل این تعداد از سطرها موجود می باشد. لطفاً به %sنوشتار%s مراجعه " "نمایید." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "مجموع" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "موارد انتخاب‌شده :" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "انتخاب همه" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "صدور" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "نماي چاپ" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "خالي كردن" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "حذف" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "بررسي جدول" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "بهينه‌سازي جدول" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "مرمت جدول" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "تحليل جدول" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "جايگزيني داده‌هاي جدول با پرونده" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "جايگزيني داده‌هاي جدول با پرونده" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "فرهنگ داده‌ها" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "پايگاه داده" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "نسخه قبلی" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "ایجاد شده" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "به روز شده" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "عمل" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "فعال" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "غیر فعال" -#: db_tracking.php:135 +#: db_tracking.php:136 #, fuzzy msgid "Versions" msgstr "فارسي" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 #, fuzzy msgid "Structure snapshot" msgstr "فقط ساختار" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "بررسي جدول" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "پايگاه داده" @@ -822,29 +824,29 @@ msgstr "صدور" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Remove database" msgid "Bad parameters!" msgstr "حذف پایگاه داده" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -855,184 +857,184 @@ msgstr "" msgid "Invalid export type" msgstr "صدور" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy msgid "Add a point" msgstr "افزودن ستون جديد" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "خطوط منتهي به" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "افزودن يك كاربر جديد" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "افزودن يك كاربر جديد" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy msgid "Add a polygon" msgstr "افزودن ستون جديد" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy msgid "Add geometry" msgstr "افزودن يك كاربر جديد" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 #, fuzzy msgid "The bookmark has been deleted." msgstr "سطر حذف گرديد ." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "بازگشت" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "دستور \"DROP DATABASE\" غيرفعال مي‌باشد." @@ -1042,7 +1044,7 @@ msgstr "دستور \"DROP DATABASE\" غيرفعال مي‌باشد." msgid "Do you really want to execute \"%s\"?" msgstr "آيا مطمئن هستيد " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1086,7 +1088,7 @@ msgstr "فهرست" msgid "Edit Index" msgstr "ویرایش کردن ردیف بعدی" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format msgid "Add %d column(s) to index" msgstr "افزودن ستون جديد" @@ -1106,16 +1108,16 @@ msgstr "نام ميزبان خالي است!" msgid "The user name is empty!" msgstr "نام كاربر خالي است!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "اسم رمز خالي است!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "اسم رمزها مانند هم نمي‌باشد!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1136,25 +1138,26 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "ويرايش" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server version" msgid "Live traffic chart" msgstr "نسخه سرور" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "پرس و جوي SQL" @@ -1165,24 +1168,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "جمع كل" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1204,7 +1207,7 @@ msgstr "نسخه سرور" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "" @@ -1222,7 +1225,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "آمار سطرها" @@ -1270,14 +1273,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "مگا بايت" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "كيلوبايت" @@ -1333,32 +1336,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "بايت" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "گيگا بايت" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "ترابايت" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "پتا بايت" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "اگزا بايت" @@ -1375,11 +1378,11 @@ msgstr "%s جدول" msgid "Questions" msgstr "فارسي" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "Deleting %s" msgid "Settings" @@ -1403,11 +1406,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "خير" @@ -1506,7 +1509,7 @@ msgstr "تغيير" msgid "Current settings" msgstr "پرس و جوي SQL" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy msgid "Chart Title" msgstr "No tables" @@ -1593,7 +1596,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "" @@ -1697,10 +1700,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "صدور" @@ -1755,9 +1758,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "لغو کردن" @@ -1770,11 +1773,11 @@ msgstr "محلی" msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1786,9 +1789,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "تاييد" @@ -1839,17 +1842,17 @@ msgstr "فهرست‌ها" msgid "Show indexes" msgstr "Show grid" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "فعال" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1887,7 +1890,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1929,8 +1932,8 @@ msgstr "پرس و جوي SQL" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "تغيير" @@ -1938,18 +1941,18 @@ msgstr "تغيير" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "ذخيره" @@ -1963,7 +1966,7 @@ msgstr "پرس و جوي SQL" msgid "Show search criteria" msgstr "پرس و جوي SQL" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2014,12 +2017,12 @@ msgstr "نتيجه SQL" msgid "Data point content" msgstr "توضيحات جدول" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2040,7 +2043,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2136,7 +2139,7 @@ msgstr "توليد‌شده توسط" msgid "Change Password" msgstr "تغيير اسم رمز" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2252,27 +2255,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2280,37 +2283,37 @@ msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "دسامبر" @@ -2359,32 +2362,32 @@ msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "شنبه" @@ -2513,16 +2516,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "در ثانیه" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "در دقیقه" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "در ساعت" @@ -2543,70 +2546,290 @@ msgstr "" msgid "Font size" msgstr "اندازه حروف" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "اضافه يا حذف ستونها" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "شروع" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "قبل" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "بعد" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "انتها" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "شنبه" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows per page" +msgid "Number of rows" +msgstr "تعداد سطرها در هر صفحه" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "دوشنبه" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "افقي" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "عمودي" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "عمليات" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +msgid "Partial texts" +msgstr "متغییر" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "كاملا متن" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +msgid "Hide browser transformation" +msgstr "اطلاعات ورود" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "سطر حذف گرديد ." + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Kill" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "in query" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "جمع كل" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Displaying Column Comments" +msgid "Display chart" +msgstr "نمايش توضيحات ستون" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "نسخه سرور" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "پيوند پيدا نشد" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "فهرست‌ها" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "يكتا" @@ -2619,8 +2842,8 @@ msgstr "" msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2642,132 +2865,132 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "پايگاههاي داده" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "سرور" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "ساختار" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "درج" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "عمليات" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "پرس و جو" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "امتيازات" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "كاربر" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "دودويي" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 #, fuzzy msgid "Variables" msgstr "متغییر" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "موتور" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "خطا" @@ -2792,7 +3015,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2881,16 +3104,108 @@ 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 +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 +#, 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 +msgid "Value" +msgstr "مقدار" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "جستجو" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "درج" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "ستونها را انتخاب نماييد (حداقل يكي)" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "افزودن شرايط جستجو (بدنه شرط \"where\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "تعداد سطرها در هر صفحه" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "ترتيب نمايش:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "پرس و جوي SQL" + +#: 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 "انجام يك \"پرس و جو با نمونه\" (wildcard: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "انجام يك \"پرس و جو با نمونه\" (wildcard: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Reset" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "پش دید موجود نمی باشد" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2909,7 +3224,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3205,20 +3520,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "به %s خوش‌آمديد" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3230,59 +3545,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "ورود" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 #, fuzzy msgid "Server:" msgstr "سرور" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "نام كاربر:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "اسم رمز:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "نام كاربر/اسم رمز اشتباه است. دسترسي مجاز نيست." @@ -3314,7 +3625,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "جدولها" @@ -3326,13 +3637,13 @@ msgstr "جدولها" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "داده" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "" @@ -3359,247 +3670,217 @@ msgstr "" msgid "Check Privileges" msgstr "ويرايش امتيازات" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "مستندات" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "پرس و جوي SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "پيغام MySQL : " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "شرح دادن SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 #, fuzzy msgid "Skip Explain SQL" msgstr "شرح دادن SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "بدون كد PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "ساخت كد PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 #, fuzzy msgid "Skip Validate SQL" msgstr "معتبرسازي SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "معتبرسازي SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "موتور" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "يكشنبه" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ساعت %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "شروع" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "قبل" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "بعد" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "انتها" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "برای انتخاب کلیک کنبد" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست." -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "چاپ" @@ -3629,8 +3910,8 @@ msgid "Closed" msgstr "" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "غيرفعال" @@ -3782,9 +4063,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Reset" @@ -3990,10 +4271,6 @@ msgstr "پيشنهاد ساختار جدول" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4052,7 +4329,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "ذخيره به صورت پرونده" @@ -4062,7 +4339,7 @@ msgid "Character set of the file" msgstr "مجموعه كاراكترهاي پرونده:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "قالب" @@ -4176,7 +4453,7 @@ msgid "MIME type" msgstr "" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 #, fuzzy msgid "Relations" msgstr "عمليات" @@ -5686,9 +5963,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "اسم رمز" @@ -5961,30 +6238,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "تغيير اسم رمز" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "بدون اسم رمز" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "تكرار" @@ -6007,14 +6278,14 @@ msgstr "ساخت پايگاه داده جديد" msgid "Create" msgstr "ساختن" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 #, fuzzy msgid "No Privileges" msgstr "امتيازات" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "ساخت يك صفحه جديد" @@ -6022,9 +6293,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "اسم" @@ -6205,25 +6476,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "نسخه سرور" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "نسخه سرور" @@ -6330,401 +6601,240 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "اضافه يا حذف ستونها" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "شنبه" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of rows" -msgstr "تعداد سطرها در هر صفحه" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "دوشنبه" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "افقي" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "عمودي" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "عمليات" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -msgid "Partial texts" -msgstr "متغییر" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "كاملا متن" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -msgid "Hide browser transformation" -msgstr "اطلاعات ورود" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "سطر حذف گرديد ." - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Kill" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "in query" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "جمع كل" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Displaying Column Comments" -msgid "Display chart" -msgstr "نمايش توضيحات ستون" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "نسخه سرور" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "پيوند پيدا نشد" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 #, fuzzy msgid "Version information" msgstr "اطلاعات ورود" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 #, fuzzy msgid "Data files" msgstr "فقط داده‌ها" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6732,48 +6842,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6781,19 +6891,19 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy msgid "Related Links" msgstr "عمليات" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6849,14 +6959,14 @@ msgstr "حذف داده‌هاي جدول" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6924,14 +7034,14 @@ msgstr "نمايش خصوصيات" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "ميزبان" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "زمان توليد" @@ -7127,21 +7237,12 @@ msgstr "نمایش" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." @@ -7236,12 +7337,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "نام ستونها" @@ -7306,93 +7407,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "تابع" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "دودويي" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "درج" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "و سپس" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "درج به عنوان يك سطر جديد" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "برو به صفحه قبل" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "درج يك سطر جديد ديگر" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "برگرد به این صفحه" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "ویرایش کردن ردیف بعدی" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "مقدار" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7409,36 +7492,36 @@ msgstr "خير" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "جمعه" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "ارسال" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "آيا مطمئن هستيد " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "" @@ -7651,92 +7734,92 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "not OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "تاييد" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "فعال" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "نمايش خصوصيات" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "ساخت PDFs" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "نمايش توضيحات ستون" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "no Description" @@ -7744,7 +7827,7 @@ msgstr "no Description" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7756,13 +7839,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "نام كاربر" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "ترتيب" @@ -7776,7 +7859,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "متغییر" @@ -7791,38 +7874,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "همه كاربران" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "همه ميزبانها" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "محلی" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7836,7 +7919,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7868,98 +7951,99 @@ msgstr "جدول %s حذف گرديد" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "افزودن يك كاربر جديد" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "User name" msgid "Event name" msgstr "نام كاربر" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "تغيير" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Start" msgctxt "Start of recurring event" msgid "Start" msgstr "شنبه" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "انتها" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "تمام وروديها" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7989,7 +8073,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -8009,113 +8093,113 @@ msgstr "جدول %s حذف گرديد" msgid "Routine %1$s has been created." msgstr "جدول %s حذف گرديد" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "نام ستونها" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "ایجاد" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "طول/مقادير*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "حذف پایگاه داده" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "طول/مقادير*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy msgid "Return options" msgstr "آمار پايگاههاي داده" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8134,39 +8218,39 @@ msgstr "جدول %s حذف گرديد" msgid "Trigger %1$s has been created." msgstr "جدول %s حذف گرديد" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "افزودن يك كاربر جديد" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "نام كاربر" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8258,7 +8342,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8268,7 +8352,7 @@ msgstr "جدول \"%s\" وجود ندارد!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8276,7 +8360,7 @@ msgid "Please configure the coordinates for table %s" msgstr "لطفا مختصات جدول %s را تنظيم كنيد" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8287,28 +8371,28 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 #, fuzzy msgid "Table of contents" msgstr "توضيحات جدول" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "ويژگيها" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "اضافي" @@ -8424,7 +8508,7 @@ msgstr "زبانِ ناشناس : %1$s." msgid "Current Server" msgstr "سرور" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "جستجو در پايگاه‌داده" @@ -8443,7 +8527,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "جستجو در پايگاه‌داده" @@ -8463,7 +8547,7 @@ msgstr "اجراي پرس و جو(ها)ي SQL در پايگاه‌داده %s" msgid "Run SQL query/queries on database %s" msgstr "اجراي پرس و جو(ها)ي SQL در پايگاه‌داده %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" @@ -8475,11 +8559,11 @@ msgstr "تقویم" msgid "Columns" msgstr "نام ستونها" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8561,7 +8645,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8593,8 +8677,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "فهرست" @@ -8648,13 +8732,13 @@ msgstr "خير" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "اصلي" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "كاملا متن" @@ -8668,19 +8752,19 @@ msgstr "" msgid "after %s" msgstr "بعد از %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "افزودن ستون جديد" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8688,46 +8772,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "جستجو" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "ستونها را انتخاب نماييد (حداقل يكي)" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "افزودن شرايط جستجو (بدنه شرط \"where\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "تعداد سطرها در هر صفحه" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "ترتيب نمايش:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "انجام يك \"پرس و جو با نمونه\" (wildcard: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8835,13 +8879,13 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "اصلاحات ذخيره گرديد" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8852,7 +8896,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8879,7 +8923,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "" @@ -8903,9 +8947,9 @@ msgstr "نسخه سرور" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "كاربر" @@ -9028,144 +9072,144 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "تغيير جدول مرتب شده با" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "تغيير جدول مرتب شده با" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "ساخت يك صفحه جديد" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "لطفا يك پايگاه داده را انتخاب نماييد." -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Submit Query" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "نمايش همه" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "مرمت جدول" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "صدور" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "in query" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "بازناميدن جدول به" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "نام كاربر" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "ساختن" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy msgid "Active options" msgstr "عمل" @@ -9179,57 +9223,57 @@ msgstr "جدول %s حذف گرديد" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "استفاده" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "ساخت فهرست جديد" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "نام كاربر" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "" @@ -9241,87 +9285,87 @@ msgstr "" msgid "Modifications have been saved" msgstr "اصلاحات ذخيره گرديد" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "همه" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "جدول %s وجود ندارد و يا در %s تنظيم نشده‌است" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9331,18 +9375,18 @@ msgstr "جدول \"%s\" وجود ندارد!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "ستونها" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -9358,7 +9402,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "اطلاعات" @@ -9366,32 +9410,32 @@ msgstr "اطلاعات" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "پايگاه داده %s حذف گرديد." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "آمار پايگاههاي داده" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 #, fuzzy msgid "Enable Statistics" msgstr "آمار پايگاههاي داده" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9401,384 +9445,384 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 #, fuzzy msgid "View dump (schema) of databases" msgstr "نمايش الگوي پايگاه داده" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "شروع" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "فارسي" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "غيرفعال" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 #, fuzzy msgid "No privileges." msgstr "امتيازات" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "خير" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "نكته : نام امتيازات MySQL به زبان انگليسي بيان مي‌شود ." -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "مدیریت" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "اطلاعات ورود" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "عدم تغيير اسم رمز" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "هيچ كاربري وچود ندارد." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "شما يك كاربر جديد اضافه كرديد." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "امتيازات %s به هنگام گرديد." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "شما امتيازات %s را ابطال كرديد" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "در حال پاک کردن %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "ويرايش امتيازات" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "ابطال" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "صدور" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "همه" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "امتيازات" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "امتيازات" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 #, fuzzy msgid "Grant" msgstr "چاپ" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9787,140 +9831,140 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "نمای %s حذف گرديد." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9929,269 +9973,269 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "لطفا يك پايگاه داده را انتخاب نماييد." -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "كاملا متن" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "فقط ساختار" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "فقط ساختار" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 #, fuzzy msgid "Delayed inserts" msgstr "وروديهاي تمديدشده" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 #, fuzzy msgid "Show open tables" msgstr "نمايش جدولها" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 #, fuzzy msgid "Runtime Information" msgstr "اطلاعات ورود" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy msgid "Refresh rate: " msgstr "توليد‌شده توسط" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "عدم تغيير اسم رمز" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy msgid "Show only alert values" msgstr "نمايش جدولها" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy msgid "Show unformatted values" msgstr "نمايش جدولها" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy msgid "Related links:" msgstr "عمليات" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query" msgid "Run analyzer" msgstr "پرس و جو" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "تابع" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10199,115 +10243,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "شرج" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "شناسه" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "دستور" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10315,78 +10359,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10394,7 +10438,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10402,42 +10446,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10445,33 +10489,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10480,243 +10524,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "مجموعه كاراكترهاي پرونده:" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10724,99 +10768,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10824,18 +10868,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10843,69 +10887,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "پیگردی فعال نمی باشد." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "شنبه" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy msgid "Add chart" msgstr "افزودن ستون جديد" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "توليد‌شده توسط" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "اضافه يا حذف ستونها" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10914,7 +10958,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10922,18 +10966,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10941,11 +10985,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10953,226 +10997,226 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "حذف پایگاه داده" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Select Tables" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "افزودن يك كاربر جديد" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "پرس و جوي SQL" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "آمار سطرها" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Select Tables" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "پرس و جو" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] " ثانیه" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "دقیقه" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "پرس و جوي SQL" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -11464,179 +11508,179 @@ msgstr "" msgid "Wrong data" msgstr "No databases" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "آيا مطمئن هستيد " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "معتبرسازي SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "نتيجه SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "توليد‌شده توسط" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "پايگاه داده %s حذف گرديد." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "مارس" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "ستون" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "موتور" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "پتا بايت" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy msgid "Chart title" msgstr "No tables" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "پرس و جوي SQL" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "مقدار" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "مقدار" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "جدول %s حذف گرديد" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "نمايش الگوي جدول" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "اضافه يا حذف ستونها" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "جمع كل" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "ذخيره به صورت پرونده" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -11655,30 +11699,30 @@ msgstr "بازناميدن فهرست به PRIMARY مقدور نمي‌باشد! msgid "No index parts defined!" msgstr "هيچ فهرستي تعريف‌نشده‌است!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Print view" msgid "Edit index" msgstr "نماي چاپ" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "اسم فهرست :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(فقط و فقط بايد \"PRIMARY\" نام يك كليد اصلي باشد!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "نوع فهرست :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, fuzzy, php-format msgid "Add to index  %s column(s)" msgstr "ساخت يك فهرست در %s ستون" @@ -11701,273 +11745,273 @@ msgstr "جدول %s به %s انتقال داده‌شد." msgid "Table %s has been copied to %s." msgstr "جدول %s به %s كپي شد." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "نام جدول وارد نشده‌است !" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "تغيير جدول مرتب شده با" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(تنها)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "انتقال جدول به (پايگاه داده.جدول):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "بازناميدن جدول به" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "كپي كردن جدول به (پايگاه داده.جدول):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "نگهداشت جدول" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, fuzzy, php-format msgid "Table %s has been flushed" msgstr "جدول %s حذف گرديد" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "حذف داده‌هاي جدول" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "No databases" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "نگهداشت جدول" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "تعمیر" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "نمايش جدولها" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "فضاي استفاده‌شده" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "موثر" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "آمار سطرها" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "پويا" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "طول سطر" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "اندازه سطر " -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy msgid "Internal relation" msgstr "اروپای غربی" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Use this value" msgid "Distinct values" msgstr "این مقدار را استفاده کنید" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "خير" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "جدول %s حذف گرديد" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "يك كليد اصلي در %s اضافه شد" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "يك فهرست در %s اضافه گرديد." -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "نمايش اطلاعات PHP" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy msgid "Move columns" msgstr "افزودن ستون جديد" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "نماي چاپ" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "پيشنهاد ساختار جدول" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy msgid "Add column" msgstr "افزودن ستون جديد" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "در انتهاي جدول" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "در ابتداي جدول" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "بعد از %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "ساخت يك فهرست در %s ستون" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12123,72 +12167,39 @@ msgstr "" msgid "Create version" msgstr "نسخه سرور" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "انجام يك \"پرس و جو با نمونه\" (wildcard: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "پرس و جوي SQL" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Reset" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "توضیحات" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "تنظيمات به هنگام گرديد." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/fi.po b/po/fi.po index 2ac59b1cd1..a7413589de 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-21 20:39+0200\n" "Last-Translator: Jukka Penttinen \n" "Language-Team: finnish \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Näytä kaikki" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Sivunumero:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "isäntäikkuna on suljettu tai että selaimen tietoturva-asetukset estävät " "ikkunoiden väliset päivitystoiminnot." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Suorita" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Avaimen nimi" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Kuvaus" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Käytä tätä arvoa" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Tietokanta %1$s on luotu." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Tietokannan kommentti: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Taulun kommentit" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Sarake" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Tyhjä" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Oletusarvo" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Viittaa sarakkeeseen" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Kommentit" @@ -197,14 +198,14 @@ msgstr "Kommentit" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ei" @@ -217,120 +218,120 @@ msgstr "Ei" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Kyllä" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Tee vedos tietokannasta" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Tietokannassa ei ole tauluja." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Valitse kaikki" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Poista valinta kaikista" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Tietokannan nimi on tyhjä!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Tietokannan %1$s nimi on nyt %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Tietokanta %1$s on kopioitu tietokantaan %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Muuta tietokannan nimeksi" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Tuhoa tietokanta" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Tietokanta %s on poistettu." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Tuhoa tietokanta (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Luo tietokannasta toinen tietokanta nimellä" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Vain rakenne" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Rakenne ja tiedot" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Vain tiedot" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Suorita CREATE DATABASE ennen kopiointia" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Lisää %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Lisää AUTO_INCREMENT-arvo" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Lisää rajoitteet" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Siirry kopioituun tietokantaan" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Aakkosjärjestys" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -339,59 +340,59 @@ msgstr "" "phpMyAdminin asetusmuisti on poistettu käytöstä. Katso %slisätietoja%s, " "mistä tämä johtuu." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Relaatioskeeman muokkaus tai vienti" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Taulu" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Kpl rivejä" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Koko" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "käytössä" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Luotu" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Viimeksi päivitetty" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Viimeksi tarkistettu" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -402,210 +403,210 @@ msgstr[1] "%s taulua" msgid "You have to choose at least one column to display" msgstr "Valitse vähintään yksi sarake" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Vaihda %svisuaaliseen muokkaimeen%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Järjestä" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Nouseva" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Laskeva" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Näytä" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Hakuehdot" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Lisää" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Ja" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Poista" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Tai" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Muokkaa" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Lisää tai poista hakuehtoja" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Lisää tai poista sarakkeita" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Päivitä kysely" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Käytä tauluja" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Suorita SQL-kysely tietokannassa %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Suorita kysely" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Käyttö estetty" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "vähintään yksi sanoista" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "kaikki sanat" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "koko lause" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "regexp-haku" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Tulokset hakusanalla \"%s\" %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Poista taulusta %s löytyneet tulokset?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Yhteensä: %s hakutulosta" msgstr[1] "Yhteensä: %s hakutulosta" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Hae tietokannasta" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Haettavat sanat tai arvot (jokerimerkki: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Hae:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Sanat erotetaan välilyönnein." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Tauluissa:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Sarakkeen sisällä:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Tietokannassa ei ole tauluja" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "tuntematon" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Taulu %s on tyhjennetty" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Näkymä %s on poistettu" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Taulu %s on poistettu" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Seuranta on käytössä." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Seuranta ei ole käytössä." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -614,185 +615,186 @@ msgstr "" "Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja " "%sohjeista%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Kahdennus" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Summa" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Valitut:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Valitse kaikki" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Vienti" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Tulostusversio" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Tyhjennä" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Tuhoa" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Tarkista taulu" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimoi taulu" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Korjaa taulu" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analysoi taulu" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Lisää etuliite tauluun" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Korvaa taulun etuliite" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopioi taulun etuliite" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Tietosanasto" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Seurattavat taulut" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Tietokanta" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Viimeinen versio" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Luotu" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Päivitetty" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Tila" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Toiminnot" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Poista tämän taulun seurantatiedot" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "käytössä" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "ei käytössä" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versiot" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Seurantaraportti" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Rakenteen kuvaus" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Seuraamattomat taulut" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Seuraa taulua" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Tietokantaloki" @@ -804,16 +806,16 @@ msgstr "Virheellinen tyyppi!" msgid "Selected export type has to be saved in file!" msgstr "Valittu vientityyppi on tallennettava tiedostoon!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Virheelliset parametrit!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Liian vähän tilaa tiedoston %s tallentamiseen." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -821,12 +823,12 @@ msgstr "" "Tiedosto %s on jo olemassa palvelimella, vaihda tiedostonimeä tai tarkista " "korvausasetuksen tila." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Palvelimella ei ole lupaa tallentaa tiedostoa %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Vedos tallennettiin tiedostoon %s." @@ -835,86 +837,86 @@ msgstr "Vedos tallennettiin tiedostoon %s." msgid "Invalid export type" msgstr "Virheellinen vientitapa" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Arvo sarakkeelle %s" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Käytä perustasossa OpenStreetMaps-karttaa" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Piste" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Piste %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Lisää piste" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Rivimerkkijono" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Ulkoympyrä" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Sisäympyrä" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Lisää rivimerkkijono" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Lisää sisäympyrä" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Monikulmio" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Lisää monikulmio" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Lisää geometria" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Tulos" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -922,7 +924,7 @@ msgstr "" "Valitse \"Toiminto\"-sarakkeesta \"GeomFromText\" ja liitä alla oleva " "merkkijono \"Arvo\"-kenttään" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -931,21 +933,21 @@ msgstr "" "Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso " "tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Näytetään kirjanmerkki" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Kirjanmerkki on poistettu." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Tiedostoa ei voi lukea" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -955,7 +957,7 @@ msgstr "" "kyseiselle muodolle ei joko ole toteutettu, tai se on asetuksin poistettu " "käytöstä." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -964,26 +966,26 @@ msgstr "" "Tuotavia tietoja ei ole. Tiedostonimeä ei joko annettu tai tiedoston koko " "ylitti PHP:n asetusten salliman enimmäiskoon. Katso FAQ 1.16." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Tiedoston merkistöä ei voida muuttaa ilman merkistökirjastoa" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Kirjanmerkki %s luotu" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Tuonti onnistui, %d kyselyä suoritettu." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -991,7 +993,7 @@ msgstr "" "Skriptin suoritus aikakatkaistiin. Jos haluat suorittaa tuonnin loppuun, " "lähetä sama tiedosto uudestaan, ja tuonti jatkuu." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1000,23 +1002,23 @@ msgstr "" "tarkoittaa yleensä sitä, että phpMyAdmin ei voi ajaa tätä tuontia loppuun " "asti ellei PHP:n suoritusaikarajaa nosteta." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Takaisin" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "PhpMyAdmin toimii parhaiten kehyksiä tukevalla selaimella." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty." @@ -1025,7 +1027,7 @@ msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty." msgid "Do you really want to execute \"%s\"?" msgstr "Haluatko varmasti suorittaa \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!" @@ -1065,7 +1067,7 @@ msgstr "Lisää indeksi" msgid "Edit Index" msgstr "Muokkaa indeksiä" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Lisää indeksiin %d kolumni(a)" @@ -1083,16 +1085,16 @@ msgstr "Palvelimen nimi puuttuu!" msgid "The user name is empty!" msgstr "Käyttäjän nimi puuttuu!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Salasana puuttuu!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Salasanat eivät ole samat!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Lisää käyttäjä" @@ -1109,23 +1111,24 @@ msgstr "Poista valitut käyttäjät" msgid "Close" msgstr "Sulje" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Muokkaa" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Liikennetaulu" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Elävä yhteys- ja prosessikaavio" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Elävä kyselykaavio" @@ -1135,24 +1138,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Yhteensä" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Toinen" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1172,7 +1175,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Prosessit" @@ -1190,7 +1193,7 @@ msgstr "Kysymyksiä viimeisestä päivityksestä lähtien" msgid "Questions (executed statements by the server)" msgstr "Kysymyksiä (palvelimen suorittamat lauseet)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Kyselyn ominaisuuksia" @@ -1235,14 +1238,14 @@ msgid "System swap" msgstr "Järjestelmän sivutusmuisti" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "Mt" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "kt" @@ -1294,32 +1297,32 @@ msgstr "Tavua lähetetty" msgid "Bytes received" msgstr "Tavua vastaanotettu" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Yhteydet" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "tavua" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "Gt" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "Tt" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "Pt" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "Et" @@ -1333,11 +1336,11 @@ msgstr "%d taulu(a)" msgid "Questions" msgstr "Kysymykset" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Liikenne" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Asetukset" @@ -1357,11 +1360,11 @@ msgstr "Lisää taulukko ruudukkoon" msgid "Please add at least one variable to the series" msgstr "Lisää sarjaan vähintään yksi muuttuja" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Ei mitään" @@ -1461,7 +1464,7 @@ msgstr "Muuta asetuksia" msgid "Current settings" msgstr "Nykyiset asetukset" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Kaavion otsikko" @@ -1544,7 +1547,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Aika" @@ -1639,10 +1642,10 @@ msgstr "" "Kaavioruudukon luonti ei onnistunut tuoduilla määrityksillä. Käytetään " "oletusmäärityksiä." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Tuonti" @@ -1690,9 +1693,9 @@ msgstr "Käytetty muuttuja / kaava" msgid "Test" msgstr "Testaa" -#: 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 +#: 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 msgid "Cancel" msgstr "Peruuta" @@ -1704,11 +1707,11 @@ msgstr "Lataa" msgid "Processing Request" msgstr "Pyyntöä käsitellään" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Virhe pyynnön käsittelyssä" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Yhtään tietokantaa ei ole valittu." @@ -1720,9 +1723,9 @@ msgstr "Sarakkeen poisto" msgid "Adding Primary Key" msgstr "Pääavaimen lisäys" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1762,15 +1765,15 @@ msgstr "Piilota indeksit" msgid "Show indexes" msgstr "Näytä indeksit" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Viiteavaimen tarkastus:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Päällä)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Pois päältä)" @@ -1798,7 +1801,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET-muokkaus" @@ -1838,8 +1841,8 @@ msgstr "Näytä kyselykenttä" msgid "No rows selected" msgstr "Ei yhtään riviä valittu" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Muokkaa" @@ -1847,18 +1850,18 @@ msgstr "Muokkaa" msgid "Query execution time" msgstr "Kyselyn suoritusaika" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Tallenna" @@ -1870,7 +1873,7 @@ msgstr "Piilota hakukriteerit" msgid "Show search criteria" msgstr "Näytä hakukriteerit" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Zoomaushaku" @@ -1916,12 +1919,12 @@ msgstr "Kyselyn tulokset" msgid "Data point content" msgstr "Tietopisteen sisältö" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Älä huomioi" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Kopioi" @@ -1941,7 +1944,7 @@ msgstr "Valitse liiteavain" msgid "Please select the primary key or a unique key" msgstr "Valitse perusavain tai uniikki avain" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Valitse näytettävä sarake" @@ -2033,7 +2036,7 @@ msgstr "Keksi" msgid "Change Password" msgstr "Vaihda salasana" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Lisää" @@ -2124,63 +2127,63 @@ msgid "December" msgstr "Joulukuu" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Joulu" @@ -2218,32 +2221,32 @@ msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "La" @@ -2359,16 +2362,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "sekunnissa" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "minuutissa" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "tunnissa" @@ -2391,21 +2394,223 @@ msgstr "" msgid "Font size" msgstr "Fonttikoko" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +#| msgid "Save directory" +msgid "Save edited data" +msgstr "Tallennushakemisto" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Restore column order" +msgstr "CHAR-tekstikentän sarakkeet" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Aloitus" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Edellinen sivu" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Seuraava sivu" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Viimeinen sivu" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Käynnistä" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "Kenttien määrä" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "More" +msgid "Mode" +msgstr "Lisää" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "vaakatasossa" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "vaakatasossa (kierretyt otsikot)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "pystysuorassa" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Suorita kysely kirjanmerkeistä" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Lajittele avaimen mukaan" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Valinnat" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Lyhennetyt tekstit" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Koko tekstit" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Relaatioavain" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational display field" +msgid "Relational display column" +msgstr "Relaationäyttökenttä" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Näytä binäärisisältö" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Näytä BLOB-sisältö" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +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)" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Rivi on poistettu" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Lopeta" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "Saattaa olla summittainen. Katso FAQ 3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "lauseessa" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Näkyvillä rivit" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "yhteensä" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Kysely kesti %01.4f s." + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Kyselytulosten toimenpiteet" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Tulostusversio (kokonaisin tekstein)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Näytä kaavio" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Luo näkymä" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Linkkiä ei löydy" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Liikaa virhesanomia, joitakin ei näytetä." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Kyseessä ei ollut ladattu tiedosto." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Lähetyn tidoston koko ylittää php.ini-tiedoston upload_max_filesize-" "asetuksen arvon." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2413,52 +2618,65 @@ msgstr "" "Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-" "asetuksen arvon." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Tiedosto lähetettiin vain osittain." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Tilapäiskansio puuttuu." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Tiedoston kirjoitus levylle epäonnistui." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Laajennus keskeytti tiedoston lähetyksen." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Tuntematon virhe tiedostoa lähetettäessä." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Virhe lähetettäessä tiedostoa, katso FAQ 1.11" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Virhe siirrettäessä ladattua tiedostoa." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Ladattua (ja siirrettyä) tiedostoa ei voi lukea." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Avaa uusi phpMyAdmin-ikkuna" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Selaimessa on oltava evästeet päällä tästä lähtien." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksit" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Uniikki" @@ -2471,8 +2689,8 @@ msgstr "Pakattu" msgid "Cardinality" msgstr "Kardinaliteetti" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kommentti" @@ -2495,128 +2713,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Tietokannat" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Palvelin" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Rakenne" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Lisää rivi" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Toiminnot" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Seuranta" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Taulu on tyhjä!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Tietokanta on tyhjä!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Haku" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Käyttöoikeudet" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutiinit" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Tapahtumat" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Suunnittelija" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Käyttäjät" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Yhtenäistä" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binääriloki" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Muuttujat" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Merkistöt" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Liitännäiset" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Moottorit" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Virhe" @@ -2641,7 +2859,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rivi lisätty." msgstr[1] "%1$d riviä lisätty." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Virhe luotaessa PDF-tiedostoa:" @@ -2734,16 +2952,112 @@ 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 +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 +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 +msgid "Value" +msgstr "Arvo" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Etsi" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Lisää rivi" + +#: 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):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Lisää hakuehtoja (\"WHERE\"-lauseen sisältö):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Rivejä sivulla" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Lajittelujärjestys:" + +#: libraries/TableSearch.class.php:813 +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ä" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Selaa viitearvoja" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Additional search criteria" +msgstr "Piilota hakusanat" + +#: 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: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Suorita mallin mukainen kysely (jokerimerkki: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +#| msgid "Control user" +msgid "How to use" +msgstr "Hallintakäyttäjä" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Palauta" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Kelvollista kuvapolkua teemalle %s ei löytynyt!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Esikatselu ei ole saatavilla." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "käytä tätä" @@ -2762,7 +3076,7 @@ msgstr "Teemaa %s ei löydy!" msgid "Theme path not found for theme %s!" msgstr "Teeman %s polkua ei löydy!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Teema" @@ -3072,13 +3386,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Yhteyttä ei voitu muodostaa: virheelliset asetukset." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Tervetuloa, toivottaa %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3087,7 +3401,7 @@ msgstr "" "Et liene luonut asetustiedostoa. Voit luoda asetustiedoston " "%1$sasetusskriptillä%2$s." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3103,41 +3417,37 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Mcrypt-laajennuksen Blowfish-toiminnon käyttö epäonnistui!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Javaskripti on oltava päällä tämän jälkeen" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Kirjaudu sisään" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Voit syöttää verkkotunnuksen/IP-osoitteen ja portin välilyönnillä erotettuna." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Palvelin:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Käyttäjätunnus:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Salasana:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Valitse palvelin" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Selaimessa on oltava evästeet päällä tästä lähtien." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3145,7 +3455,7 @@ msgstr "" "Kirjautuminen ilman salasanaa on kielletty asetuksissa (katso " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" @@ -3153,13 +3463,13 @@ msgstr "" "Yhteys on ollut toimettomana %s sekuntia tai kauemmin. Kirjaudu sisään " "uudestaan." -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL-palvelimelle ei voitu kirjautua" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Väärä käyttäjätunnus tai salasana. Käyttö estetty." @@ -3191,7 +3501,7 @@ msgstr "jaettu" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Taulut" @@ -3203,13 +3513,13 @@ msgstr "Taulut" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Tietoa" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Ylijäämä" @@ -3234,19 +3544,11 @@ msgstr "Hallitse tietokannan "%s" käyttöoikeuksia." msgid "Check Privileges" msgstr "Hallitse käyttöoikeuksia" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "mahdollinen turva-aukko" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "numeerinen avain tunnistettu" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Asetustiedostoa ei voi lukea" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3254,216 +3556,202 @@ msgstr "" "Tämä johtuu tavallisesti siinä olevasta syntaksivirheestä, tarkista kaikki " "alla näkyvät virheet." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\"" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" "[code]$cfg['PmaAbsoluteUri'][/code] täytyy määritellä asetustiedostossa!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Virheellinen palvelimen indeksi: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Asetuksissa on virheellinen todennustapa:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "mahdollinen turva-aukko" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "numeerinen avain tunnistettu" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Enimmäiskoko: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Ohjeet" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-kysely" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL ilmoittaa: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "SQL-tarkistimeen yhdistäminen epäonnistui!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Selitä SQL-kysely" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Älä selitä SQL-kyselyä" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Ilman PHP-koodia" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Luo PHP-koodi" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Päivitä" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Älä tarkista SQL-kyselyä" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Tarkista SQL-lause" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Tämän kyselyn muokkaus" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Muokkaus" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profilointi" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Su" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y klo %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päivää, %s tuntia, %s minuuttia ja %s sekuntia" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Puuttuva parametri:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Aloitus" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Edellinen sivu" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Seuraava sivu" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Viimeinen sivu" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Siirry tietokantaan "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Vaihda painamalla" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Selaa tietokonettasi:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Lähetettäviä tiedostoja ei ole" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Suorita" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Tulosta" @@ -3493,8 +3781,8 @@ msgid "Closed" msgstr "Suljettu" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Pois päältä" @@ -3635,9 +3923,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Palauta" @@ -3858,10 +4146,6 @@ msgstr "Esitä taulun rakennetoimet" msgid "Show binary contents as HEX by default" msgstr "Näytä binäärisisältö oletusarvoisesti heksamuodossa" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Näytä binaarisisältö heksamuodossa" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Näyttää tietokannat luettelona eikä pudotusvalikkona" @@ -3918,7 +4202,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Suorituksen enimmäiskesto" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Tallenna tiedostoon" @@ -3927,7 +4211,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Muoto" @@ -4031,7 +4315,7 @@ msgid "MIME type" msgstr "MIME-tyyppi" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relaatiot" @@ -5605,9 +5889,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Salasana" @@ -5885,12 +6169,6 @@ msgstr "" msgid "Details..." msgstr "Lisätiedot..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "Saattaa olla summittainen. Katso FAQ 3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -5898,18 +6176,18 @@ msgstr "" "Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Vaihda salasana" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Ei salasanaa" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Kirjoita uudelleen" @@ -5930,22 +6208,22 @@ msgstr "Luo tietokanta" msgid "Create" msgstr "Luo" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Ei käyttöoikeuksia" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nimi" @@ -6134,26 +6412,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Merkistön uudelleenkoodaus" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "Luo versio %s kohteesta %s.%s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -6288,202 +6566,38 @@ msgstr "" msgid "Language" msgstr "Kieli" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -#| msgid "Save directory" -msgid "Save edited data" -msgstr "Tallennushakemisto" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Restore column order" -msgstr "CHAR-tekstikentän sarakkeet" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Käynnistä" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "Kenttien määrä" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "More" -msgid "Mode" -msgstr "Lisää" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "vaakatasossa" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "vaakatasossa (kierretyt otsikot)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "pystysuorassa" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Suorita kysely kirjanmerkeistä" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Lajittele avaimen mukaan" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Valinnat" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Lyhennetyt tekstit" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Koko tekstit" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Relaatioavain" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational display field" -msgid "Relational display column" -msgstr "Relaationäyttökenttä" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Näytä binäärisisältö" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Näytä BLOB-sisältö" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Selaimen muunnos (transformation)" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Rivi on poistettu" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Lopeta" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "lauseessa" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Näkyvillä rivit" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "yhteensä" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Kysely kesti %01.4f s." - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Kyselytulosten toimenpiteet" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Tulostusversio (kokonaisin tekstein)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Näytä kaavio" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Luo näkymä" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Linkkiä ei löydy" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Versiotiedot" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Tiedostojen kotihakemisto" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Hakemistopolun yhteinen osa kaikille InnoDB-tiedostoille." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Tiedostot" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Automaattisen laajentamisen koko" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" "Kertoo, kuinka paljon taulun kokoa kasvatetaan taulun tilan täyttyessä." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Puskurivarannon koko" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6491,79 +6605,79 @@ msgstr "" "Kertoo muistipuskurin koon, jota InnoDB käyttää taulujen tietojen ja " "indeksien siirtämiseen välimuistiin." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Puskurivaranto" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB:n tila" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Puskurivarannon käyttö" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "sivua" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Vapaat sivut" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Epäsiistit sivut" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Tietoja sisältävät sivut" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Siistimistä vaativat sivut" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Käytössä olevat sivut" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Lukitut sivut" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Puskurivarannon aktiivisuus" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Hakupyynnöt" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Kirjoituspyynnöt" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Epäonnistuneet lukuyritykset" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Viive ennen kirjoitusta" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Epäonnistuneet lukuyritykset: %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Kirjoitusviipeet: %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Tieto-osoittimen koko" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6571,11 +6685,11 @@ msgstr "" "MyISAM-kannan CREATE TABLE -kyselyissä käytettävä osoittimen oletuskoko " "tavuina, kun MAX_ROWS-valintaa ei ole määritelty." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Automaattinen palautuminen" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6584,11 +6698,11 @@ msgstr "" "se on asetettu \"--myisam-recover\"-nimisessä " "palvelimenkäynnistysasetuksessa." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Enimmäiskoko tilapäisille lajittelutiedostoille" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6597,11 +6711,11 @@ msgstr "" "MyISAM-indeksien uudelleenluonnin tilapäistiedostojen suurin koko (toiminnot " "REPAIR TABLE, ALTER TABLE tai LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Tilapäistiedostojen enimmäiskoko indeksin luontia varten" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6611,11 +6725,11 @@ msgstr "" "kuin tässä määritetty avainvälimuistin koko, mieluummin suositellaan " "käytettävän avainvälimuistia." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Korjaa säikeet" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6623,11 +6737,11 @@ msgstr "" "Jos tämä arvo on suurempi kuin 1, MyISAM-taulujen indeksit luodaan samaan " "aikaan lajittelukorjausprosessissa, kukin indeksi omalla säikeellään." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Lajittelupuskurin koko" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6635,11 +6749,11 @@ msgstr "" "Puskuri, joka varataan käyttöön lajiteltaessa MyISAM-indeksejä REPAIR TABLE -" "kyselyllä tai luotaessa indeksejä CREATE INDEX- tai ALTER TABLE -kyselyillä." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Indeksivälimuistin koko" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6647,11 +6761,11 @@ msgstr "" "Tämä on indeksivälimuistille varatun muistin määrä. Oletusarvo on 32Mt. " "Tässä varattua muistia käytetään vain indeksisivujen välimuistitallenukseen." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Tallennusvälimuistin koko" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6661,11 +6775,11 @@ msgstr "" "muistia. Oletusarvo on 32Mt. Tätä muistia käytetään kahvatietojen (.xtd) ja " "riviosoitintiedostojen (.xtr) välimuistitallennukseen." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Lokivälimuistin koko" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6673,11 +6787,11 @@ msgstr "" "Kertoo kuinka paljon muistia varataan transaktiolokin välimuistille. " "Oletusarvo on 16Mt." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Lokitiedoston kynnysarvo" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6685,11 +6799,11 @@ msgstr "" "Transaktiolokin rajakoko, jonka ylityttyä luodaan uusi loki. Oletusarvo on " "16Mt." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Transaktiopuskurin koko" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6697,11 +6811,11 @@ msgstr "" "Globaalin transaktiolokipuskurin koko (moottori varaa kaksi tämän kokoista " "puskuria). Oletusarvo on 1Mt." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Checkpoint-pisteiden taajuus" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6709,11 +6823,11 @@ msgstr "" "Transaktiolokiin kirjoitettavien tietojen määrä ennen kuin checkpoint-piste " "suoritetaan. Oletusarvo on 24Mt." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Checkpoint-pisteiden kynnysarvo" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6725,11 +6839,11 @@ msgstr "" "muuttujan arvoa voi nostaa, jos haluaa kasvattaa kaiken tietokantaan " "tallennettavan tiedon kokonaismäärää." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Roskankeruun kynnysarvo" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6737,11 +6851,11 @@ msgstr "" "Tietolokitiedoston roskatietojen prosentuaalinen määrä ennen kuin tiedostoa " "tiivistetään. Tämän arvon on oltava väliltä 1 - 99. Oletusarvo on 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Lokipuskurin koko" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6751,27 +6865,27 @@ msgstr "" "Moottori varaa kullekin säikeelle yhden puskurin, mikäli säiettä tarvitaan " "tietolokin kirjoittamiseen." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Tiedoston koonkasvatusmäärä" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Kahvatiedostojen (.xtd) koonkasvatusmäärä." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Rivitiedoston koonkasvatusmäärä" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Riviosoitintiedostojen (.xtr) koonkasvatusmäärä." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Lokitiedostojen määrä" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6783,20 +6897,20 @@ msgstr "" "poistetaan; muuten ne nimetään uudelleen antamalla niille seuraavaksi suurin " "numero." -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Relaatiot" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6859,14 +6973,14 @@ msgstr "Vedos taulusta" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Tapahtuma" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6938,14 +7052,14 @@ msgstr "Näytä MIME-tyypit" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Palvelin" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Luontiaika" @@ -7141,23 +7255,14 @@ msgstr "Näkymä" msgid "Export contents" msgstr "Vie sisällöt" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Avaa uusi phpMyAdmin-ikkuna" - #: 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." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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ä)." @@ -7262,12 +7367,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Taulun nimi" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Sarakkeiden nimet" @@ -7345,99 +7450,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funktio" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Kätke" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binääritietoa" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binääritietoa - älä muokkaa" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "palvelimen lähetyshakemisto" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Lisää rivi" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, 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:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "ja sen jälkeen" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Lisää uutena rivinä" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 #, fuzzy msgid "Show insert query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Takaisin" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Lisää uusi rivi" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Palaa tälle sivulle" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Muokkaa seuraavaa riviä" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Arvo" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" @@ -7454,38 +7541,38 @@ msgstr "Ei mitään" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fr" msgid "From" msgstr "Pe" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Lähetä" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Apply index(s)" msgid "Add prefix" msgstr "Käytä indeksiä/indeksejä" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Haluatko varmasti " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Ei muutoksia" @@ -7697,94 +7784,94 @@ msgstr "Lataa navigointikehys uudelleen" msgid "This format has no options" msgstr "Tälle tiedostomuodolle ei ole valinta-asetuksia" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Ei kunnossa" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Päällä" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Yleiset relaatio-ominaisuudet" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Ulkoasun asetukset" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF-tiedostojen luonti" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Sarakkeiden kommentit näkyvissä" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Selaimen muunnos (transformation)" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 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:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Tallennettu SQL-kysely" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-historia" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Jatkuvat yhteydet" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "ei kuvausta" @@ -7792,7 +7879,7 @@ msgstr "ei kuvausta" msgid "Slave configuration" msgstr "Alipalvelimen asetusten määrittely" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Vaihda isäntäpalvelin tai muuta sen asetuksia" @@ -7806,13 +7893,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Käyttäjänimi" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -7825,7 +7912,7 @@ msgid "Slave status" msgstr "Alipalvelimen tila" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Muuttuja" @@ -7841,38 +7928,38 @@ msgstr "" "Luettelossa on näkyvillä vain ne alipalvelimet, joilla on valinta --report-" "host=host_name." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Lisää alikahdennuksen käyttäjä" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Käytä tekstikenttää" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Mikä tahansa palvelin" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Paikallinen" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Tämä isäntä" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Käytä isäntätaulua" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7888,7 +7975,7 @@ msgstr "Keksi salasana" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7922,105 +8009,106 @@ msgstr "Taulu %1$s on luotu." msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Edit server" msgid "Edit event" msgstr "Muokkaa palvelinta" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_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:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." msgid "Details" msgstr "Lisätiedot..." -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Tapahtuman tyyppi" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Tapahtuman tyyppi" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Muokkaa" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Suorita kysely kirjanmerkeistä" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Käynnistys" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Loppu" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "Kokonaiset lisäyslauseet" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8051,7 +8139,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -8073,122 +8161,122 @@ msgstr "Taulu %s on poistettu" msgid "Routine %1$s has been created." msgstr "Taulu %1$s on luotu." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Muokkaustila" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutiinit" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Suorat linkit" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Pituus/Arvot*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Käytä indeksiä/indeksejä" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Tuhoa tietokanta" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Paluutyyppi" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Pituus/Arvot*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Taulun valinnat" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Turvallisuus" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, 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:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8210,44 +8298,44 @@ msgstr "Taulu %s on poistettu" msgid "Trigger %1$s has been created." msgstr "Taulu %1$s on luotu." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new server" msgid "Edit trigger" msgstr "Lisää uusi palvelin" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Herättimet" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Aika" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Virheellinen taulun nimi" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8361,7 +8449,7 @@ msgstr "Lähetettäviä tiedostoja ei ole" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8371,7 +8459,7 @@ msgstr "Taulua \"%s\" ei ole!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8379,7 +8467,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Määrittele koordinaatit taululle %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8393,27 +8481,27 @@ msgstr "Tietokannan \"%s\" kaavio - Sivu %s" msgid "This page does not contain any tables!" msgstr "Tiedosto %s ei sisällä avaintunnusta" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Relaatioskeema" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Sisällysluettelo" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Attribuutit" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Lisätiedot" @@ -8529,7 +8617,7 @@ msgstr "Tuntematon kieli: %1$s." msgid "Current Server" msgstr "Nykyinen palvelin" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Lähdetietokanta" @@ -8547,7 +8635,7 @@ msgstr "Etäpalvelin" msgid "Difference" msgstr "Ero" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Kohdetietokanta" @@ -8566,7 +8654,7 @@ msgstr "Suorita SQL-kysely(jä) palvelimella %s" msgid "Run SQL query/queries on database %s" msgstr "Suorita SQL-kyselyjä tietokannassa %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Tyhjennä" @@ -8575,11 +8663,11 @@ msgstr "Tyhjennä" msgid "Columns" msgstr "Sarakkeet" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Tallenna SQL-kysely" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" @@ -8673,7 +8761,7 @@ msgstr "" "SQL-tarkistinta ei voitu käynnistää. Tarkista, että tarpeelliset PHP-" "laajennukset on asennettu. Lisätietoa on %sohjeissa%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." @@ -8706,8 +8794,8 @@ msgstr "" "lainausmerkkejä) tässä muodossa: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indeksi" @@ -8760,13 +8848,13 @@ msgstr "Ei mitään" msgid "As defined:" msgstr "Määritelty:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Perusavain" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Koko teksti" @@ -8780,20 +8868,20 @@ msgstr "" msgid "after %s" msgstr "Jälkeen sarakkeen: %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, 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:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Vähintään yksi kenttä on lisättävä." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Tallennusmoottori" @@ -8801,45 +8889,6 @@ msgstr "Tallennusmoottori" msgid "PARTITION definition" msgstr "PARTITION-määritelmä" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Etsi" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Valitse sarakkeet (vähintään yksi):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Lisää hakuehtoja (\"WHERE\"-lauseen sisältö):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Rivejä sivulla" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Lajittelujärjestys:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Selaa viitearvoja" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Suorita mallin mukainen kysely (jokerimerkki: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9032,13 +9081,13 @@ msgstr "" msgid "Manage your settings" msgstr "Muut ydinasetukset" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Muutokset tallennettu" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9051,7 +9100,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Asetuksia ei voi ladata tai tallentaa" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9084,7 +9133,7 @@ msgstr "MySQL-yhteyden aakkosjärjestys" msgid "Appearance Settings" msgstr "Muut ydinasetukset" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "settings" msgid "More settings" @@ -9110,9 +9159,9 @@ msgstr "Näytä versiot" msgid "Protocol version" msgstr "Protokollan versio" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Käyttäjä" @@ -9260,145 +9309,145 @@ msgstr "" "Palvelin käyttää Suhosin-suojausjärjestelmää. Lue %sohjeista%s tietoja " "mahdollisista ongelmista." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Ei tietokantoja" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Lajittele taulu" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Lajittele taulu" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Luo taulu" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Valitse tietokanta" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Näytä/kätke vasen valikko" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Tallenna sijainti" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Luo relaatio" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Lataa uudelleen" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Ohje" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Kulmikkaat linkit" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Suorat linkit" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Sovita ruudukkoon" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Kaikki pienenä/suurena" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Vaihda pieneksi/suureksi" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "Valitaksesi relaation, paina :" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Tuo/vie PDF-skeeman koordinaatit" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Suorita" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Siirrä valikko" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Kätke/näytä kaikki" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Kätke/näytä taulut, joilla ei ole relaatiota" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Taulujen määrä" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Poista relaatio" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Relaatio poistettu" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Vienti" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "lauseessa" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Nimeä taulu uudelleen" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Uusi nimi" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Luo" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9413,55 +9462,55 @@ msgstr "Taulu %1$s on luotu." msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "sivua" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Tuo tiedostoja" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Vie valitulle sivulle" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Luo sivu ja vie se" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Uuden sivun nimi: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Vie/tuo skaalaan" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "suositus" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Virhe: relaatio on jo olemassa." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Virhe: Relaatiota ei luotu." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY -relaatio lisätty" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Sisäinen relaatio luotu" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relaatio poistettu" @@ -9473,96 +9522,96 @@ msgstr "Virhe tallennettaessa koordinaatteja Suunnittelijaan." msgid "Modifications have been saved" msgstr "Muutokset tallennettu" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" "Asetuksia ei voitu tallentaa, sillä lähetetyssä lomakkeessa on virheitä" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\"" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Tuo tiedostoja" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 #, fuzzy #| msgid "Other core settings" msgid "You have no saved settings!" msgstr "Muut ydinasetukset" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 #, fuzzy #| msgid "Server configuration" msgid "Merge with current configuration" msgstr "Palvelimen määrittely" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Tuo tiedostoja" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Kaikki" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Taulua %s ei löytynyt tai sitä ei ole määritelty tiedostossa %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9572,17 +9621,17 @@ msgstr "Taulua \"%s\" ei ole!" msgid "Select binary log to view" msgstr "Valitse näytettävä binääriloki" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Tiedostot" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Lyhennä näytettävät kyselyt" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Näytä kyselyt kokonaisuudessaan" @@ -9598,7 +9647,7 @@ msgstr "Sijainti" msgid "Original position" msgstr "Alkuperäinen sijainti" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Tiedot" @@ -9606,7 +9655,7 @@ msgstr "Tiedot" msgid "Character Sets and Collations" msgstr "Merkistökoodaukset ja aakkosjärjestykset" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9614,24 +9663,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s tietokantaa poistettiin onnistuneesti." msgstr[1] "%s tietokantaa poistettiin onnistuneesti." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Tietokantatilastot" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Isäntäpalvelimen kahdennus" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Alipalvelimen kahdennus" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Näytä tilastot" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9643,156 +9692,156 @@ msgstr "" msgid "Storage Engines" msgstr "Tallennusmoottorit" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Näytä tietokannoista vedos (skeema)" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Alkuun" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Versio" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Lisenssi" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Pois päältä" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Sisältää kaikki käyttöoikeudet GRANT-oikeutta lukuun ottamatta." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Sallii muuttaa olemassa olevien taulujen rakennetta." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Sallii uusien tietokantojen ja taulujen luomisen." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Sallii talletettujen rutiinien luomisen." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Sallii uusien taulujen luomisen." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Sallii tilapäisten taulujen luomisen." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Sallii käyttäjätilien luomisen, poistamisen ja uudelleennimeämisen." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Sallii uusien näkymien luomisen." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Sallii tietojen poistamisen." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Sallii tietokantojen ja taulujen poistamisen." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Sallii taulujen poistamisen." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Sallii luoda tapahtuma-ajastimelle tapahtumia" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Sallii talletettujen rutiinien suorittamisen." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Sallii tietojen tuomisen ja viemisen." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Sallii käyttäjien ja käyttöoikeuksien lisäämisen lataamatta " "käyttöoikeustauluja uudestaan." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Sallii indeksien luomisen ja poistamisen." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Sallii tietojen lisäämisen ja korvaamisen." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Rajoittaa käyttäjän tunnissa luomien uusien yhteyksien määrän." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Rajoittaa käyttäjän tunnissa palvelimelle lähettämien kyselyjen määrän." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9800,60 +9849,60 @@ msgstr "" "Rajoittaa, kuinka monta monta kertaa käyttäjä saa suorittaa tauluihin tai " "tietokantoihin muutoksia tekeviä komentoja tunnin aikana." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Sallii kaikkien käyttäjien prosessien näyttämisen" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Ei vaikutusta tässä MySQL-palvelimen versiossa." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sallii palvelinasetusten uudelleenlataamisen ja palvelimen välimuistin " "tyhjentämisen." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Sallii käyttäjän kysyä, missä ali- ja pääpalvelimet sijaitsevat." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Tarvitaan kahdennusta käyttävissä alipalvelimissa." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Sallii tietojen lukemisen." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Sallii koko tietokantaluettelon käytön." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Sallii SHOW CREATE VIEW -kyselyjen suorittamisen." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Sallii palvelimen sammuttamisen." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9863,173 +9912,173 @@ msgstr "" "saavutettu; Tarvitaan useissa pääkäyttäjän toiminnoissa kuten globaalien " "muuttujien asettamisessa ja muitten käyttäjien säikeiden lopettamisessa." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Sallii herättimien eli laukaisinten luomisen ja poistamisen" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Sallii tietojen muuttamisen." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Ei käyttöoikeuksia." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ei mitään" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Taulukohtaiset käyttöoikeudet" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Huom! MySQL-käyttöoikeuksien nimet ovat englanniksi" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Hallinta" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globaalit käyttöoikeudet" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Tietokantakohtaiset käyttöoikeudet" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Resurssirajoitukset" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Huom: Näiden valintojen asettaminen nollaksi (0) poistaa rajoituksen." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Kirjautumistiedot" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Älä vaihda salasanaa" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Käyttäjiä ei ole." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Käyttäjä %s on jo olemassa!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Uusi käyttäjä lisätty." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Käyttäjän %s käyttöoikeudet on päivitetty." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Käyttäjän %s käyttöoikeudet on poistettu" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Käyttäjän %s salasanan vaihto onnistui." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Poistetaan: %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Yhtään käyttäjää ei valittu poistettavaksi!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Ladataan käyttöoikeuksia uudelleen" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Valitsemiesi käyttäjien poisto onnistui." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Muokkaa käyttöoikeuksia" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Pura käyttöoikeudet" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Vienti" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Mikä tahansa" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Käyttöoikeudet" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Käyttöoikeudet" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Käyttäjien yleiskatsaus" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Valtuudet (GRANT)" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Poista valitut käyttäjät" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10042,52 +10091,52 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Sarakekohtaiset käyttöoikeudet" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Lisää käyttöoikeudet seuraavaan tietokantaan" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Lisää käyttöoikeudet seuraavaan tauluun" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... säilytä vanha käyttäjä." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... poista vanha käyttäjä käyttäjätauluista." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10095,85 +10144,85 @@ msgstr "" " ... poista käyttäjätauluista vanha käyttäjä ja päivitä sen jälkeen " "käyttöoikeudet." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Tietokanta käyttäjälle" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Anna tietokannalle "%s" kaikki oikeudet" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "globaali" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "tietokantakohtainen" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "korvausmerkki" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "Näkymä %s on poistettu" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Tuntematon virhe" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Isäntäpalvelimeen %s ei voida muodostaa yhteyttä." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Isäntäpalvelimen lokin sijaintia ei voida lukea. Isäntäpalvelimen " "käyttöoikeusongelmat mahdollisia." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Pääpalvelinta ei voitu vaihtaa" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "%s on onnistuneesti vaihdettu isäntäpalvelimeksi" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Tämä palvelin on määritelty kahdennustoiminnon isäntäpalvelimeksi." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Näytä isäntäpalvelimen tila" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Näytä alipalvelimet, joihin on muodostettu yhteys" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10182,11 +10231,11 @@ msgstr "" "Tätä palvelinta ei ole määritetty kahdennustoiminnon isäntäpalvelimeksi. " "Haluatko määrittää sen asetukset?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Isäntäpalvelimen asetukset" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10200,19 +10249,19 @@ msgstr "" "Voit myös oletusarvoisesti sivuuttaa kaikki tietokannat ja sallia vain " "tiettyjen tietokantojen kahdennuksen. Valitse tila:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Kahdenna kaikki tietokannat; Sivuuta:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Sivuuta kaikki tietokannat; Kahdenna:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Valitse tietokannat:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10220,7 +10269,7 @@ msgstr "" "Lisää nyt seuraavat rivit my.cnf-tiedostoosi ja käynnistä sitten MySQL-" "palvelin alusta." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10230,73 +10279,73 @@ msgstr "" "jälkeen esiin pitäisi tulla sanoman, joka kertoo, että palvelin on asetettu isäntäpalvelimeksi" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Palvelin on määritetty kahdennustoiminnon alipalvelimeksi. Mitä haluat tehdä?" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Näytä alipalvelimen tilan taulu" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Yhtenäistä tietokannat isäntäpalvelimen kanssa" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Ohjaa alipalvelinta:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Kokonäkymän alku" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Kokonäkymän loppu" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Nollaa alipalvelin" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "SQL Thread %s only" msgid "Start SQL Thread only" msgstr "SQL-säie %s vain" -#: server_replication.php:358 +#: server_replication.php:359 #, fuzzy #| msgid "SQL Thread %s only" msgid "Stop SQL Thread only" msgstr "SQL-säie %s vain" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "IO Thread %s only" msgid "Start IO Thread only" msgstr "IO-säie %s vain" -#: server_replication.php:363 +#: server_replication.php:364 #, fuzzy #| msgid "IO Thread %s only" msgid "Stop IO Thread only" msgstr "IO-säie %s vain" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Virheiden hallinta:" -#: server_replication.php:370 +#: server_replication.php:371 #, fuzzy #| msgid "pping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -10304,19 +10353,19 @@ msgstr "" "Isäntä- ja alipalvelin saattavat jäädä yhtenäistämättömiksi, mikäli virheet " "ohitetaan!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Ohita nykyinen virhe" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Ohita seuraava" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "virhettä." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10325,162 +10374,162 @@ msgstr "" "Tätä palvelinta ei ole määritetty kahdennustoiminnon alipalvelimeksi. " "Haluatko määrittää sen?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Säikeen %s lopetus onnistui." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "PhpMyAdmin ei voinut lopettaa säiettä %s. Se on ehkä jo suljettu." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Käsittelijä" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Kyselyvälimuisti" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Säikeet" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Väliaikaista tietoa" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Viivästetyt lisäyslauseet" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Avainvälimuisti" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Liitokset" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Lajittelu" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Transaktion koordinaattori" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Tyhjennä (sulje) kaikki taulut" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Näytä avoimet taulut" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Näytä alipalvelimet" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Näytä alipalvelimen tila" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Tyhjennä kyselymuisti" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Ajonaikaiset tiedot" -#: server_status.php:793 +#: server_status.php:792 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Näytä alipalvelimen tilan taulu" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Päivitä" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Suodatin" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Älä vaihda salasanaa" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Näytä avoimet taulut" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Näytä avoimet taulut" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relaatiot" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Kyselyn tyyppi" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "Tiedot" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10488,33 +10537,33 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Mukauta käynnistyssivua" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Tieto" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10522,18 +10571,18 @@ msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pää- ja " "alipalvelimena." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pääpalvelimena." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa ja alipalvelimena." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10541,11 +10590,11 @@ msgstr "" "Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Kahdennuksen tila" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10553,47 +10602,47 @@ msgstr "" "Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-" "palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Vastaanotettu" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Lähetetty" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "Enim. yhtäaikaisia yhteyksiä" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Epäonnistuneet yritykset" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Keskeytetty" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "Tunnus" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Komento" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -10604,16 +10653,16 @@ msgstr "" "\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa " "transaktiokyselyjen tallentamiseen." -#: server_status.php:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10625,11 +10674,11 @@ msgstr "" "nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin " "muistissa eikä levyllä." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10637,7 +10686,7 @@ msgstr "" "Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut " "kyselyjä suorittaessaan." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10645,7 +10694,7 @@ msgstr "" "Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien " "määrä (virheenä todennäköisesti päällekkäinen avain)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10653,23 +10702,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED -rivien kirjoituksia." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "FLUSH-kyselyjä suoritettu." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Sisäisten COMMIT-kyselyjen määrä." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi." -#: server_status.php:1334 +#: 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 " @@ -10679,7 +10728,7 @@ msgstr "" "tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. " "discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän." -#: server_status.php:1335 +#: 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, " @@ -10690,7 +10739,7 @@ msgstr "" "läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen " "col1:sen olevan indeksoitu sarake." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10698,7 +10747,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:1337 +#: server_status.php:1336 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 " @@ -10708,7 +10757,7 @@ msgstr "" "avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita " "käyttämällä rajauksia tai jos suoritetaan indeksihaku." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10717,7 +10766,7 @@ msgstr "" "avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC " "-kyselyllä optimoimiseen." -#: server_status.php:1339 +#: 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 " @@ -10730,7 +10779,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:1340 +#: server_status.php:1339 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 " @@ -10742,35 +10791,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:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Sisäisten ROLLBACK-kyselyjen määrä." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Taulun rivien päivityspyyntöjen määrä." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Kertoo tauluihin lisättyjen rivien määrän." -#: server_status.php:1344 +#: server_status.php:1343 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:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Vapaiden sivujen määrä." -#: server_status.php:1348 +#: 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 " @@ -10780,7 +10829,7 @@ msgstr "" "parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden " "välimuistia ei voida tyhjentää syystä tai toisesta." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10792,11 +10841,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:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Puskurivarannon kokonaiskoko sivuina." -#: server_status.php:1351 +#: 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." @@ -10804,7 +10853,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:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10812,11 +10861,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:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä." -#: server_status.php:1354 +#: 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." @@ -10824,7 +10873,7 @@ msgstr "" "Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa " "puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun." -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10838,55 +10887,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:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Fsync()-toimenpiteitä tähän mennessä." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Tähän mennessä luetun tiedon määrä tavuina." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan." -#: server_status.php:1364 +#: server_status.php:1363 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:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -10894,35 +10943,35 @@ msgstr "" "Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin " "tyhjentymistä jouduttiin odottamaan ennen jatkamista." -#: server_status.php:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Lokitiedostojen fsync()-kirjoitusten määrä." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Lokitiedoston avointen fsync-synkronointien määrä." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Avoimet lokitiedostokirjoitukset." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Lokitiedostoon kirjoitettujen tavujen määrä." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Luotujen sivujen määrä." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10931,52 +10980,52 @@ msgstr "" "arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen " "koko tavuina." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Luettujen rivien määrä." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Kirjoitettujen sivujen määrä." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Tällä hetkellä odotettavien rivilukitusten määrä." -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina." -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina." -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina." -#: server_status.php:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB-tauluista poistettujen rivien määrä." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB-tauluihin lisättyjen rivien määrä." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB-taulusta luettujen rivien määrä." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB-taulun päivitettyjen rivien määrä." -#: server_status.php:1387 +#: 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." @@ -10985,7 +11034,7 @@ msgstr "" "muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto " "tunnetaan yleisesti nimellä Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -10994,26 +11043,26 @@ msgstr "" "avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan " "käytössä." -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Tuotavan tiedoston muoto" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -11024,27 +11073,27 @@ msgstr "" "asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea " "lausekkeella Key_reads / Key_read_requests." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -11055,18 +11104,18 @@ msgstr "" "kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole " "vielä koottu." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11074,39 +11123,39 @@ msgstr "" "Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa " "olla liian alhainen." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Avoinna olevien tiedostojen määrä." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Avoinna olevien taulujen määrä." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Kyselyvälimuistin vapaan muistin määrä." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Välimuistiosumien määrä." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Välimuistiin lisättyjen kyselyjen määrä." -#: server_status.php:1408 +#: 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 " @@ -11119,7 +11168,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:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11128,19 +11177,19 @@ msgstr "" "tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne " "query_cache_type-asetuksen takia)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Rekisteröityjen kyselyjen määrä välimuistissa." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -11148,11 +11197,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -11161,7 +11210,7 @@ msgstr "" "rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa " "huolella.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11169,17 +11218,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11187,13 +11236,13 @@ msgstr "" "Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on " "käynnistyksestään lähtien yrittänut suorittaa transaktioita." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11201,14 +11250,14 @@ msgstr "" "Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin " "slow_launch_time sekuntia." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11217,25 +11266,25 @@ msgstr "" "Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, " "sort_buffer-muuttujan arvoa voi suurentaa." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Lajiteltujen rivien määrä." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti." -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11247,7 +11296,7 @@ msgstr "" "hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai " "käyttää hyödyksi kahdennusta." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11257,11 +11306,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11273,73 +11322,73 @@ msgstr "" "säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta " "suorituskykyyn.)" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Seuranta ei ole käytössä." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Hereillä olevien säikeiden määrä." -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Käynnistä" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Käytä indeksiä/indeksejä" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Päivitä" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR-tekstikentän sarakkeet" -#: server_status.php:1627 +#: server_status.php:1626 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Virheiden hallinta:" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Palauta oletusarvoon" -#: server_status.php:1632 +#: server_status.php:1631 #, fuzzy msgid "Monitor Instructions" msgstr "Tiedot" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11348,7 +11397,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11356,18 +11405,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11375,11 +11424,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11387,97 +11436,97 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Tuhoa tietokanta" -#: server_status.php:1680 +#: server_status.php:1679 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "Näytä alipalvelimen tilan taulu" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Valitse taulut" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Virheellinen taulun nimi" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Lisää uusi palvelin" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL-kyselyt" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Näytä tilastot" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Valitse taulut" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Kyselyn tyyppi" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11485,7 +11534,7 @@ msgid_plural "%d seconds" msgstr[0] "Sekunti" msgstr[1] "Sekunti" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11493,112 +11542,112 @@ msgid_plural "%d minutes" msgstr[0] "Minuutti" msgstr[1] "Minuutti" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Lähteeseen ei voida muodostaa yhteyttä" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Kohteeseen ei voida muodostaa yhteyttä" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Tietokantaa '%s' ei ole olemassa." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Rakenteen yhtenäistäminen" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Tietojen yhtenäistäminen" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "ei käytössä" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Rakenne-erot" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Tietojen erot" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Lisää sarake/sarakkeita" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Poista sarake/sarakkeet" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Muuta saraketta/sarakkeita" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Poista indeksi(t)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Käytä indeksiä/indeksejä" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Päivitä rivi(t)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Lisää rivi/rivejä" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Haluatko poistaa kaikki edelliset rivit kohdetauluista?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Tee valitut muutokset" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Yhtenäistä tietokannat" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Valitut kohdetaulut on yhtenäistetty lähdetaulujen kanssa." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Kohdetietokanta on yhtenäistetty lähdetietokannan kanssa" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL-kyselyt" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Syötä käsin" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Nykyinen yhteys" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Asetustiedosto" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Pistoke" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11606,19 +11655,19 @@ msgstr "" "Kohdetietokanta yhtenäistetään täydellisesti lähdetietokantaan. " "Lähdetietokanta pysyy muuttumattomana." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Palvelimen muuttujat ja asetukset" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Tämän istunnon arvo" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Globaali arvo" @@ -12010,189 +12059,189 @@ msgstr "" msgid "Wrong data" msgstr "Ei tietokantoja" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Haluatko varmasti " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Näytetään PHP-koodina" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Tarkista SQL-lause" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL-kyselyn tulos" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Luontiympäristö" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Taulun \"%s\" indeksien kanssa on ongelmia" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Tunniste" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Taulun %1$s muuttaminen onnistui." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Valitsemiesi käyttäjien poisto onnistui." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Maalis" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Sarake" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Inline" msgctxt "Chart type" msgid "Spline" msgstr "Muokkaus" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "Pt" -#: tbl_chart.php:93 +#: tbl_chart.php:96 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Pakattu" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Raportin otsikko" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL-kyselyt" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Arvo" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Arvo" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Taulu %s on jo olemassa!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Taulu %1$s on luotu." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Tee vedos taulusta" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Näytä palvelinten valinta" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 #, fuzzy #| msgid "Right" msgid "Height" msgstr "Oikea" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "CHAR textarea columns" msgid "Label column" msgstr "CHAR-tekstikentän sarakkeet" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- ei mitään -" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Lokitiedostojen määrä" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Tallenna tiedostoon" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12210,32 +12259,32 @@ msgstr "Indeksiä ei voi muuttaa PRIMARY-nimiseksi!" msgid "No index parts defined!" msgstr "Indeksin osia ei ole määritelty!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Apply index(s)" msgid "Add index" msgstr "Käytä indeksiä/indeksejä" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Muokkaustila" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Indeksin nimi:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" saa olla vain ja ainoastaan perusavaimen nimenä!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Indeksin tyyppi:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Lisää indeksiin %s sarake(tta)" @@ -12258,160 +12307,160 @@ msgstr "Taulu %s on siirretty %s." msgid "Table %s has been copied to %s." msgstr "Taulu %s on kopioitu uuteen tauluun %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Taulun nimi puuttuu!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Lajittele taulu" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(yksitellen)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Siirrä taulu toiseen tauluun (tietokanta.taulu):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Taulun valinnat" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Nimeä taulu uudelleen" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopioi taulu toiseen tauluun nimellä (tietokanta.taulu):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Siirry kopioituun tauluun" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Taulun ylläpito" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Eheytä taulu" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Taulun %s välimuisti on tyhjennetty" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Tyhjennä taulun välimuisti (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" msgstr "Poista tämän taulun seurantatiedot" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Tyhjennä taulu (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy #| msgid "Go to database" msgid "Delete the table (DROP)" msgstr "Siirry tietokantaan" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Osituksen ylläpito" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Ositus %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analysoi" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Tarkasta" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimoi" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Rakenna uudestaan" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Korjaa" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Poista ositus" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Tarkista viitteiden eheys:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Näytä taulut" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Levytilan käyttö" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Pätevä" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Rivitilastot" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "staattinen" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dynaaminen" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Rivin pituus" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Rivin koko" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Virhe luotaessa kohteen %1$s viiteavainta (tarkista tietotyypit)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Sisäiset relaatiot" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12419,123 +12468,123 @@ msgstr "" "Sisäistä relaatiota ei tarvita, kun vastaava FOREIGN KEY -relaatio on " "olemassa." -#: tbl_relation.php:412 +#: tbl_relation.php:415 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" msgstr "Viiteavaimen rajoitus" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Selaa erilaisia arvoja" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 #, fuzzy #| msgid "Adding Primary Key" msgid "Add primary key" msgstr "Pääavaimen lisäys" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Apply index(s)" msgid "Add SPATIAL index" msgstr "Käytä indeksiä/indeksejä" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Ei mitään" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Taulu %s on poistettu" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Sarakkeelle %s on luotu perusavain" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Sarakkeelle %s on lisätty indeksi" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show versions" msgid "Show more actions" msgstr "Näytä versiot" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Poista sarake/sarakkeet" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Tulostusversio" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Relaationäkymä" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Esitä taulun rakenne" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Lisää sarake/sarakkeita" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Taulun loppuun" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Taulun alkuun" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Jälkeen sarakkeen: %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "ositettu" @@ -12702,77 +12751,39 @@ msgstr "Seuraa näitä tiedon käsittelyn lauseita:" msgid "Create version" msgstr "Luo versio" -#: tbl_zoom_select.php:231 -#, 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: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Additional search criteria" -msgstr "Piilota hakusanat" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -#, fuzzy -#| msgid "Maximum number of rows to display" -msgid "Maximum rows to plot" -msgstr "Näytettävien rivien enimmäismäärä" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -#| msgid "Control user" -msgid "How to use" -msgstr "Hallintakäyttäjä" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Palauta" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Hae teemoja lisää!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Mahdolliset MIME-tyypit" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "Kursivoiduilla MIME-tyypeillä ei ole erillistä muunnostoimintoa" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Mahdolliset muunnokset" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Kuvaus" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Sinulla ei ole riittäviä oikeuksia!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profiili on päivitetty." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "VIEW-arvon nimi" diff --git a/po/fr.po b/po/fr.po index 27a6e4a2ec..df8e92641a 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,8 +3,8 @@ 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-04 13:49+0200\n" -"PO-Revision-Date: 2012-05-25 18:45+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"PO-Revision-Date: 2012-06-20 18:40+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: none\n" "Language: fr\n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Tout afficher" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Page n° : " -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "navigateur bloque les mises à jour entre fenêtres pour des raisons de " "sécurité." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Exécuter" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Nom de l'index" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Description" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Utiliser cette valeur" @@ -108,88 +108,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "La base de données %1$s a été créée." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Commentaire sur la base de données: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Commentaires sur la table" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Colonne" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Défaut" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Relié à" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Commentaires" @@ -198,14 +199,14 @@ msgstr "Commentaires" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Non" @@ -218,120 +219,120 @@ msgstr "Non" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Oui" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Voir une exportation (schéma) de la base de données" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Aucune table n'a été trouvée dans cette base." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Tout sélectionner" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Tout désélectionner" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Le nom de la base de données est vide !" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "La base de données %1$s a été renommée en %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "La base de données %1$s a été copiée sur %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Changer le nom de la base de données pour" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Supprimer la base de données" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "La base de données %s a été effacée." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Supprimer la base de données (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Copier la base de données vers" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Structure seule" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Structure et données" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Données seulement" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Faire CREATE DATABASE avant la copie" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Ajouter %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Inclure la valeur courante de l'AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Inclure les contraintes de clés étrangères" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Aller à la base de données copiée" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Interclassement" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -340,59 +341,59 @@ msgstr "" "Le stockage de configurations phpMyAdmin a été désactivé. Pour une analyse " "du problème, cliquez %sici%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Éditer ou exporter un schéma relationnel" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Table" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Lignes" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Taille" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "utilisé" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Création" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Dernière modification" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Dernière vérification" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -403,210 +404,210 @@ msgstr[1] "%s tables" msgid "You have to choose at least one column to display" msgstr "Vous devez choisir au moins une colonne à afficher" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Passer au %smode visuel%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Tri" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Croissant" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Décroissant" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Afficher" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Critère" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ajouter" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Et" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Effacer" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ou" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Modifier" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Ajouter/effacer des lignes" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Ajouter/effacer des colonnes" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Mise-à-jour de la requête" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Utiliser les tables" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Requête SQL sur la base %s : " -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Exécuter la requête" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Accès refusé" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "au moins un mot" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "tous les mots" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "phrase exacte" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "expression réguliére" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Résultats de la recherche de «%s» %s : " -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total : %s occurence" msgstr[1] "Total : %s occurences" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Effectuer une nouvelle recherche dans la base de données" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Mots ou valeurs à rechercher (passe-partout: «%») : " -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Type de recherche : " -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Séparer les mots par un espace (« »)." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Dans les tables : " -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Dans la colonne : " -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Aucune table n'a été trouvée dans cette base" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "inconnu" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "La table %s a été vidée" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "La vue %s a été supprimée" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "La table %s a été effacée" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Le suivi est actif." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Le suivi n'est pas activé." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -615,185 +616,186 @@ msgstr "" "Cette vue contient au moins ce nombre de lignes. Veuillez référer à " "%sdocumentation%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Réplication" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Somme" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Pour la sélection : " -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Tout cocher" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporter" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Version imprimable" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Vider" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Supprimer" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Vérifier la table" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimiser la table" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Réparer la table" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyser la table" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Ajouter un préfixe à la table" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Remplacer le préfixe de table" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copier la table avec un préfixe" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dictionnaire de données" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Tables faisant l'objet d'un suivi" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Base de données" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Dernière version" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Créé" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Mis à jour" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "État" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Action" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Supprimer les données de suivi de cette table" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "actif" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "non activé" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versions" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Rapport de suivi" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Instantané" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Tables ne faisant pas l'objet d'un suivi" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Suivre la table" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Journal de la base de données" @@ -805,16 +807,16 @@ msgstr "Type incorrect !" msgid "Selected export type has to be saved in file!" msgstr "Ce choix d'exportation doit être sauvegardé dans un fichier !" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Paramètres incorrects !" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Espace-disque insuffisant pour enregistrer le fichier %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -822,14 +824,14 @@ msgstr "" "Le fichier %s existe déjà sur le serveur, veuillez changer le nom, ou cocher " "l'option d'écrasement des fichiers existants." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" "Le serveur web n'a pas les permissions nécessaires pour enregistrer le " "fichier %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Le fichier d'exportation a été sauvegardé sous %s." @@ -838,86 +840,86 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s." msgid "Invalid export type" msgstr "Type d'exportation invalide" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Valeur pour la colonne «%s»" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utiliser OpenStreetMaps comme couche de base" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Géométrie" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Point" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Point %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Ajouter un point" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Ligne" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Anneau extérieur" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Anneau intérieur" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Ajouter une ligne" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Ajouter un anneau intérieur" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Polygone" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Ajouter un polygone" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Ajouter géométrie" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Résultat" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -925,7 +927,7 @@ msgstr "" "Choisissez «GeomFromText» dans la colonne «Fonction» et collez la chaîne " "dans le champ «Valeur»" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -935,21 +937,21 @@ msgstr "" "Veuillez vous référer à la %sdocumentation%s pour des façons de contourner " "cette limite." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Affichage du signet" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Le signet a été effacé." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Le fichier n'a pu être lu" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -958,7 +960,7 @@ msgstr "" "Vous avez tenté d'importer un fichier dont le mode de compression (%s) n'est " "pas supporté par votre configuration PHP ou est désactivé dans celle-ci." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -969,28 +971,28 @@ msgstr "" "par votre configuration de PHP. Voir [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Conversion de caractères impossible sans bibliothèque de conversion" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Chargement impossible des greffons d'importation, veuillez vérifier votre " "installation !" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Signet %s créé" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "L'importation s'est terminée avec succès, %d requêtes exécutées." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -998,7 +1000,7 @@ msgstr "" "La limite de temps a été atteinte; si vous voulez terminer l'importation, " "soumettez à nouveau le même fichier et l'importation continuera." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1007,25 +1009,25 @@ msgstr "" "signifie que phpMyAdmin ne pourra terminer cette importation, à moins que la " "limite de temps de PHP ne soit augmentée." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Retour" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin est plus convivial avec un navigateur supportant les cadres." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "La commande «DROP DATABASE» est désactivée." @@ -1034,7 +1036,7 @@ msgstr "La commande «DROP DATABASE» est désactivée." msgid "Do you really want to execute \"%s\"?" msgstr "Voulez-vous vraiment exécuter «%s» ?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !" @@ -1074,7 +1076,7 @@ msgstr "Ajouter Index" msgid "Edit Index" msgstr "Modifier un index" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Ajouter %d colonne(s) à l'index" @@ -1092,16 +1094,16 @@ msgstr "Le nom de serveur est vide !" msgid "The user name is empty!" msgstr "Le nom d'utilisateur est vide !" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Le mot de passe est vide !" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques !" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Ajouter un utilisateur" @@ -1118,23 +1120,24 @@ msgstr "Effacement des utilisateurs sélectionnés" msgid "Close" msgstr "Fermer" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Modifier" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Graphique du trafic en temps réel" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Graphique des connexions et processus en temps réel" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Graphique des requêtes en temps réel" @@ -1144,24 +1147,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Autres" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "  " #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1181,7 +1184,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Processus" @@ -1199,7 +1202,7 @@ msgstr "Questions depuis le dernier rafraîchissement" msgid "Questions (executed statements by the server)" msgstr "Questions (énoncés exécutés par le serveur)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Statistiques sur les requêtes" @@ -1244,14 +1247,14 @@ msgid "System swap" msgstr "Zone d'échange" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "Kio" @@ -1303,32 +1306,32 @@ msgstr "Octets envoyés" msgid "Bytes received" msgstr "Octets reçus" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Connexions" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "o" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "Eio" @@ -1342,11 +1345,11 @@ msgstr "%d table(s)" msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Trafic" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Paramètres" @@ -1366,11 +1369,11 @@ msgstr "Ajouter graphique à la grille" msgid "Please add at least one variable to the series" msgstr "Veuillez ajouter au moins une variable à la série" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Aucune" @@ -1470,7 +1473,7 @@ msgstr "Changer les paramètres" msgid "Current settings" msgstr "Paramètres courants" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Titre du graphique" @@ -1556,7 +1559,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Moment" @@ -1579,7 +1582,7 @@ msgstr "Tableau" #: js/messages.php:191 msgid "Edit chart" -msgstr "Éditer le graphique" +msgstr "Modifier le graphique" #: js/messages.php:192 msgid "Series" @@ -1650,10 +1653,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:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" @@ -1701,9 +1704,9 @@ msgstr "Variable / formule utilisée" msgid "Test" msgstr "Test" -#: 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 +#: 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 msgid "Cancel" msgstr "Annuler" @@ -1715,11 +1718,11 @@ msgstr "Chargement en cours" msgid "Processing Request" msgstr "Requête en traitement" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Erreur dans le traitement de la requête" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Aucune base de données n'a été sélectionnée." @@ -1731,9 +1734,9 @@ msgstr "Suppression de la colonne" msgid "Adding Primary Key" msgstr "Ajout de clé primaire" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1773,15 +1776,15 @@ msgstr "Cacher les index" msgid "Show indexes" msgstr "Montrer les index" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Vérification des clés étrangères : " -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Activée)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Désactivée)" @@ -1809,7 +1812,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "Éditeur ENUM/SET" @@ -1848,8 +1851,8 @@ msgstr "Montrer zone SQL" msgid "No rows selected" msgstr "Aucune ligne n'a été sélectionnée" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Modifier" @@ -1857,18 +1860,18 @@ msgstr "Modifier" msgid "Query execution time" msgstr "Durée d'exécution de la requête" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Sauvegarder" @@ -1880,7 +1883,7 @@ msgstr "Cacher les critères de recherche" msgid "Show search criteria" msgstr "Afficher les critères de recherche" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Recherche par zoom" @@ -1894,10 +1897,9 @@ msgstr "Survoler un point montrera sa description." #: js/messages.php:304 msgid "To zoom in, select a section of the plot with the mouse." -msgstr "Pour faire un zoom avant, sélectionnez une section avec la souris." +msgstr "Pour zoomer, sélectionnez une section avec la souris." #: 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 "Cliquez le lien «Réinitialiser zoom» pour revenir à l'état original." @@ -1929,12 +1931,12 @@ msgstr "Opérations sur les résultats" msgid "Data point content" msgstr "Données reliées à ce point" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Copier" @@ -1954,7 +1956,7 @@ msgstr "Choisissez la clé étrangère" msgid "Please select the primary key or a unique key" msgstr "Veuillez choisir la clé primaire ou un index unique" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Colonne descriptive" @@ -2048,7 +2050,7 @@ msgstr "Générer" msgid "Change Password" msgstr "Modifier le mot de passe" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "plus" @@ -2139,63 +2141,63 @@ msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Décembre" @@ -2233,32 +2235,32 @@ msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sam" @@ -2375,16 +2377,16 @@ msgstr "" "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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "par seconde" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "par minute" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "par heure" @@ -2407,22 +2409,208 @@ msgstr "" msgid "Font size" msgstr "Taille du texte" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Sauvegarder les données modifiées" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Restaurer l'ordre des colonnes" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Début" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Précédent" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Suivant" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Fin" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Ligne de départ" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Nombre de lignes" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Mode" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontal" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontal (en-têtes pivotés)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertical" + +#: libraries/DisplayResults.class.php:702 +#, php-format +#| msgid "Headers every" +msgid "Headers every %s rows" +msgstr "En-têtes à chaque %s ligne" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Trier sur l'index" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Options" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Textes réduits" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Textes complets" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Relations : clés" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Relations : colonnes descriptives" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Montrer le contenu binaire" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Montrer le contenu BLOB" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Montrer le contenu binaire en hexadécimal" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Masquer les transformations" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Well Known Text" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Well Known Binary" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Supprimer" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Peut être approximatif. Voir [a@./Documentation.html#faq3_11@Documentation]" +"FAQ 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "dans la requête" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Affichage des lignes" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "total" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Traitement en %01.4f sec" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Opérations sur les résultats de la requête" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Version imprimable (avec textes complets)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Afficher le graphique" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Visualiser les données GIS" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Créer une vue" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Lien absent" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" "Les messages d'erreur sont trop nombreux, certains ne sont pas affichés." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Le fichier n'était pas un fichier téléversé." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "La taille du fichier téléchargé dépasse la limite permise par la directive " "upload_max_filesize de php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2430,27 +2618,27 @@ msgstr "" "La taille du fichier téléchargé dépasse la limite permise par la directive " "MAX_FILE_SIZE présente dans le formulaire HTML." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Le fichier n'a été que partiellement téléchargé." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Répertoire temporaire manquant." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Erreur lors de l'écriture du fichier sur disque." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Téléchargement arrêté par l'extension." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Erreur inconnue durant le téléchargement." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2458,26 +2646,39 @@ msgstr "" "Erreur lors du déplacement du fichier téléchargé, voir [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Erreur lors du déplacement du fichier téléversé." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Impossible de lire le fichier téléversé (déplacé)." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Ouvrir une nouvelle fenêtre phpMyAdmin" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Vous devez accepter les cookies pour poursuivre." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "Javascript doit être activé" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Index" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unique" @@ -2490,8 +2691,8 @@ msgstr "Compressé" msgid "Cardinality" msgstr "Cardinalité" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Commentaire" @@ -2514,128 +2715,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Bases de données" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Serveur" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Structure" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Insérer" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Opérations" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Suivi" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "La table semble vide !" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "La base de données semble vide !" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Requête" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilèges" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Procédures stockées" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Événements" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Concepteur" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Utilisateurs" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synchroniser" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Log binaire" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variables" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Jeux de caractères" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Plug-ins" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Moteurs" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Erreur" @@ -2660,7 +2861,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d ligne insérée." msgstr[1] "%1$d lignes insérées." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Erreur pendant la création du PDF : " @@ -2754,16 +2955,98 @@ 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 +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 +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 +msgid "Value" +msgstr "Valeur" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Recherche dans la table" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Modifier/Insérer" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Choisir les colonnes (au moins une) : " + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Critères de recherche (pour l'énoncé «where») : " + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Nombre de lignes par page" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Ordre d'affichage : " + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Utiliser cette colonne pour décrire chaque point" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Nombre maximum de lignes de données à utiliser pour le graphique" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Afficher les valeurs de la table liée" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Critères de recherche supplémentaires" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Faites une recherche «par valeur» (passepartout: «% ») sur deux colonnes " +"différentes" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Recherche «par valeur» (passepartout: «% »)" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Afficher/Modifier les points" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Consignes d'utilisation" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "Réinitialiser le zoom" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Chemin des images inexistant pour le thème %s !" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Prévisualisation non disponible." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "utiliser celui-ci" @@ -2782,7 +3065,7 @@ msgstr "Thème %s inexistant !" msgid "Theme path not found for theme %s!" msgstr "Chemin non trouvé pour le thème %s !" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Thème" @@ -3145,13 +3428,13 @@ msgstr "Une énumération, choisie parmi la liste de valeurs définies" msgid "Cannot connect: invalid settings." msgstr "Connexion impossible: paramètres incorrects." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Bienvenue dans %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3160,7 +3443,7 @@ 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." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3176,42 +3459,38 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Impossible d'utiliser Blowfish depuis mcrypt !" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Javascript doit être activé" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "Votre session a expiré. Veuillez vous connecter à nouveau." -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Connexion" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Vous pouvez entrer le nom du serveur ou son adresse IP, ainsi que le port " "séparé par un espace." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Serveur : " -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Utilisateur : " -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Mot de passe : " -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Choix du serveur" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Vous devez accepter les cookies pour poursuivre." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3219,19 +3498,19 @@ msgstr "" "La configuration interdit une connexion sans mot de passe (voir " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Aucune activité depuis %s secondes ou plus, veuillez vous reconnecter" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Connexion au serveur MySQL non permise" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Erreur d'utilisateur/mot de passe. Accès refusé." @@ -3263,7 +3542,7 @@ msgstr "partagé" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tables" @@ -3275,13 +3554,13 @@ msgstr "Tables" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Données" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Perte" @@ -3306,19 +3585,11 @@ msgstr "Vérifier les privilèges pour la base de données "%s"." msgid "Check Privileges" msgstr "Vérifier les privilèges" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "vulnérabilité possible" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "Clé numérique détectée" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Impossible de lire le fichier de configuration" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3326,13 +3597,13 @@ msgstr "" "Ceci indique habituellement qu'il y a une erreur de syntaxe, veuillez " "vérifier si une erreur s'affiche plus bas." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Chargement de la configuration par défaut impossible depuis %1$s" # OK -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3340,208 +3611,194 @@ msgstr "" "Le paramètre [code]$cfg['PmaAbsoluteUri'][/code] DOIT être renseigné dans " "votre fichier de configuration !" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Indice de serveur invalide: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom d'hôte invalide pour le serveur %1$s. Veuillez vérifier votre " "configuration." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" "Le fichier de configuration contient un type d'authentification invalide : " -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Vous devriez utiliser %s en version %s ou plus récente." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "Tentative d'écrasement de GLOBALS" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "vulnérabilité possible" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "Clé numérique détectée" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Taille maximum: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Documentation" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "fr" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "Requête SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL a répondu: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Connexion au validateur SQL impossible !" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Expliquer SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Ne pas expliquer SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Sans source PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Créer source PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Actualiser" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Ne pas valider SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valider SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Éditer cette requête en place" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "En ligne" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profilage" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Dim" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y à %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s jours, %s heures, %s minutes et %s secondes" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Paramètre manquant : " -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Début" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Précédent" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Suivant" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Fin" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Aller à la base de données "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Cliquer pour basculer" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Parcourir : " -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format 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:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Le répertoire de transfert est inaccessible" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Aucun fichier n'est disponible pour le transfert" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Exécuter" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Imprimer" @@ -3571,8 +3828,8 @@ msgid "Closed" msgstr "Fermé" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Désactivé" @@ -3714,9 +3971,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Réinitialiser" @@ -3941,10 +4198,6 @@ msgstr "Cacher les actions dans la structure de table" msgid "Show binary contents as HEX by default" msgstr "Montrer par défaut le contenu binaire en hexadécimal" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Montrer le contenu binaire en hexadécimal" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Montrer la liste des bases de données au lieu d'un menu déroulant" @@ -4001,7 +4254,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Durée maximum d'exécution" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Transmettre" @@ -4010,7 +4263,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4114,7 +4367,7 @@ msgid "MIME type" msgstr "Type MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relations" @@ -5721,9 +5974,9 @@ msgstr "Requiert que le validateur SQL soit activé" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Mot de passe" @@ -6014,14 +6267,6 @@ msgstr "" msgid "Details..." msgstr "Détails..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Peut être approximatif. Voir [a@./Documentation.html#faq3_11@Documentation]" -"FAQ 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6029,18 +6274,18 @@ msgstr "" "La connexion au controluser tel que défini dans votre configuration a échoué." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Modifier le mot de passe" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Aucun mot de passe" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Entrer à nouveau" @@ -6061,22 +6306,22 @@ msgstr "Créer une base de données" msgid "Create" msgstr "Créer" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Aucun privilège" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nom" @@ -6233,25 +6478,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Conversion de l'encodage : " -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s sous la branche %2$s" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "aucune branche" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Révision Git" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "enregistrée le %1$s par %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "l'auteur était %2$s en date du %1$s" @@ -6371,173 +6616,27 @@ msgstr "Options spécifiques au format : " msgid "Language" msgstr "Langue" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Sauvegarder les données modifiées" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Restaurer l'ordre des colonnes" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Ligne de départ" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Nombre de lignes" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Mode" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontal" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontal (en-têtes pivotés)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertical" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every" -msgid "Headers every %s rows" -msgstr "En-têtes à chaque" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Trier sur l'index" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Options" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Textes réduits" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Textes complets" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Relations : clés" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Relations : colonnes descriptives" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Montrer le contenu binaire" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Montrer le contenu BLOB" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Masquer les transformations" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Well Known Text" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Well Known Binary" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "La ligne a été effacée" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Supprimer" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "dans la requête" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Affichage des lignes" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "total" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Traitement en %01.4f sec" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Opérations sur les résultats de la requête" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Version imprimable (avec textes complets)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Afficher le graphique" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Visualiser les données GIS" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Créer une vue" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Lien absent" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Version" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Répertoire des données" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Le chemin du répertoire pour tous les fichiers de données InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Fichiers de données" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Auto-croissant: taille de l'incrément" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6545,11 +6644,11 @@ msgstr "" "La valeur de l'incrément lors de l'agrandissement du fichier auto-croissant " "lorsqu'il devient plein." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Taille de la mémoire-tampon" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6557,79 +6656,79 @@ msgstr "" "La taille de la mémoire-tampon utilisée par InnoDB pour les opérations " "d'antémoire sur les données et les index." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Mémoire-tampon" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "État InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Utilisation de la mémoire-tampon" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "pages" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Pages libres" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Pages modifiées" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Pages contenant des données" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Pages devant être vidées" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Pages occupées" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Pages verrouillées" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Activité de la mémoire-tampon" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Requêtes de lecture" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Requêtes d'écriture" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Lectures non-satisfaites" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Nombre d'attentes d'écriture" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Lectures non-satisfaites en %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Nombre d'attentes d'écriture en %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Taille du pointeur de données" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6637,11 +6736,11 @@ msgstr "" "La taille en octets du pointeur qui servira lors d'un CREATE TABLE sur une " "table MyISAM si aucune option MAX_ROWS n'est indiquée." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Mode de recouvrement automatique" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6649,11 +6748,11 @@ msgstr "" "Le mode de recouvrement automatique en cas de tables MyISAM en mauvais état, " "tel que réglé via l'option --myisam-recover au départ du serveur." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Taille maximum pour les fichiers de tri temporaires" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6663,13 +6762,13 @@ msgstr "" "pour recréer un index MyISAM (durant un REPAIR TABLE, ALTER TABLE ou LOAD " "DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" "La taille maximum pour les fichiers temporaires utilisés lors de la création " "d'index" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6679,11 +6778,11 @@ msgstr "" "devrait s'avérer plus volumineux que d'employer la cache des clés (la " "différence étant spécifiée ici), utiliser la méthode de cache des clés." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Nombre de fils d'exécution pour la réparation" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6692,11 +6791,11 @@ msgstr "" "en parallèle (chaque index dans son propre fil d'exécution) lors d'une " "réparation." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Taille de la mémoire tampon" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6705,11 +6804,11 @@ msgstr "" "opération REPAIR TABLE ou pour créer les index lors d'un CREATE INDEX ou " "ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Taille du cache d'index" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6718,11 +6817,11 @@ msgstr "" "de 32 Mio. La mémoire allouée ici est utilisée pour le cache des pages " "d'index." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Taille du cache des enregistrements" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6732,11 +6831,11 @@ msgstr "" "défaut est de 32 Mio. Cette mémoire est utilisée pour le cache des " "changements aux fichiers de données (.xtd) et pointeurs (.xtr)." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Taille du cache du journal" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6744,11 +6843,11 @@ msgstr "" "La quantité de mémoire allouée au cache du journal des transactions. La " "valeur par défaut est de 16 Mio." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Seuil du fichier journal" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6756,11 +6855,11 @@ msgstr "" "La taille d'un journal de transactions au-delà de laquelle un nouveau " "journal est créé. La valeur par défaut est de 16 Mio." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Taille du tampon des transactions" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6768,11 +6867,11 @@ msgstr "" "La taille du tampon du journal global des transactions (deux tampons sont " "alloués). La valeur par défaut est de 1 Mio." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Fréquence des points de contrôle" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6780,11 +6879,11 @@ msgstr "" "La quantité de données écrite au journal de transactions avant un point de " "contrôle. La valeur par défaut est de 24 Mio." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Seuil du journal des données" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6797,11 +6896,11 @@ msgstr "" "pour augmenter la quantité totale de données pouvant être stockée dans la " "base de données." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Seuil des informations parasites" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6810,11 +6909,11 @@ msgstr "" "duquel il est comprimé. Il s'agit d'une valeur entre 1 et 99. La valeur par " "défaut est 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Taille du tampon du journal" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6824,29 +6923,29 @@ msgstr "" "défaut est de 256 Mio. Le moteur alloue un tampon par fil, seulement si le " "fil doit écrire dans un journal." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Taille de l'augmentation du fichier des données" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" "La taille de l'augmentation des fichiers pointeurs d'enregistrements (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Taille d'augmentation du fichier des enregistrements" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" "La taille de l'augmentation des fichiers pointeurs d'enregistrements (.xtr)." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Nombre de fichiers journal" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6857,7 +6956,7 @@ msgstr "" "le système. Si le nombre de journaux dépasse cette valeur, les journaux les " "plus anciens sont détruits, sinon ils sont renommés." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6866,11 +6965,11 @@ msgstr "" "La documentation de PBXT et des informations additionnelles sont disponibles " "sur %sle site de PrimeBase XT%s." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Liens connexes" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "Le blogue de PrimeBase XT par Paul McCullagh" @@ -6917,14 +7016,14 @@ msgstr "Contenu de la table" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Événement" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Définition" @@ -6982,14 +7081,14 @@ msgstr "Afficher les types MIME" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Client" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Généré le" @@ -7200,21 +7299,12 @@ msgstr "Vues" msgid "Export contents" msgstr "Exporter le contenu" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Ouvrir une nouvelle fenêtre phpMyAdmin" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Données non disponibles pour visualisation GIS." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "Tentative d'écrasement de GLOBALS" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7317,12 +7407,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Nom de la table" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Nom des colonnes" @@ -7392,95 +7482,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Fonction" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Cacher" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binaire" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binaire - ne pas éditer" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "répertoire de transfert du serveur web" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Modifier/Insérer" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuer l'insertion avec %s lignes" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "et ensuite" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Sauvegarder une nouvelle ligne" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Sauvegarder une nouvelle ligne en ignorant les erreurs" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Afficher l'énoncé d'insertion" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Retourner à la page précédente" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Insérer une nouvelle ligne" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Demeurer sur cette page" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Modifier la ligne suivante" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Valeur" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de la ligne insérée : %1$d" @@ -7495,32 +7569,32 @@ msgstr "Aucune" msgid "Convert to Kana" msgstr "Conversion en kana" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Depuis" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Vers" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Exécuter" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Ajouter un préfixe de table" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Ajouter un préfixe" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 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:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Pas de modifications" @@ -7730,83 +7804,83 @@ msgstr "Actualiser" msgid "This format has no options" msgstr "Ce format ne comporte pas d'options" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "en erreur" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Activé" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Fonctions relationnelles" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Affichage infobulle" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Génération de schémas en PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Commentaires de colonnes" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Transformation" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "La documentation indique comment mettre à jour votre table column_comments" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Requêtes SQL en signets" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Historique SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Tables récemment utilisées (persistantes)" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Préférences d'interface de tables (persistantes)" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Préférences de l'utilisateur" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Guide rapide de configuration des fonctions avancées : " -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Créez les tables requises au moyen de examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Créez un utilisateur pma et donnez-lui accès à ces tables." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7815,13 +7889,13 @@ msgstr "" "(config.inc.php), en vous basant par exemple sur config." "sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Reconnectez-vous à phpMyAdmin afin d'utiliser le fichier de configuration " "modifié." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "pas de description" @@ -7829,7 +7903,7 @@ msgstr "pas de description" msgid "Slave configuration" msgstr "Configuration de l'esclave" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Changer ou reconfigurer le serveur maître" @@ -7844,13 +7918,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Nom d'utilisateur" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -7863,7 +7937,7 @@ msgid "Slave status" msgstr "État de l'esclave" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variable" @@ -7879,38 +7953,38 @@ msgstr "" "Seuls les esclaves démarrés avec l'option --report-host=host_name sont " "visibles sur cette liste." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Ajouter un utilisateur pour la réplication vers l'esclave" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Tout utilisateur" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Entrez une valeur" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Tout client" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Ce serveur" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Utiliser la table Host" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7926,7 +8000,7 @@ msgstr "Générer un mot de passe" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7958,88 +8032,89 @@ msgid "One or more errors have occured while processing your request:" msgstr "" "Au moins une erreur s'est produite lors du traitement de la requête :" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Modifier l'événement" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Erreur dans le traitement de la requête" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Détails" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Nom de l'événement" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Type d'évènement" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Changer pour %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Exécuter à" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Exécuter chaque" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Départ" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Fin" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Suite à l'exécution, conserver" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Créateur" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: 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»" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Vous devez fournir un nom pour l'événement" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Vous devez fournir un intervalle valable pour l'événement." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Vous devez fournir un moment d'exécution valable pour l'événement." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Vous devez fournir un type valable pour l'événement." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 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:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Nouveau" @@ -8072,7 +8147,7 @@ msgstr "" "ces problèmes." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Type de procédure invalide : «%s»" @@ -8091,69 +8166,69 @@ msgstr "La procédure %1$s a été modifiée." msgid "Routine %1$s has been created." msgstr "La procédure %1$s a été créée." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Modifier une procédure" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Nom de la procédure" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Paramètres" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Direction" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Taille/Valeurs*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Ajouter un paramètre" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Supprimer le dernier paramètre" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Type retourné" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Taille/Valeurs à retourner" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Options de retour" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Est déterministe" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Type de sécurité" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "Accès aux données SQL" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Vous devez fournir un nom pour la procédure" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, 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:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8161,37 +8236,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:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Vous devez fournir une définition pour la procédure." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, 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:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Exécuter la procédure" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Paramètres de procédure" @@ -8209,36 +8284,36 @@ msgstr "Le déclencheur %1$s a été modifié." msgid "Trigger %1$s has been created." msgstr "Le déclencheur %1$s a été créé." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Modifier le déclencheur" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Nom du déclencheur" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Moment" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Vous devez fournir un nom valable pour le déclencheur" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Vous devez fournir une temporisation valable pour le déclencheur" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Vous devez fournir un événement valable pour le déclencheur" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Vous devez fournir un nom de table valable" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Vous devez fournir une définition pour le déclencheur." @@ -8325,7 +8400,7 @@ msgstr "Aucun évènement à afficher." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8334,7 +8409,7 @@ msgstr "La table %s n'existe pas !" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8342,7 +8417,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Les coordonnées de la table %s n'ont pas été configurées" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8353,27 +8428,27 @@ msgstr "Schéma de la base %s - Page %s" msgid "This page does not contain any tables!" msgstr "Cette page ne contient aucune table !" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "Erreur de schéma : " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Schéma relationnel" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Table des matières" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Attributs" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8481,7 +8556,7 @@ msgstr "Langue inconnue: %1$s." msgid "Current Server" msgstr "Serveur actuel" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Base de données source" @@ -8499,7 +8574,7 @@ msgstr "Serveur distant" msgid "Difference" msgstr "Différence" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Base de données cible" @@ -8518,7 +8593,7 @@ msgstr "Exécuter une ou des requêtes SQL sur le serveur %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Vider" @@ -8527,11 +8602,11 @@ msgstr "Vider" msgid "Columns" msgstr "Colonnes" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Signet visible pour les autres utilisateurs" @@ -8627,7 +8702,7 @@ msgstr "" "PHP nécessaires ont bien été installées tel que décrit dans la " "%sdocumentation%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "Le suivi de %s est activé." @@ -8653,8 +8728,8 @@ msgstr "" "caractère d'échappement ou apostrophes, sous la forme: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Index" @@ -8704,13 +8779,13 @@ msgstr "Aucune" msgid "As defined:" msgstr "Tel que défini : " -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primaire" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Texte entier" @@ -8723,17 +8798,17 @@ msgstr "en premier" msgid "after %s" msgstr "après %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Ajouter %s colonne(s)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Vous devez ajouter au moins une colonne." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Moteur de stockage" @@ -8741,41 +8816,6 @@ msgstr "Moteur de stockage" msgid "PARTITION definition" msgstr "Définition de PARTITION" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Recherche dans la table" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Choisir les colonnes (au moins une) : " - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Critères de recherche (pour l'énoncé «where») : " - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Nombre de lignes par page" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Ordre d'affichage : " - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Afficher les valeurs de la table liée" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Recherche «par valeur» (passepartout: «% »)" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8931,11 +8971,11 @@ msgstr "" msgid "Manage your settings" msgstr "Gérer vos paramètres" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "La configuration a été sauvegardée" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8949,7 +8989,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Impossible de sauvegarder la configuration" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8978,7 +9018,7 @@ msgstr "Interclassement pour la connexion au serveur" msgid "Appearance Settings" msgstr "Paramètres d'affichage" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Plus de paramètres" @@ -8998,9 +9038,9 @@ msgstr "Version du logiciel" msgid "Protocol version" msgstr "Version du protocole" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Utilisateur" @@ -9138,126 +9178,126 @@ msgstr "" "Ce serveur utilise Suhosin. Veuillez vous référer à la %sdocumentation%s " "pour en connaître les conséquences possibles." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Aucune base de données" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "Filtrer par nom de base de données" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Filtrer par nom de table" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Nouvelle table" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Choisissez une base de données" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Montrer/cacher le menu de gauche" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Sauvegarder la position" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Nouvelle relation" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Recharger" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Aide" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Liens angulaires" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Liens directs" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Accrocher à la grille" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Agrandir/réduire tout" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Bascule agrandir/réduire" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Basculement des lignes de relations" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Exporter les coordonnées pour le schéma PDF" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Construire la requête" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Déplacer le menu" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Cacher/montrer tout" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Cacher/montrer les tables sans liens" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Nombre de tables" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Effacer la relation" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Opérateur de relation" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Sauf" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "sous-requête" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Renommer en" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Nouveau nom" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Regroupement" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Options actives" @@ -9269,51 +9309,51 @@ msgstr "La page a été créée" msgid "Page creation failed" msgstr "Échec de création de page" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Page" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Importer depuis la page sélectionnée" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Exporter vers la page sélectionnée" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Créer une page et y exporter" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Nom de la nouvelle page : " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Exporter/Importer à l'échelle" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "recommandé" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Erreur: relation déjà existante." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Erreur: relation non ajoutée." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Relation de type FOREIGN KEY ajoutée" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Relation interne ajoutée" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relation supprimée" @@ -9325,55 +9365,55 @@ msgstr "Erreur lors de la sauvegarde des coordonnées Concepteur." msgid "Modifications have been saved" msgstr "Les modifications ont été sauvegardées" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" "Le formulaire soumis contient des erreurs, impossible de sauvegarder les " "paramètres" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Erreur d'importation de la configuration" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" "La configuration contient des valeurs incorrectes pour certains champs." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Voulez-vous importer les autres paramètres ?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Sauvegardé le : @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importer depuis le fichier" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Importer depuis le stockage du navigateur" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" "Les paramètres seront importés depuis le stockage local de votre navigateur." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Vous n'avez pas sauvegardé les paramètres !" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Cette fonction n'est pas supportée par votre navigateur" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Fusionner avec la configuration courante" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9382,38 +9422,38 @@ msgstr "" "Vous pouvez régler d'autres paramètres en modifiant config.inc.php, par " "exemple au moyen du %sscript d'installation%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Sauvegarder dans l'espace de stockage du navigateur" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" "Les paramètres seront sauvegardés dans l'espace de stockage de votre " "navigateur." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Les paramètres existants seront écrasés !" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "Vous pouvez ramener tous vos paramètres à leur valeur par défaut." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importe les fichiers" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Tout" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "La table %s est absente ou non définie dans %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Le fichier n'existe pas" @@ -9421,17 +9461,17 @@ msgstr "Le fichier n'existe pas" msgid "Select binary log to view" msgstr "Sélectionnez le log binaire à consulter" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Fichiers" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Afficher les requêtes tronquées" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Afficher les requêtes complètes" @@ -9447,7 +9487,7 @@ msgstr "Position" msgid "Original position" msgstr "Position d'origine" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Information" @@ -9455,31 +9495,31 @@ msgstr "Information" msgid "Character Sets and Collations" msgstr "Jeux de caractères et interclassement" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d bases de données a été supprimée." msgstr[1] "%1$d bases de données ont été supprimées." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statistiques sur les bases de données" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Réplication maître" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Réplication esclave" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Activer les statistiques" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9491,163 +9531,163 @@ msgstr "" msgid "Storage Engines" msgstr "Moteurs de stockage" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Schéma et/ou contenu des bases de données" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Modules" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Début" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Plug-in" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Module" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Bibliothèque" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Version" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Auteur" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Licence" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "désactivé" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Tous les privilèges sauf GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Permission de modifier la structure des tables existantes." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Permission de modifier et de supprimer des procédures stockées." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Permission de créer des bases de données et des tables." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Permission de créer des procédures stockées." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Permission de créer des tables." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Permission de créer des tables temporaires." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permission de créer, supprimer et renommer des comptes utilisateurs." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Permission de créer des vues." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Permission de détruire des données." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Permission d'effacer des bases de données et des tables." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Permission d'effacer des tables." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" "Permission de mettre en place des événements pour le programmateur " "d'événements" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Permission d'exécuter des procédures stockées." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" "Permission d'importer et d'exporter des données à partir de / dans des " "fichiers." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permission d'ajouter des utilisateurs et des privilèges sans avoir besoin de " "recharger les privilèges." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Permission de créer et d'effacer des index." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Permission d'ajouter et de remplacer des données." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" "Permission de verrouiller des enregistrements dans le fil courant (unité " "d'exécution)." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limite du nombre de nouvelles connexions qu'un utilisateur peut démarrer, " "par heure." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limite du nombre de requêtes qu'un utilisateur peut envoyer au serveur, par " "heure." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9655,63 +9695,63 @@ msgstr "" "Limite du nombre de commandes changeant une table ou base de données, qu'un " "utilisateur peut exécuter, par heure." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limite le nombre de connexions simultanées autorisées pour un utilisateur." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Permission de voir les processus de tous les utilisateurs" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Non effectif dans cette version de MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permission de recharger les paramètres du serveur, et de vidanger la mémoire " "cache." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Permission de demander où sont les maîtres et les esclaves (système de " "duplication)." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Nécessaire pour les esclaves (système de duplication)." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Permission de lire des données." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Permission de voir la liste complète des noms de bases de données." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permission d'exécuter SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Permission d'arrêter le serveur." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9722,162 +9762,162 @@ msgstr "" "administratif, par exemple les changements de variables globales ou la " "destruction de processus." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Permission de créer et de supprimer des déclencheurs" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Permission de changer des données." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Pas de privilèges." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Aucun" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Privilèges spécifiques à une table" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Veuillez noter que les noms de privilèges sont exprimés en anglais" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administration" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Privilèges globaux" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Privilèges spécifiques à une base de données" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Limites de ressources" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Note: Une valeur de 0 (zero) enlève la limite." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Information pour la connexion" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Conserver le mot de passe" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Aucun utilisateur n'a été trouvé." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "L'utilisateur %s existe déjà !" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Vous avez ajouté un utilisateur." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Vous avez modifié les privilèges pour %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Vous avez révoqué les privilèges pour %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Le mot de passe de %s a été changé." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Destruction de %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Aucun utilisateur n'a été choisi en vue de le détruire !" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Chargement des privilèges en cours" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Les utilisateurs sélectionnés ont été effacés." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Les privilèges ont été rechargés." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Changer les privilèges" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Révoquer" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Tout exporter" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "N'importe quel" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Privilèges pour tous les utilisateurs" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Privilèges pour %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Survol des utilisateurs" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "«Grant»" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Effacer les utilisateurs sélectionnés" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9890,133 +9930,133 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Privilèges de colonnes" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Ajouter des privilèges sur cette base de données" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Ajouter des privilèges sur cette table" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Changement des informations de connexion / Copie d'utilisateur" -#: server_privileges.php:2363 +#: server_privileges.php:2371 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:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... conserver intact l'ancien utilisateur." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... supprimer l'ancien utilisateur." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Base de données pour cet utilisateur" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Donner les privilèges passepartout (utilisateur\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, 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:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Utilisateurs ayant accès à "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "spécifique à cette base de données" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "passepartout" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "La vue %s a été supprimée." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Erreur inconnue" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Connexion impossible sur le maître %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Impossible de lire la position du journal sur le maître. Possible problème " "de privilège sur le maître." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Impossible de changer le maître" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Le serveur maître est maintenant %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Ce serveur est un serveur maître dans le processus de réplication." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Montrer l'état du maître" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Montrer les esclaves connectés" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10025,11 +10065,11 @@ msgstr "" "Ce serveur n'est pas configuré comme maître dans un processus de " "réplication. Désirez-vous le configurer ?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Configuration du maître" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10043,19 +10083,19 @@ msgstr "" "répliquées) soit ignorer toutes les bases en demandant que certaines d'entre " "elles soient répliquées. Veuillez choisir le mode : " -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Répliquer toutes les bases de données; Ignorer : " -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Ignorer toutes les bases de données; Répliquer : " -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Sélectionnez les bases de données : " -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10063,7 +10103,7 @@ msgstr "" "Maintenant, ajoutez les lignes suivantes à la fin de votre fichier my.cnf " "puis redémarrez le serveur MySQL." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10073,84 +10113,84 @@ msgstr "" "suite vous devriez voir un message vous informant que ce serveur est " "configuré comme maître" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Le fil d'exécution SQL ne tourne pas sur le serveur esclave !" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Le fil d'exécution IO ne tourne pas sur le serveur esclave !" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Le serveur est configuré comme esclave dans un processus de réplication. " "Voudriez-vous : " -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Montrer l'état de l'esclave" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Synchroniser les bases de données avec le serveur maître" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Contrôler le serveur esclave : " -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Démarrer complètement" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Arrêter complètement" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Réinitialiser l'esclave" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Démarrer seulement le fil d'exécution SQL" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Arrêter seulement le fil d'exécution SQL" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Démarrer seulement le fil d'exécution des entrées-sorties" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Arrêter seulement le fil d'exécution des entrées-sorties" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Gestion des erreurs : " -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Ignorer les erreurs peut mener à une désynchronisation entre les serveurs " "maître et esclave !" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Ignorer l'erreur courante" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Ignorer les prochaines" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "erreurs." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10159,127 +10199,127 @@ msgstr "" "Ce serveur n'est pas configuré comme esclave dans un processus de " "réplication. Désirez-vous le configurer ?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Le processus %s a été éliminé." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin n'a pu éliminer le processus %s. Il était probablement déjà fermé." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Gestionnaire" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Cache des requêtes" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Fils d'exécution" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Données temporaires" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Insertions avec délais" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Cache des clés" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Jointures" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Mécanisme de tri" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Coordonnateur des transactions" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Fermer toutes les tables" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Montrer les tables ouvertes" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Montrer les serveurs esclaves" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Montrer l'état des serveurs esclaves" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Vider la cache des requêtes" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Informations sur le serveur" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Toutes les variables d'état" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Surveillance" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Conseiller" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Taux de rafraîchissement : " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filtres" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Contenant le mot : " -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Afficher uniquement les valeurs d'alerte" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filtrer par catégorie..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Afficher les valeurs non formattées" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Liens connexes : " -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Lancer l'analyseur" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Consignes" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10287,7 +10327,7 @@ msgstr "" "Le conseiller peut donner des recommandations au sujet des variables de " "serveur." -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10296,7 +10336,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:920 +#: server_status.php:919 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 " @@ -10306,7 +10346,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:922 +#: server_status.php:921 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 " @@ -10317,31 +10357,31 @@ msgstr "" "produite." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Questions depuis le démarrage : %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Information" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Trafic réseau depuis le démarrage : %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10349,19 +10389,19 @@ msgstr "" "Ce serveur est un serveur maître et esclave dans le processus " "de réplication." -#: server_status.php:1078 +#: server_status.php:1077 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:1080 +#: server_status.php:1079 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:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10369,11 +10409,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:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "État de la réplication" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10382,35 +10422,35 @@ msgstr "" "dépassée, auquel cas les statistiques rapportées par MySQL peuvent être " "inexactes." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Reçu" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Envoyé" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "max. de connexions simultanées" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Tentatives échouées" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Arrêts prématurés" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Commande" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10418,11 +10458,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:1321 +#: server_status.php:1320 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:1322 +#: server_status.php:1321 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 " @@ -10432,18 +10472,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:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 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:1325 +#: server_status.php:1324 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 " @@ -10456,11 +10496,11 @@ msgstr "" "tmp_table_size afin que les tables temporaires soient maintenues en mémoire " "au lieu d'être sur disque." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Le nombre de fichiers temporaires créés par mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10468,7 +10508,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:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10476,7 +10516,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:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10484,23 +10524,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Le nombre de lignes écrites via INSERT DELAYED." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Le nombre de commandes FLUSH exécutées." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Le nombre de commandes COMMIT internes." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10510,7 +10550,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:1335 +#: 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, " @@ -10521,7 +10561,7 @@ msgstr "" "d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une " "colonne indexée." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10529,7 +10569,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:1337 +#: server_status.php:1336 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 " @@ -10539,7 +10579,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:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10547,7 +10587,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:1339 +#: 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 " @@ -10560,7 +10600,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:1340 +#: server_status.php:1339 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 +10612,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:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Le nombre d'énoncés ROLLBACK internes." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Le nombre de pages contenant des données." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Le nombre de pages contenant des données «dirty»." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Le nombre de pages libres." -#: server_status.php:1348 +#: 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 " @@ -10610,7 +10650,7 @@ msgstr "" "train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une " "autre raison." -#: server_status.php:1349 +#: server_status.php:1348 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 +10662,11 @@ msgstr "" "comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Taille totale de la réserve, en pages." -#: server_status.php:1351 +#: 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." @@ -10635,7 +10675,7 @@ msgstr "" "lorsqu'une requête doit balayer une large portion de table en ordre " "discontinu." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10643,11 +10683,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:1353 +#: server_status.php:1352 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:1354 +#: 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." @@ -10655,7 +10695,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:1355 +#: server_status.php:1354 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,51 +10709,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:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Le nombre d'écritures faites dans la réserve InnoDB." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Le nombre d'opérations fsync() faites jusqu'à présent." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Le nombre d'opérations fsync() actuellement en attente." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Le nombre actuel de lectures en attente." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Le nombre actuel d'écritures en attente." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "La quantité d'octets lus jusqu'à présent." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Le nombre total de lectures de données." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Le nombre total d'écritures de données." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "La quantité d'octets écrits jusqu'à présent." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "Le nombre d'opérations «doublewrite» effectuées." -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -10721,35 +10761,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Le nombre de requêtes d'écritures sur le fichier témoin." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Le nombre d'écritures physiques au fichier témoin." -#: server_status.php:1370 +#: server_status.php:1369 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Le nombre d'écritures du fichier témoin en attente." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Le nombre d'octets écrits sur le fichier témoin." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Le nombre de pages créées." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10758,51 +10798,51 @@ msgstr "" "valeurs sont comptées par page; la taille de page leur permet d'être " "facilement converties en octets." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Le nombre de pages lues." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Le nombre de pages écrites." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Le nombre de verrous d'enregistrements actuellement en attente." -#: server_status.php:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Le nombre de lignes supprimées des tables InnoDB." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Le nombre de lignes insérées dans des tables InnoDB." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Le nombre de lignes lues dans des tables InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Le nombre de lignes mises à jour dans des tables InnoDB." -#: server_status.php:1387 +#: 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." @@ -10811,7 +10851,7 @@ msgstr "" "pas encore transférés sur disque. Anciennement connu sous le nom " "Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -10820,7 +10860,7 @@ msgstr "" "cette valeur pour déterminer la proportion de la cache de clés qui est " "utilisée." -#: server_status.php:1389 +#: server_status.php:1388 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 " @@ -10830,15 +10870,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:1390 +#: server_status.php:1389 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:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10849,7 +10889,7 @@ msgstr "" "petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read " "requests." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10857,22 +10897,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:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 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:1397 +#: server_status.php:1396 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,18 +10923,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:1398 +#: server_status.php:1397 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:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10902,19 +10942,19 @@ msgstr "" "Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table " "est probablement trop petite." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Le nombre de fichiers qui sont ouverts." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Le nombre de tables qui sont ouvertes." -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10924,19 +10964,19 @@ msgstr "" "peut indiquer des problèmes de fragmentation, qui peuvent être réglés par la " "commande FLUSH QUERY CACHE." -#: server_status.php:1405 +#: server_status.php:1404 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:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Le nombre de succès dans la cache." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Le nombre de requêtes ajoutées à la cache." -#: server_status.php:1408 +#: 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 " @@ -10948,7 +10988,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:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10956,19 +10996,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:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Le nombre de requêtes enregistrées dans la cache." -#: server_status.php:1411 +#: server_status.php:1410 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:1412 +#: server_status.php:1411 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:1413 +#: server_status.php:1412 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." @@ -10976,13 +11016,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10991,7 +11031,7 @@ msgstr "" "ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos " "tables.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10999,19 +11039,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11019,11 +11059,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:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11031,14 +11071,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:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11047,23 +11087,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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Le nombre de tri effectués avec des plages." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Le nombre de lignes triées." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -11075,7 +11115,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:1429 +#: server_status.php:1428 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 " @@ -11085,11 +11125,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Le nombre de connexions ouvertes actuellement." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11102,47 +11142,47 @@ msgstr "" "perceptible de la performance si votre serveur gère correctement les fils " "d'exécution.)" -#: server_status.php:1432 +#: server_status.php:1431 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:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Le nombre de fils d'exécution non suspendus." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Démarrer la surveillance" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Consignes / réglages" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Terminé de modifier les graphiques" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Ajouter un graphique" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Modifier les graphiques" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Taux de rafraîchissement" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Colonnes du graphique" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Disposition du graphique" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -11150,15 +11190,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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Ramener la valeur par défaut" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Consignes pour la surveillance" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11172,7 +11212,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:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11184,11 +11224,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:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Utilisation de la surveillance : " -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11198,7 +11238,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:1655 +#: server_status.php:1654 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 " @@ -11211,11 +11251,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:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Note : " -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11228,197 +11268,197 @@ 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:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Graphique prédéfini" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Variables d'état" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Choisissez les séries : " -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Couramment surveillés" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "ou entrez un nom de variable : " -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Afficher en tant que valeur différentielle" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Appliquer un diviseur" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Ajouter l'unité aux valeurs de données" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Ajouter cette série" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Effacer la série" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Séries dans le graphique : " -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Statistiques des journaux" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Sélectionnez un intervalle de temps : " -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Ne traiter que les énoncés SELECT, INSERT, UPDATE et DELETE" -#: server_status.php:1747 +#: server_status.php:1746 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:1752 +#: server_status.php:1751 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:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Les résultats sont regroupés par le texte des requêtes." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Analyseur de requêtes" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d seconde" msgstr[1] "%d secondes" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minute" msgstr[1] "%d minutes" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Connexion à la source impossible" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Connexion à la cible impossible" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "La base de données «%s» n'existe pas." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Synchronisation de structure" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Synchronisation des données" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "non présent" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Différence dans la structure" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Différence dans les données" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Ajouter des colonnes" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Supprimer des colonnes" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Modifier des colonnes" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Supprimer des index" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Appliquer des index" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Modifier des lignes" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Insérer des lignes" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Voulez-vous supprimer toutes les lignes des tables cible ?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Appliquer les changements sélectionnés" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Synchroniser les bases de données" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Les tables sélectionnées ont été synchronisées." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "La base cible a été synchronizée avec la base source" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Requêtes exécutées" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Saisir manuellement" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Connexion actuelle" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Configuration : %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Interface de connexion (socket)" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11426,19 +11466,19 @@ msgstr "" "La base de données cible sera complètement synchronisée avec la base source. " "La base source ne sera pas modifiée." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Échec de mise à jour de la variable" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Variables et paramètres du serveur" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Valeur pour la session" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Valeur globale" @@ -11777,153 +11817,153 @@ msgstr "" msgid "Wrong data" msgstr "Données incorrectes" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Le signet «%s» a été utilisé comme requête par défaut." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Voulez-vous vraiment exécuter la requête suivante ?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Affichage du code PHP" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "SQL validé" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Résultat de la requête SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Généré par" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Il y a des problèmes avec les index de la table `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Intitulé" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "La table %1$s a été modifiée avec succès" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "Les colonnes ont été déplacées avec succès." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Barre" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Colonne" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Ligne" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Spline" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Tarte" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "En piles" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Titre du graphique" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "Axe des X : " -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Séries : " -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Étiquette pour l'axe des X : " -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "Valeurs en X" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Étiquette pour l'axe des Y : " -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Valeurs en Y" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "La table %s existe déjà !" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "La table %1$s a été créée." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Afficher le schéma de la table" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Visualiser en GIS" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Largeur" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Hauteur" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Colonne pour étiquette" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Aucun --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Colonne pour donnée spatiale" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Dessiner à nouveau" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Sauvegarder dans un fichier" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Nom du fichier" @@ -11939,28 +11979,28 @@ msgstr "La clé ne peut être renommée PRIMARY !" msgid "No index parts defined!" msgstr "Aucune colonne n'a été définie pour cet index !" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Ajouter un index" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Modifier l'index" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Nom de l'index : " -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(«PRIMARY» doit et ne peut être que le nom d'une clé primaire!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Type d'index : " -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Ajouter à l'index %s colonne(s)" @@ -11983,152 +12023,152 @@ msgstr "La table %s a été déplacée vers %s." msgid "Table %s has been copied to %s." msgstr "La table %s a été copiée vers %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Le nom de la table est vide !" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Ordonner la table par" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(à refaire après insertions/destructions)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Déplacer la table vers (base.table) : " -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Options pour cette table" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Changer le nom de la table pour" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Copier la table vers (base.table) : " -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Aller à la table copiée" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Maintenance de la table" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Défragmenter la table" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "La table %s a été rechargée" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Recharger la table (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Supprimer les données ou la table" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Vider la table (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Supprimer la table (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Gestion des partitions" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analyser" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Vérifier" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimiser" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Reconstruire" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Réparer" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Supprimer le partitionnement" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Vérifier l'intégrité référentielle : " -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Affichage des tables" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Espace utilisé" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Effectif" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Statistiques" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "statique" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dynamique" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Longueur de ligne" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Taille de la ligne" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Prochain index automatique" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Erreur lors de la création de la clé étrangère sur %1$s (vérifiez le type " "des colonnes)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Relation interne" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12136,103 +12176,103 @@ msgstr "" "Une relation interne n'est pas nécessaire lorsqu'une clé correspondante de " "type FOREIGN KEY existe." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Contrainte de clé étrangère" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Spatial" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Valeurs distinctes" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Ajouter une clé primaire" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Ajouter un index unique" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Ajouter un index SPATIAL" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Ajouter un index FULLTEXT" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Aucune" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "La colonne %s a été effacée" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Une clé primaire a été ajoutée sur %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Un index a été ajouté sur %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Montrer d'autres actions" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "Déplacer des colonnes" -#: tbl_structure.php:622 +#: tbl_structure.php:624 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:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Modifier la vue" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "vue relationnelle" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Suggérer des optimisations quant à la structure de la table" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Ajouter une colonne" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "En fin de table" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "En début de table" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Après %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Créer un index sur  %s colonnes" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "partitionné" @@ -12383,69 +12423,39 @@ msgstr "Suivre les énoncés de manipulation de données suivants : " msgid "Create version" msgstr "Créer une version" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Faites une recherche «par valeur» (passepartout: «% ») sur deux colonnes " -"différentes" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Critères de recherche supplémentaires" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Utiliser cette colonne pour décrire chaque point" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Nombre maximum de lignes de données à utiliser pour le graphique" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Afficher/Modifier les points" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Consignes d'utilisation" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "Réinitialiser le zoom" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Obtenez d'autres thèmes !" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Types MIME disponibles" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Les types MIME affichées en italiques ne possèdent pas de fonctions de " "transformation" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Transformations disponibles" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Description" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Vous n'êtes pas autorisé à accéder à cette page !" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Le profil a été modifié." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Nom de la vue" diff --git a/po/gl.po b/po/gl.po index 819d1b4dcc..1cc497b8c5 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-04-17 16:56+0200\n" "Last-Translator: Julio Guerra \n" "Language-Team: Independant\n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 0.9\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Mostrar todo" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Número de páxina:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "xanela pai ou porque as opcións de seguranza do seu navegador están " "bloqueando as actualizacións entre xanelas." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Ir" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Nome da chave" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Descrición" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Usar este valor" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Creouse a base de datos %1$s." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Comentario da base de datos: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Comentarios da táboa" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Columna" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Nulo" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Predeterminado" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Liga a" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Comentarios" @@ -197,14 +198,14 @@ msgstr "Comentarios" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Non" @@ -217,120 +218,120 @@ msgstr "Non" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Si" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Ver o volcado (esquema) da base de datos" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Non foi posíbel atopar ningunha táboa na base de datos." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Seleccionar todo" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Deseleccionar todo" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "O nome da base de datos está baleiro!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "A base de datos %1$s foi renomeada a %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "A base de datos %1$s foi copiada a %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Renomear a base de datos a" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Eliminar base de datos" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "A base de datos %s foi eliminada." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Eliminar base de datos (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Copiar a base de datos a" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Só a estrutura" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Estrutura e datos" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Só os datos" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABSE antes de copiar" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Engadir %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Engadir limitacións" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Cambiar á base de datos copiada" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Orde alfabética" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -339,59 +340,59 @@ msgstr "" "Desactivouse a configuración de almacenamento de phpMyAdmin. Para saber por " "que prema %saquí%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Editar ou exportar esquema relacional" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Táboa" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Filas" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Tamaño" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "en uso" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Creación" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Última actualización" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Última revisión" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -402,210 +403,210 @@ msgstr[1] "%s táboas" msgid "You have to choose at least one column to display" msgstr "Debe escoller cando menos unha columna para mostrar" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Cambiar ao %sconstrutor visual%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Ordenar" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Ascendente" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Descendente" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Mostrar" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Criterio" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Inserir" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "E" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Eliminar" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "ou" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Modificar" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Engadir/Eliminar filas de criterio" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Engadir/Eliminar columnas de campo" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Actualizar a procura" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Usar as táboas" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Procura tipo SQL na base de datos %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Enviar esta procura" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Denegouse o acceso" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "polo menos unha das palabras" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "todas as palabras" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "a frase exacta" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "como expresión regular" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Procurar os resultados para \"%s\" %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s ocorrencia" msgstr[1] "Total: %s ocorrencias" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Procurar na base de datos" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palabras ou valores a buscar (ou comodín é: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Atopar:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "As palabras divídense cun carácter de espazo (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Dentro das táboas:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Dentro da columna:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "No se atoparon táboas na base de datos" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "descoñecido" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Vaciouse a táboa %s" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Deixouse a vista %s" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Eliminouse a táboa %s" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "O seguemento está activado." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "O seguemento non está activado." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -614,185 +615,186 @@ msgstr "" "Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation" "%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replicación" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Suma" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Cos marcados:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Marcalos todos" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Exceso na comprobación" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Visualización previa da impresión" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Borrar" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Eliminar" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Verificar a táboa" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimizar a táboa" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Reparar a táboa" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizar a táboa" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Engaidr prefixo á táboa" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Substituír o prefixo da táboa" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copiar a táboa con prefixo" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dicionario de datos" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Táboas seguidas" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Base de datos" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Última versión" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Creada" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Actualizada" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Estado" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Acción" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Borra os datos de seguimento para esta táboa" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "activado" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "desactivado" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versións" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Informe de seguemento" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Instantánea da estrutura" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Táboas non seguidas" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Seguir a táboa" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Rexistro de actividade da base de datos" @@ -804,16 +806,16 @@ msgstr "Erro no tipo!" msgid "Selected export type has to be saved in file!" msgstr "Gardouse nun ficheiro o tipo de exportación seleccionada!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Erro nos parametros!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Non hai espazo para gardar o ficheiro %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -821,12 +823,12 @@ msgstr "" "O ficheiro %s xa existe no servidor - escolla outro nome ou seleccione a " "opción de eliminar." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web non ten permiso para gardar o ficheiro %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Gardouse o volcado no ficheiro %s." @@ -835,86 +837,86 @@ msgstr "Gardouse o volcado no ficheiro %s." msgid "Invalid export type" msgstr "Tipo de exportación non válida" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Valor para a columna \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Utilizar OpenStreetMaps como Capa Base" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Xeometría" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Punto" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punto %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Engadir un punto" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Cadea de liñas" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Círculo externo" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Círculo interno" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Engadir unha cadea de liñas" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Engadir un círculo interno" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Polígono" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Engadir un polígono" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Engadir xeometría" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Saída" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -922,7 +924,7 @@ msgstr "" "Seleccione \"GeomFromText\" da columna \"Función\" e pegue a cadea situada " "debaixo no campo \"Valor\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -931,21 +933,21 @@ msgstr "" "Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a " "%sdocumentación%s para averiguar como evitar este límite." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "A mostrar o marcador" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Eliminouse o marcador." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Non se puido ler o ficheiro" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -954,7 +956,7 @@ msgstr "" "Tentou cargar un ficheiro cunha compresión descoñecida (%s). Ora non se sabe " "como descomprimir, ora está desactivada na configuración." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -964,28 +966,28 @@ msgstr "" "o seu tamaño excede o máximo permitido pola súa configuración de PHP. " "Consulte FAQ 1.16." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Non se pode convertir o xogo de carácteres do arquivo sen a librería " "correspondente" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Non foi posíbel importar as extensións - Comprobe a instalación!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Creouse o marcador %s" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "A importación rematou sen problemas. Executáronse %d procuras." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -993,7 +995,7 @@ msgstr "" "Ultrapasouse o tempo de espera do guión. Se quere rematar a importación, " "volva a enviar o mesmo ficheiro e a importación continuará." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1002,23 +1004,23 @@ msgstr "" "normalmente significa que o phpMyAdmin non poderá rematar esta importación a " "non ser que lle incrementen os limites de tempo de php." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Voltar" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin utilízase mellor cun navegador que acepte molduras." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Non se permiten as ordes \"DROP DATABASE\"." @@ -1027,7 +1029,7 @@ msgstr "Non se permiten as ordes \"DROP DATABASE\"." msgid "Do you really want to execute \"%s\"?" msgstr "Seguro que quere executar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Está a piques de eliminar (DESTROY) unha base de datos enteira!" @@ -1068,7 +1070,7 @@ msgstr "Engadir índice" msgid "Edit Index" msgstr "Editar índice" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Engadir %d columna(s) ó índice" @@ -1086,16 +1088,16 @@ msgstr "O nome do servidor está vacío!" msgid "The user name is empty!" msgstr "O nome do usuario está vacío!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "O contrasinal está vacío!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Os contrasinais non son iguais!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Engadir usuario" @@ -1112,23 +1114,24 @@ msgstr "Eliminando ós usuarios seleccionados" msgid "Close" msgstr "Fechar" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Modificar" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Grafico de trafico en directo" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Gráfica conexións/procesos en directo" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Gráfico de pesquisas en directo" @@ -1138,24 +1141,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Outro" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1175,7 +1178,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Procesos" @@ -1193,7 +1196,7 @@ msgstr "Preguntas dende o último refresco" msgid "Questions (executed statements by the server)" msgstr "Preguntas (sentencias executadas polo servidor)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Estadísticas das pesquisas" @@ -1234,14 +1237,14 @@ msgid "System swap" msgstr "Arquivo de intercambio do sistema" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1293,32 +1296,32 @@ msgstr "Bytes enviados" msgid "Bytes received" msgstr "Bytes recibidos" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Conexións" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1332,11 +1335,11 @@ msgstr "%d táboa(s)" msgid "Questions" msgstr "Preguntas" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Tráfico" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Configuración" @@ -1356,11 +1359,11 @@ msgstr "Engadir gráfico a grella" msgid "Please add at least one variable to the series" msgstr "Por favor engada polo menos unha variable á serie" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Ningunha" @@ -1460,7 +1463,7 @@ msgstr "Cambiar configuración" msgid "Current settings" msgstr "Configuración actual" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Título do gráfico" @@ -1543,7 +1546,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Tempo" @@ -1635,10 +1638,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1690,9 +1693,9 @@ msgstr "Variable/ fórmula utilizada" msgid "Test" msgstr "Proba" -#: 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 +#: 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 msgid "Cancel" msgstr "Cancelar" @@ -1704,11 +1707,11 @@ msgstr "Cargando" msgid "Processing Request" msgstr "Procesando petición" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Erro procesando a procura" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Non hai ningunha base de datos seleccionada." @@ -1720,9 +1723,9 @@ msgstr "Eliminando columna" msgid "Adding Primary Key" msgstr "Engadindo chave primaria" -#: 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 +#: 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 msgid "OK" msgstr "Conforme" @@ -1762,15 +1765,15 @@ msgstr "Ocultar índices" msgid "Show indexes" msgstr "Mostrar índices" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Comprobación da chave externa:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Activado)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Desactivado)" @@ -1798,7 +1801,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" @@ -1837,8 +1840,8 @@ msgstr "Mostrar a caixa das pesquisas" msgid "No rows selected" msgstr "Non hai ningunha fileira seleccionada" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Mudar" @@ -1846,18 +1849,18 @@ msgstr "Mudar" msgid "Query execution time" msgstr "Tempo de execución da pesquisa" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Gardar" @@ -1869,7 +1872,7 @@ msgstr "Ocultar o criterio da procura" msgid "Show search criteria" msgstr "Mostrar o criterio da procura" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Procura gráfica" @@ -1913,12 +1916,12 @@ msgstr "resultados da pesquisa" msgid "Data point content" msgstr "Contido do punto de datos" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Copiar" @@ -1938,7 +1941,7 @@ msgstr "Escoller unha chave externa" msgid "Please select the primary key or a unique key" msgstr "Escolla a chave primaria ou unha chave única" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Escolla a columna a mostrar" @@ -2021,7 +2024,7 @@ msgstr "Xerar" msgid "Change Password" msgstr "Cambiar contrasinal" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Máis" @@ -2112,63 +2115,63 @@ msgid "December" msgstr "Decembro" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dec" @@ -2206,32 +2209,32 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sá" @@ -2349,16 +2352,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "por hora" @@ -2379,21 +2382,205 @@ msgstr "" msgid "Font size" msgstr "Tamaño da letra" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Gardar datos editados" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Restaurar orde das columnas" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Inicio" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Anterior" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Seguinte" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Fin" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Fila de comezo" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Número de fileiras" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Modo" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontal" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontal (cabezallos rotados)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertical" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "Cabeceiras cada %s filas" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Ordenar pola chave" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Opcións" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Textos parciais" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Textos completos" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Chave relacional" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Mostrar columna de relación" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Mostrar os contidos binarios" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Mostrar os contidos BLOB" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Mostrar o contido binario como HEX" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Ocultar transformación do navegador" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Texto moi coñecido" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Binario moi coñecido" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Eliminouse o rexistro" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Matar (kill)" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "Pode non ser exacto. Consulte a FAQ 3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "a procurar" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Mostrando os rexistros" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "total" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "a pesquisa levou %01.4f segundos" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operacións de resultados da procura" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Vista previa da impresión (con textos completos)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Mostrar gráfico" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Ver os datos GIS" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Crear vista" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Non se atopou o vínculo" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Demasiadas mensaxes de erro, algunhas non se mostraron." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "O ficheiro non foi subido como un ficheiro." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php." "ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2401,52 +2588,65 @@ msgstr "" "O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no " "formulario HTML." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "O ficheiro enviado só se recibiu parcialmente." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Falta un directorio temporal." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Non se puido escribir no disco." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Detívose o envío do ficheiro por causa do engadido." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Erro descoñecido ao enviar o ficheiro." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Erro ao mover o ficheiro enviado. Consulte FAQ 1.11" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Produciuse un erro ao mover o ficheiro subido." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Non é posíbel ler (mover) o ficheiro subido." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Abrir unha xanela nova co phpMyAdmin" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "A partir de aquí debe permitir cookies." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Único" @@ -2459,8 +2659,8 @@ msgstr "Empaquetado" msgid "Cardinality" msgstr "Cardinalidade" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Comentario" @@ -2483,128 +2683,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Bases de datos" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Servidor" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Estrutura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Inserir" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacións" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Seguemento" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Parece ser que a táboa está baleira!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Procurar cun exemplo" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilexios" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutinas" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Acontecementos" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Deseñador" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Usuarios" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sincronizar" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Ficheiro de rexistro binario" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variábeis" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Conxuntos de caracteres" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Extensións" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Motores" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Houbo un erro" @@ -2629,7 +2829,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d filas inserida." msgstr[1] "%1$d filas inseridas." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Erro creando PDF:" @@ -2722,16 +2922,100 @@ 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 +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 +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 +msgid "Value" +msgstr "Valor" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Procura na táboa" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Editar/Inserir" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Seleccione os campos (mínimo un):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Condición da pesquisa (ou sexa, o complemento da cláusula \"WHERE\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Número de filas por páxina" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Mostrar en orde:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Máximo de filas que aparecen no gráfico" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Visualizar valores alleos" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Criterios adicionais de busca" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Facer unha \"consulta de exemplo\" (o comodín é \"%\") para duas columnas " +"diferentes" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Faga unha \"procura por exemplo\" (o comodín é \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Como usar" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Reiniciar" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Non hai un camiño válido de imaxe para o tema %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Non se dispón de previsualización." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "cólleo" @@ -2750,7 +3034,7 @@ msgstr "Non se atopou o tema %s!" msgid "Theme path not found for theme %s!" msgstr "Non se atopou o camiño do tema para o tema %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Tema" @@ -3049,13 +3333,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Non se pode conectar: os axustes non son válidos." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Reciba a benvida a %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3064,7 +3348,7 @@ 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." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3080,49 +3364,45 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Erro o usar Blowfish dende mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Javascript debe estar activo a partir de aquí" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Entrada (login)" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Pode escribir o nome de servidor/enderezo IP e o porto separados por un " "espazo." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Servidor:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Nome de usuario:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Contrasinal:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Escolla de servidor" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "A partir de aquí debe permitir cookies." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "A configuración prohibe rexistrarse sen contrasinal (vexa AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" @@ -3130,13 +3410,13 @@ msgstr "" "Non se rexistrou actividade ningunha desde hai %s segundos ou máis. Terá que " "entrar de novo" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Non se dá conectado co servidor de MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "O usuario ou o contrasinal están errados. Denegouse o acceso." @@ -3168,7 +3448,7 @@ msgstr "compartida" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Táboas" @@ -3180,13 +3460,13 @@ msgstr "Táboas" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Datos" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "De máis (Overhead)" @@ -3211,19 +3491,11 @@ msgstr "Comprobar os privilexios da base de datos "%s"." msgid "Check Privileges" msgstr "Comprobar os privilexios" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "posíbel vulnerabilidade (exploit)" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "detectouse unha tecla numérica" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Erro o ler o arquivo de configuración" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3231,12 +3503,12 @@ msgstr "" "Esto normalmente significa que hai unha erro na sintaxe, por favor comprobe " "calquera erro mostrado debaixo." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Non se puido cargar a configuración predeterminada dende: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3244,205 +3516,191 @@ msgstr "" "A directiva [code]$cfg['PmaAbsoluteUri'][/code] DEBE estar asignada no seu " "ficheiro de configuración!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "O nome de servidor non é válido para o servidor %1$s. Revise a configuración." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Na configuración indicouse un método de autenticación que non válido::" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Debería actualizar a %s %s ou posterior." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "posíbel vulnerabilidade (exploit)" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "detectouse unha tecla numérica" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Tamaño máximo: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Documentación" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "orde SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "Mensaxes do MySQL: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Non se puido conectar a un validador SQL!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Saltar a explicacion de SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "sen código PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Refrescar" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Omitir a validacion de" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validar o SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Edición en liña desta consulta" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "En liña" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Análise do desempeño" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Do" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d de %B de %Y ás %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos e %s segundos" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Parámetro que falta:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Inicio" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Anterior" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Seguinte" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Fin" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Saltar à base de datos "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A función %s vese afectada por un erro descoñecido; consulte %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Prema para trocar" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Examine o seu computador:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Seleccionar directorio de subida no servidor web %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Non se pode acceder ao directorio que designou para os envíos" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Non hai arquivos para subir" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Executar" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Imprimir" @@ -3472,8 +3730,8 @@ msgid "Closed" msgstr "Pechado" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Desactivado" @@ -3614,9 +3872,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Reiniciar" @@ -3835,10 +4093,6 @@ msgstr "Propor unha estrutura para a táboa" msgid "Show binary contents as HEX by default" msgstr "Mostrar os contidos binarios como HEX de forma predeterminada" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Mostrar o contido binario como HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3897,7 +4151,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Tempo máximo de execución" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Enviar (gravar nun ficheiro)
    " @@ -3906,7 +4160,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formato" @@ -4010,7 +4264,7 @@ msgid "MIME type" msgstr "Tipo MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relacións" @@ -5597,9 +5851,9 @@ msgstr "Require que o validador SQL este habilitado" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Contrasinal" @@ -5887,12 +6141,6 @@ msgstr "" msgid "Details..." msgstr "Detalles..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "Pode non ser exacto. Consulte a FAQ 3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -5900,18 +6148,18 @@ msgstr "" "Fallou a conexión para controluser tal e como se define na súa configuración." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Trocar o contrasinal" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Sen contrasinal" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Reescribir" @@ -5932,22 +6180,22 @@ msgstr "Crear base de datos" msgid "Create" msgstr "Crear" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Sen privilexios" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nome" @@ -6103,26 +6351,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Conversión de codificación:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "committed on %1$s by %2$s" msgstr "Crear versión %1$s de %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "authored on %1$s by %2$s" @@ -6242,175 +6490,29 @@ msgstr "Opcións específicas do formato:" msgid "Language" msgstr "Lingua" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Gardar datos editados" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Restaurar orde das columnas" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Fila de comezo" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Número de fileiras" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Modo" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontal" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontal (cabezallos rotados)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertical" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Cabeceiras cada %s filas" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Ordenar pola chave" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Opcións" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Textos parciais" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Textos completos" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Chave relacional" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Mostrar columna de relación" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Mostrar os contidos binarios" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Mostrar os contidos BLOB" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Ocultar transformación do navegador" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Texto moi coñecido" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Binario moi coñecido" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Eliminouse o rexistro" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Matar (kill)" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "a procurar" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Mostrando os rexistros" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "total" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "a pesquisa levou %01.4f segundos" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operacións de resultados da procura" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Vista previa da impresión (con textos completos)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Mostrar gráfico" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Ver os datos GIS" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Crear vista" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Non se atopou o vínculo" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Información sobre a versión" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Directorio base dos datos" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Parte común do camiño do directorio que ten todos os ficheiros de datos de " "innoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Ficheiros de datos" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Incremento de Autoextend" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6418,11 +6520,11 @@ msgstr "" " Tamaño do incremento para estender o tamaño dun espazo de táboa cando se " "encha." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Tamaño da reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6430,79 +6532,79 @@ msgstr "" "Tamaño da memoria intermedia que usa InnoDB para gardar provisoriamente os " "datos e índices das súas táboas." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Estado de InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Uso da reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "páxinas" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Páxinas libres" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Páxinas suxas" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Páxinas con datos" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Páxinas que se eliminarán" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Páxinas ocupadas" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Páxinas fechadas" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Actividade da reserva da memoria intermedia" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Peticións de lectura" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Peticións de escrita" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Houbo fallos de lectura" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Esperas para escribir" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Houbo fallos de lectura en %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Esperas para escribir en %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Tamaño do punteiro de datos" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6510,11 +6612,11 @@ msgstr "" "O tamaño por omisión do punteiro de datos en bytes; usarase con CREATE TABLE " "para táboas MyISAM cando non se especifique a opción MAX_ROWS." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Modo de recuperación automática" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6522,11 +6624,11 @@ msgstr "" "O modo de recuperación automática de táboas MyISAM estragadas, tal e como se " "configura na opción de inicio do servidor --myisam-recover." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Tamaño máximo dos ficheiros de ordenación temporais" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6536,11 +6638,11 @@ msgstr "" "momento de recrear un índice MyISAM (durante REPAIR TABLE, ALTER TABLE, ou " "LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Tamaño máximo dos ficheiros temporais no momento de crear índices" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6550,11 +6652,11 @@ msgstr "" "máis grande que se se usar o caché de chaves na cantidade que se especifique " "aquí, preferir o método da caché de chaves." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Reparar os fíos" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6562,11 +6664,11 @@ msgstr "" "Se este valor é maior que 1, os índices das táboas MyISAM créanse en " "paralelo (cada índice no seu propio fío) durante o proceso Reparar ordenando." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Tamaño da memoria intermedia de ordenación" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6575,11 +6677,11 @@ msgstr "" "durante unha instrución REPAIR TABLE ou ao crear índices con CREATE INDEX ou " "ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Tamaño da caché do índice" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6588,11 +6690,11 @@ msgstr "" "omisión é 32MB. A memoria que se asigne aquí só se emprega para a caché das " "páxinas de índice.." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Tamaño da caché dos rexistros" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6603,11 +6705,11 @@ msgstr "" "emprégase como caché das modificacións dos ficheiros de datos de " "manipulación (.xtd) e punteiros das ficleiras (.xtr)." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Tamaño da caché do rexistro" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6616,11 +6718,11 @@ msgstr "" "empregada como caché dos datos do rexistro de transaccións. Por omisión é " "16MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Limiar do ficheiro de rexistro" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6628,11 +6730,11 @@ msgstr "" "O tamaño dun rexistro de transaccións antes do rollover, e créase un " "rexistro novo. O valor por omisión é 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Tamaño do búfer de transaccións" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6640,11 +6742,11 @@ msgstr "" "O tamaño do búfer do rexistro de transaccións globais (o motor asigna dous " "búferes deste tamaño). Por omisión é 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Frecuencia do punto de comprobación" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6652,11 +6754,11 @@ msgstr "" "A cantidade de datos escritos no rexistro de transaccións antes de realizar " "o punto de comprobación. O valor por omisión é 24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Limiar do rexistro de datos" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6669,11 +6771,11 @@ msgstr "" "incrementar a cantidade total de datos que se poden almacenar na base de " "datos." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Limiar do lixo" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6681,11 +6783,11 @@ msgstr "" "A porcentaxe de lixo no ficheiro de datos antes de compactar. É un valor " "entre 1 e 99. Por omisión é 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Tamaño do búfer do rexistro" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6695,27 +6797,27 @@ msgstr "" "256MB. O motor asigna un búfer por fío, mais só se se require o fío para " "escribir un rexistro de datos." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Tamaño de aumento do ficheiro de datos" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "O tamaño de aumento dos ficheiros de datos de manipulación (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Tamaño de aumento do ficheiro de fileiras" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "O tamaño de aumento dos ficheiros de punteiro de fileira (.xtr)." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Número de ficheiros de rexistro" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6727,18 +6829,18 @@ msgstr "" "este valor, os ficheiros de rexistro antigos elimínanse; se non, múdaselles " "o nome e dáselles o número máis alto seguinte." -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Enlaces relacionados" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6785,14 +6887,14 @@ msgstr "A extraer datos da táboa" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Evento" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definición" @@ -6850,14 +6952,14 @@ msgstr "Mostrar tipos MIME" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Servidor" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Xerado en" @@ -7046,21 +7148,12 @@ msgstr "Vistas" msgid "Export contents" msgstr "Exportar o contido" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Abrir unha xanela nova co phpMyAdmin" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Non se atoparon datos para a visualización GIS." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7153,12 +7246,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Nome da táboa" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Nomes das columnas" @@ -7227,93 +7320,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Función" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Agochar" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binario" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binario - non editar" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "directorio de recepción do servidor web" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Editar/Inserir" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar a inserción con %s fileiras" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "e despois" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Inserir unha columna nova" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Inserir como nova fila e ignorar erros" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Mostrar procura de inserción" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Voltar" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Inserir un rexistro novo" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Voltar para esta páxina" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Modificar a fileira seguinte" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Valor" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Mostrar procura SQL" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" @@ -7328,32 +7405,32 @@ msgstr "Ningún" msgid "Convert to Kana" msgstr "Convertir a Kana" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Dende" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Ata" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Enviar" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Engadir prefixo a táboa" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Engadir prefixo" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 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:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Sen cambios" @@ -7563,91 +7640,91 @@ msgstr "Recargar marco de navegación" msgid "This format has no options" msgstr "Este formato non ten opcións" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "non conforme" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Activado" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Características xerais das relacións" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Mostrar as características" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Creación de PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "A mostrar os comentarios das columnas" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Transformación do navegador" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Consulte a documentación para saber como actualizar a táboa Column_comments" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Gardouse a procura de SQL" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Historial de SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Táboas persistentes usadas recentemente" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Preferencia do usuario" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Crear un usuario usuario pma e dar acceso a estas táboas." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "sen descrición" @@ -7655,7 +7732,7 @@ msgstr "sen descrición" msgid "Slave configuration" msgstr "Configuración do escravo" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Mudar ou reconfigurar o servidor principal" @@ -7670,13 +7747,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Nome do usuario" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Porto" @@ -7689,7 +7766,7 @@ msgid "Slave status" msgstr "Estado do escravo" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variábel" @@ -7705,38 +7782,38 @@ msgstr "" "Nesta listaxe só son visíbeis os escravos que se inicien coa opción --report-" "host=nome_da_máquina." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Engadir un usuario de replicación de escravos" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Calquera usuario" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Use campo de texto" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Calquera servidor" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Este servidor" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Usar a táboa de Host" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7752,7 +7829,7 @@ msgstr "Xerar un contrasinal" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7783,88 +7860,89 @@ msgstr "O evento %1$s foi creado." msgid "One or more errors have occured while processing your request:" msgstr "Houbo un ou máis erros procesando a sua petición:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Editar evento" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Erro procesando a petición" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detalles" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Nome do evento" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Tipo de evento" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Cambiar a %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Executar a" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Executar cada" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Iniciar" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Fin" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Preservar ó completar" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Debe proporcionar un nome o evento" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Debe proporcionar un valor do intervalo valido para o evento." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Debe proporcionar un tempo de excución valido para o evento." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Debe proporcionar un tipo valido para o evento." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 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:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Novo" @@ -7893,7 +7971,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo de rutina non válida: \"%s\"" @@ -7912,105 +7990,105 @@ msgstr "A rutina %1$s foi modificada." msgid "Routine %1$s has been created." msgstr "A rutina %1$s foi creada." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Editar rutina" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Nome da rutina" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parámetros" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Dirección" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Tamaño/Definir*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Engadir parámetro" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Eliminar último parámetro" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Tipo de retorno" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Retornar lonxitude/valores" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Retornar opcións" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "É determinista" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Tipo de seguridade" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "Acceso de datos SQL" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Debe proporcionar un nome á rutina" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Debe proporcionar unha definición da rutina." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "resultados da execución da rutina %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Executar rutina" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Parámetros da rutina" @@ -8028,36 +8106,36 @@ msgstr "O disparador %1$s foi modificado." msgid "Trigger %1$s has been created." msgstr "O disparador %1$s foi creado." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Editar disparador" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Nome do disparador" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Tempo" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Debe proporcionar un nome ó disparador" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Debe proporcionar unha sincronización valida para o disparador" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Debe proporcionar un evento valido para o disparador" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "debe proporcionar un nome de táboa valido" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Debe proporcionar unha definición do disparador." @@ -8141,7 +8219,7 @@ msgstr "Non hai eventos que mostrar." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8150,7 +8228,7 @@ msgstr "Non existe a táboa %s!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8158,7 +8236,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Configure as coordenadas da táboa %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8169,27 +8247,27 @@ msgstr "Esquema da base de datos %s - Páxina %s" msgid "This page does not contain any tables!" msgstr "Esta páxina non contén ningunha táboa!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "ERRO NO ESQUEMA: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Esquema relacional" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Índice" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atributos" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8297,7 +8375,7 @@ msgstr "Linguaxe descoñecida: %1$s." msgid "Current Server" msgstr "Servidor actual" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Base de datos de orixe" @@ -8315,7 +8393,7 @@ msgstr "Servidor remoto" msgid "Difference" msgstr "Diferenza" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Base de datos de destino" @@ -8334,7 +8412,7 @@ msgstr "Executar procura/s SQL no servidor %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Limpar" @@ -8343,11 +8421,11 @@ msgstr "Limpar" msgid "Columns" msgstr "Columnas" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Permitir que calquera usuario poida acceder a este marcador" @@ -8444,7 +8522,7 @@ msgstr "" "Non foi posíbel iniciar o comprobador de SQL. Comprobe que ten instalados " "todos os engadidos de php tal e como se describe na %sdocumentación%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "O seguemento de %s está activado." @@ -8476,8 +8554,8 @@ msgstr "" "barras ou aspas e empregando este formato: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Índice" @@ -8529,13 +8607,13 @@ msgstr "Ninguno" msgid "As defined:" msgstr "Como se define:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primaria" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Texto completo" @@ -8549,17 +8627,17 @@ msgstr "" msgid "after %s" msgstr "Despois de %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Engadir %s columna(s)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Debe engadir polo menos unha columna." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Motor de almacenamento" @@ -8567,41 +8645,6 @@ msgstr "Motor de almacenamento" msgid "PARTITION definition" msgstr "Definición da PARTICIÓN" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Procura na táboa" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Seleccione os campos (mínimo un):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Condición da pesquisa (ou sexa, o complemento da cláusula \"WHERE\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Número de filas por páxina" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Mostrar en orde:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Visualizar valores alleos" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Faga unha \"procura por exemplo\" (o comodín é \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8791,11 +8834,11 @@ msgstr "" msgid "Manage your settings" msgstr "Xestionar a súa configuración" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "A configuración foi gardada" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8806,7 +8849,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Non se puido gravar a configuración" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8833,7 +8876,7 @@ msgstr "Cotexamento da conexión do servidor" msgid "Appearance Settings" msgstr "Configuración de aparencia" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Máis opcións" @@ -8853,9 +8896,9 @@ msgstr "Versión do software" msgid "Protocol version" msgstr "Versión do protocolo" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Usuario" @@ -9001,128 +9044,128 @@ msgstr "" "Servidor a executarse con Suhosin. Consulte os posíbeis problemas na " "%sdocumentation%s." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Non hai ningunha base de datos" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Filtrar táboas por nome" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Filtrar táboas por nome" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Crear táboa" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Seleccione unha base de dados" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Mostrar/Agochar o menú esquerdo" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Gardar a posición" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Crear relación" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Recargar" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Axuda" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Ligazóns angulares" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Ligazóns directas" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Axustar á grella" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Todo grande/pequeno" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Alternar pequeno/grande" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Conmutar liñas de relación" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para esquema PDF" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Construir petición" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Mover o menú" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Agochalo/Mostralo todo" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Agochar/Mostrar táboas sen relación" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Número de táboas" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Eliminar a relación" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Operador de relación" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Excepto" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "subpetición" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Renomear a" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Novo nome" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Agregar" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Opcións activas" @@ -9134,51 +9177,51 @@ msgstr "A páxina foi creada" msgid "Page creation failed" msgstr "Erro na creación da páxina" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Páxina" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Importar dende a páxina seleccionada" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Exportar a páxina seleccionada" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Crear unha páxina e exportar a ela" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Nome da nova páxina: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Exportar/Importar a escala" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "recomendado" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Erro: xa existe unha relación." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Erro: non se engadiu a relación." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Engadiuse unha relación cunha CHAVE EXTERNA" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Engadiuse a relación interna" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Eliminouse a relación" @@ -9190,52 +9233,52 @@ msgstr "Houbo un erro ao gardar as coordenadas para Deseñador." msgid "Modifications have been saved" msgstr "Gardáronse as modificacións" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Configuración non gardada, o formulario enviado contén erros" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Non se puido importar a configuración" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "A configuración contén datos incorrectos para algúns campos." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Quere importar o resto da configuración?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Gardado o: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importar dende arquivo" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Importar do almacenamento do navegador" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" "A configuración será importada dende o almacenamento local do navegador." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Non tes opcións gardadas!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Esta característica non está soportada polo seu navegador" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Combinar ca configuración actual" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9244,37 +9287,37 @@ msgstr "" "Pode configurar maís opcións modificando config.inc.php, ex. usando %sSetup " "script%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Gardar no almacenamento do navegador" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "A configuración será gardada no almacenamento do navegador." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "A configuración existente será sobreescrita!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Pode resetear a súa configuración e restaurar os valores predeterminados." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importar ficheiros" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Todos" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Non se atopou a táboa %sou non se indicou en %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "O arquivo non existe" @@ -9282,17 +9325,17 @@ msgstr "O arquivo non existe" msgid "Select binary log to view" msgstr "Seleccione o ficheiro de rexistro binario que queira ver" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Ficheiros" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Interrumpir as procuras mostradas" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Mostrar as procuras completas" @@ -9308,7 +9351,7 @@ msgstr "Posición" msgid "Original position" msgstr "Posición orixinal" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Información" @@ -9316,31 +9359,31 @@ msgstr "Información" msgid "Character Sets and Collations" msgstr "Conxuntos de caracteres e Ordes alfabéticas" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Elimináouse %1$d base de datos sen problemas." msgstr[1] "Elimináronse %1$d bases de datos sen problemas." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Estatísticas das bases de datos" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Replicación do principal" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Replicación do escravo" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Activar as estatísticas" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9352,152 +9395,152 @@ msgstr "" msgid "Storage Engines" msgstr "Motores de almacenamento" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Ver o volcado das bases de datos" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "M'odulos" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Inicio" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Extensión" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "M'odulo" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Biblioteca" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Versión" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Autor" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Licen" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "Desactivado" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Inclúe todos os privilexios a excepción de GRANT (Conceder)." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura das táboas xa existentes." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar e eliminar rutinas armacenadas." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Permite crear bases de datos e táboas novas." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Permite crear rutinas almacenadas." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Permite crear táboas novas." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Permite crear táboas temporais." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar e mudar o nome das contas de usuario." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Permite crear vistas novas." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Permite eliminar datos." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos e táboas." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Permite eliminar táboas." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Permite configurar acontecementos para o programador de acontecementos" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Permite executar rutinas almacenadas." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar e exportar datos desde e para ficheiros." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite engadir usuarios e privilexios sen recargar as táboas de privilexios." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Permite crear e eliminar índices." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituír datos." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Permite bloquear táboas do fío actual." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Limita o número de conexións novas por hora que pode abrir un usuario." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Limita o número de procuras por hora que pode enviar un usuario." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9505,58 +9548,58 @@ msgstr "" "Limita o número de ordes que modifiquen unha táboa ou base de datos por hora " "que pode executar un usuario." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita o número de conexións simultáneas que pode ter o usuario." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Permite ver procesos de todos os usuarios" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Non funciona nesta versión do MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Permite recargar a configuración do servidor e limpar a súa caché." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite que o usuario pregunte onde están os escravos e os masters." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Necesario para os escravos de replicación." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Permite gravar datos." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Permite acceder á lista completa de bases de datos." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite realizar consultas SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Permite apagar o servidor." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9566,163 +9609,163 @@ msgstr "" "maioría das operación administrativas, como configurar as variábeis globais " "ou matar os fíos doutros usuarios." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Permite crear e eliminar os disparadores" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Permite modificar datos." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Sen privilexios." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Ningunha" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Privilexios propios de táboa" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: os nomes de privilexios do MySQL están en inglés" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administración" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Privilexios globais" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Privilexios propios de base de datos" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Limites de recursos" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Se estas opcións se configuran como 0 (cero) elimínase o límite." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Información sobre o acceso (login)" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Non mude o contrasinal" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Non se achou ningún usuario." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Xa existe o usuario %s!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Engadiuse o usuario." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Acaba de actualizar os privilexios de %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Retiroulle os privilexios a %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Modificouse sen problemas o contrasinal de %s." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "A eliminar %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Non se seleccionaron utilizadores para eliminar!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "A recargar os privilexios" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Elimináronse sen problemas os usuarios seleccionados." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Non houbo problemas ao recargar os privilexios." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Modificar privilexios" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Revogar" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Exportar todo" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Calquera" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Privilexios para todolos usuarios" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Privilexios para %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Vista xeral dos usuarios" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Conceder" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Eliminar os usuarios seleccionados" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9735,51 +9778,51 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Privilexios propios de columna" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Engadir privilexios para esta base de datos" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Engadir privilexios para a esta táboa" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Modificar a información de acceso (login) / Copiar o utilizador" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Crear un utilizador novo cos mesmos privilexios e..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... manter o anterior." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... eliminar o anterior das táboas de utilizadores." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9787,83 +9830,83 @@ msgstr "" " ... eliminar o anterior das táboas de utilizadores e recargar os " "privilexios despois." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Base de datos para o usuario" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilexios sobre a base de datos "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios que teñen acceso a "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "específico da base de datos" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "comodín" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "O usuario foi engadido." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Produciuse un erro descoñecido" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Foi imposíbel conectar co principal %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Foi imposíbel ler a posición do rexistro do principal. É posíbel que haxa un " "problema de privilexios no principal." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Foi imposíbel mudar de principal" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "O servidor principal mudouse con éxito a %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Mostrar o estado do principal" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Mostrar os escravos conectados" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9872,11 +9915,11 @@ msgstr "" "Este servidor non está configurado como principal nun proceso de " "replicación. Desexa configuralo?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Configuración do principal" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9890,19 +9933,19 @@ msgstr "" "ignorar todas as bases de datos por omisión e permitir que se repliquen só " "algunhas. Seleccione o modo:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Replicar todas as bases de datos. Ignorar:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Ignorar todas as bases de datos. Replicar:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Seleccione as bases de datos:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -9910,7 +9953,7 @@ msgstr "" "Agora engada as liñas seguintes ao final do ficheiro my.cnf e a seguir " "reinicie o servidor de MySQL." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -9920,83 +9963,83 @@ msgstr "" "debería ver unha mensaxe que informa de que este servidor está " "configurado como principal" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Fio esclavo SQL non está funcionando!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Fio esclavo E/S non está funcionando!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "O servidor está configurado como escravo nun proceso de replicación. Desexa:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Ver a táboa de estado do escravo" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Sincronizar as bases de datos co principal" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Escravo de control:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Inicio completo" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Detención completa" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Reiniciar o escravo" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Iniciar fío SQL %s só" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Parar fío SQL %s só" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Iniciar fío de E/S %s só" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Parar fío de E/S %s só" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Xestión de erros:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Omitir os erros podería conducir a que o principal e o escravo non estean " "sincronizados!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Omitir este erro" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Omitir os seguintes" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "erros." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10005,127 +10048,127 @@ msgstr "" "Este servidor non está configurado como escravo nun proceso de replicación. " "Desexa configuralo?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Finalizouse o fío %s." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin foi incapaz de finalizar o fío %s. Probablemente xa estea fechado." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Manipulador" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "caché de procuras" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Fíos" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Datos temporais" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Insercións demoradas" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "caché da chave" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Unións" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Ordenación" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Coordinador da transacción" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Limpar (fechar) todas as táboas" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Mostrar as táboas abertas" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Mostrar os servidores escravos" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Mostrar o estado dos escravos" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Limpar a caché da pesquisa" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Información sobre o tempo de execución" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Todalas variables de estado" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Monitorizaci'on" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Consellos" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Tasa de refresco: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filtros" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Contendo a palabra:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Mostrar só valores de alerta" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filtrar por categoría..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Mostrar valores sen formato" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Ligazóns relacionadas:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Executar analizador" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Instruccións" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10133,7 +10176,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:918 +#: server_status.php:917 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 " @@ -10142,14 +10185,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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10157,31 +10200,31 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Preguntas dende o inicio: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Informacións" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Tráfico de rede dende o inicio: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10189,18 +10232,18 @@ msgstr "" "Este servidor funciona como maestro e esclavo nun proceso de " "replicación." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" "Este servidor funciona como maestronun proceso de replicación." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" "Este servidor funciona como esclavo nun proceso de replicación." -#: server_status.php:1083 +#: server_status.php:1082 #, fuzzy #| msgid "" #| "s MySQL server works as %s in replication process. For further " @@ -10214,11 +10257,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:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Estado da replicación" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10227,47 +10270,47 @@ msgstr "" "que esas estatísticas, tal e como as transmite o servidor de MySQL, poden " "resultar incorrectas." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Recibido" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Enviado" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "conexións simultáneas máximas" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Tentativas falidas" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Cancelado" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "Identificador" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Orde" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -10277,16 +10320,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:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10298,11 +10341,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Número de ficheiros temporais creados por mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10310,7 +10353,7 @@ msgstr "" "Número de táboas temporais na memoria creadas automaticamente polo servidor " "ao executar instrucións." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10318,7 +10361,7 @@ msgstr "" "Número de fileiras escritas con INSERT DELAYED que sofriron algún erro " "(probabelmente unha chave duplicada)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10326,23 +10369,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Número de fileiras INSERT DELAYED escritas." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Número de instrucións FLUSH executadas." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Número de instrucións COMMIT internas." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10352,7 +10395,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:1335 +#: 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, " @@ -10363,7 +10406,7 @@ msgstr "" "completos; por exemplo, SELECT col FROM algo, supoñendo que col estea " "indexada." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10371,7 +10414,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:1337 +#: server_status.php:1336 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 " @@ -10381,7 +10424,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:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10389,7 +10432,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:1339 +#: 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 " @@ -10401,7 +10444,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:1340 +#: server_status.php:1339 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 " @@ -10413,35 +10456,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:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Número de instrucións de ROLLBACK (\"desfacer\") interno." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 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:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Número de páxinas actualmente suxas." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Número de páxinas libres." -#: server_status.php:1348 +#: 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 " @@ -10451,7 +10494,7 @@ msgstr "" "actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por " "algunha outra razón." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10463,11 +10506,11 @@ msgstr "" "se pode calcular así: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total do búfer, en páxinas." -#: server_status.php:1351 +#: 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." @@ -10476,7 +10519,7 @@ msgstr "" "cando unha procura vai examinar unha porción grande dunha táboa mais en orde " "aleatoria." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10484,11 +10527,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:1353 +#: server_status.php:1352 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:1354 +#: 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." @@ -10496,7 +10539,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:1355 +#: server_status.php:1354 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 " @@ -10510,55 +10553,55 @@ msgstr "" "que esperar. Se o tamaño do búfer é o axeitado, este valor debería ser " "pequeno." -#: server_status.php:1356 +#: server_status.php:1355 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:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Número de operacións fsync() até o momento." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Número actual de operacións fsync() pendentes." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Número actual de lecturas pendentes." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Número actual de escritas pendentes." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Cantidade de datos lida até o momento, en bytes." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Número total de lecturas de datos." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Número total de escritas de datos." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Cantidade de datos escrita até o momento, en bytes." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -10566,35 +10609,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Número de peticións de escrita no rexistro." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Número de escritas físicas no ficheiro de rexistro." -#: server_status.php:1370 +#: server_status.php:1369 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Número de fsyncs do ficheiro de rexistro pendentes." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Escritas no ficheiro de rexistro pendentes." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Número de bytes escritos no ficheiro de rexistro." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Número de páxinas creadas." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10603,55 +10646,55 @@ msgstr "" "cóntanse en páxinas: o tamaño da páxina permite que se convirtan doadamente " "en bytes." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Número de páxinas lidas." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Número de páxinas escritas." -#: server_status.php:1378 +#: server_status.php:1377 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:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Número de fileiras eliminadas das táboas InnoDB." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Número de fileiras inseridas nas táboas InnoDB." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Número de fileiras lidas das táboas InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Número de fileiras actualizadas en táboas InnoDB." -#: server_status.php:1387 +#: 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." @@ -10659,7 +10702,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:1388 +#: 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." @@ -10667,7 +10710,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:1389 +#: server_status.php:1388 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 " @@ -10677,17 +10720,17 @@ msgstr "" "referencia superior que indica o número máximo de bloques que se teñen " "empregado." -#: server_status.php:1390 +#: server_status.php:1389 #, 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:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10697,26 +10740,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:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -10727,19 +10770,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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10747,38 +10790,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Número de ficheiros abertos." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Número de táboas abertas." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Cantidade de memoria libre para a caché de procuras." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Número de impactos na caché." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Número de procuras adicionadas na caché." -#: server_status.php:1408 +#: 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 " @@ -10790,7 +10833,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:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10798,19 +10841,19 @@ msgstr "" "Número de procuras non enviadas á caché (que non se poden enviar debido á " "configuración de query_cache_type)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Número de procuras rexistradas na caché." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Número total de bloques na caché de procuras." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Estado da replicación en modo seguro (aínda non realizado)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10818,13 +10861,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10832,7 +10875,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:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10840,15 +10883,15 @@ msgstr "" "Número de unións que utilizaron intervalos na primeira táboa (Normalmente " "non é grave, mesmo de ser grande)" -#: server_status.php:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10856,11 +10899,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:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10868,14 +10911,14 @@ msgstr "" "Número de fíos aos que lles levou crearse máis segundos dos indicados en " "slow_launch_time." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -10885,23 +10928,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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Número de ordenacións feitas con intervalos." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Número de fileiras ordenadas." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -10913,7 +10956,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:1429 +#: server_status.php:1428 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 " @@ -10923,11 +10966,11 @@ msgstr "" "calcular como Threads_created/Connections. Se este valor for vermello, " "debería aumentar a thread_cache_size." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Número de conexións abertas neste momento." -#: server_status.php:1431 +#: server_status.php:1430 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,63 +10982,63 @@ msgstr "" "non fornece unha mellora notábel no desempeño se ten unha boa implementación " "de fíos.)" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Porcentaxe de caché de fíos %%" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Número de fíos que non están a durmir." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Iniciar monitorización" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Engadir gráfico" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Tasa de refresco" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Columnas do gráfico" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Ordenación dos gráficos" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Resetear a predeterminado" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Instruccións de monitorización" -#: server_status.php:1633 +#: server_status.php:1632 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 +11047,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 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 +11055,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 +11074,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Por favor note:" -#: server_status.php:1664 +#: server_status.php:1663 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,199 +11086,199 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Gráfico predefinido" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Variable(s) de estado" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Seleccionar series:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Monitorizacións comúns" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "ou escriba o nome da variable:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Mostrar como valor diferencial" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Aplicar un divisor" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Engadir esta serie" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Limpar series" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Series no gráfico:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Estatísticas de rexistro" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Rango temporal seleccionado:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Os resultados están agrupados polo texto da consulta." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Analizador de procuras" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d segundo" msgstr[1] "%d segundos" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minuto" msgstr[1] "%d minutos" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Non foi posíbel conectar coa orixe" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Non foi posíbel conectar co destino" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Non existe a base de datos '%s'." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Sincronización da estrutura" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Sincronización dos datos" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "non está presente" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Diferenza da estrutura" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Diferenza dos datos" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Engadir columna(s)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Eliminar columna(s)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Alterar columna(s)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Eliminar índice(s)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Aplicar índice(s)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Actualizar fileira(s)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Inserir fileira(s)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Quere eliminar todas as fileiras anteriores das táboas de destino?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Aplicar as alteracións seleccionadas" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Sincronizar as bases de datos" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Sincronizáronse as táboas de destino seleccionadas coas táboas de orixe." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 #, fuzzy msgid "Target database has been synchronized with source database" msgstr "" "Sincronizáronse as táboas de destino seleccionadas coas táboas de orixe." -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Peticións executadas" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Inserir manualmente" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Conexión actual" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Configuración: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11243,19 +11286,19 @@ msgstr "" "A base de datos de destino sincronizarase completamente coa base de datos de " "orixe. A base de datos de orixe ficará sen alteracións." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Erro establecendo a variable" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Variábeis e configuración do servidor" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Valor da sesión" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Valor global" @@ -11618,155 +11661,155 @@ msgstr "" msgid "Wrong data" msgstr "Datos erroneos" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Seguro que quere executar a petición seguinte?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Resultado SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Xerado por" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas cos índices da táboa `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Nome" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Alterouse a táboa %1$s sen problemas" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Elimináronse sen problemas os usuarios seleccionados." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Barra" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Columna" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Liña" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Fendas" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Pastel" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Apiladas" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Título do gráfico" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "Eixo X:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Series:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Etiqueta do eixo X:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "Valores X" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Eixo Y:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Valores Y" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Xa existe a táboa %s!!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Creouse a táboa %1$s." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Ver o esquema do volcado da táboa" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Mostrar visualización GIS" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Anchura" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Altura" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Etiqueta da columna" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "- Ningún -" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Columna espacial" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Redebuxar" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Gardar nun arquivo" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Nome do arquivo" @@ -11782,29 +11825,29 @@ msgstr "Non se pode facer que este índice sexa PRIMARIO!" msgid "No index parts defined!" msgstr "Non se definiron partes do índice!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Engadir índice" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Editar índice" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Nome do índice :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARIA\" debe ser o nome de e só de unha chave primaria)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Tipo de índice :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Engadir ao índice  %s coluna(s)" @@ -11827,151 +11870,151 @@ msgstr "Moveuse a táboa %s para %s." msgid "Table %s has been copied to %s." msgstr "A táboa %s copiouse para %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "O nome da táboa está vacío!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Ordenar a táboa por" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "a refacer logo de insercións e destrucións (shingly)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Mover a táboa a (base_de_datos.táboa):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Opcións da táboa" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Mudar o nome da táboa para" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Copiar a táboa a (base_de_datos.táboa):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Ir à táboa copiada" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Táboa de mantemento" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Táboa de desfragmentación" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Fechouse a táboa %s" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Vaciar a caché da táboa (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Eliminar datos da táboa" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Vaciar táboa (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Borrar a táboa (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Mantemento da partición" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partición %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analizar" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Comprobar" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimizar" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Reconstruír" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Arranxar" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Eliminar particións" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Comprobar a integridade das referencias:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Mostrando táboas" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Uso do espazo" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efectivo" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Estatísticas da fileira" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "estático" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinámico" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Lonxitude da fileira" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Tamaño da fila" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Houbo un erro ao crear a chave externa en %1$s (comprobe os tipos de datos)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Relación interna" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -11979,107 +12022,107 @@ msgstr "" "Non se precisas unha relación interna cando existe unha CHAVE EXTERNA " "correspondente." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Límite das chaves externas" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Examinar valores claramente distintos" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Engadir chave primaria" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Engadir índice único" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Engadir índice SPATIAL" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Engadir índice FULLTEXT" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Ningunha" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Eliminouse a columna %s" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Engadiuse unha chave primaria a %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Engadiusese un índice a %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Mostrar máis accións" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Eliminar columna(s)" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Editar vista" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Vista das relacións" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Propor unha estrutura para a táboa" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Engadir columna" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Ao final da táboa" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "No comezo da táboa" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Despois de %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Crear un índice en  %s columnas" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "particionado" @@ -12230,70 +12273,38 @@ msgstr "Seguir estas declaracións de manipulación de datos:" msgid "Create version" msgstr "Crear unha versión" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Facer unha \"consulta de exemplo\" (o comodín é \"%\") para duas columnas " -"diferentes" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Criterios adicionais de busca" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Máximo de filas que aparecen no gráfico" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Como usar" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Reiniciar" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Obter máis temas!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Tipos MIME dispoñíbeis" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Os tipos MIME en cursiva non contan cunha función de transformación separada" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Transformacións dispoñíbeis" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Descrición" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Non ten direitos suficientes para estar aquí agora!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Actualizouse o perfil." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Nome da VISTA" diff --git a/po/he.po b/po/he.po index 06999c24af..9c9b30b488 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: hebrew \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "הצגת הכול" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "מספר העמוד:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,58 +37,58 @@ msgstr "" "לא ניתן לעדכן את חלון דפדפן היעד. יתכן שסגרת את חלון ההורה, או שהגדרות " "האבטחה של הדפדפן שלך מוגדרות כך שיחסמו עדכונים בין חלונות." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "ביצוע" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "שם מפתח" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "תיאור" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "שימוש בערך זה" @@ -105,88 +105,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "מסד הנתונים %1$s נוצר." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "הערה על מסד הנתונים: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "הערות לטבלה" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "עמודה" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "ריק" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "בררת מחדל" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "קישורים אל" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "הערות" @@ -195,14 +196,14 @@ msgstr "הערות" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "לא" @@ -215,179 +216,179 @@ msgstr "לא" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "כן" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "צפייה בשליפה (תבנית) של מסד נתונים" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "לא נמצאו טבלאות במסד הנתונים." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "בחירת הכול" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "ביטול הבחירה הכללית" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "שם מסד הנתונים ריק!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "שם מסד הנתונים %1$s הוחלף בשם %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "מסד הנתונים %1$s הועתק אל %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "שינוי שם מסד הנתונים לשם" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "הסרת מסד הנתונים" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "מסד הנתונים %s הושמט." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "השמטת מסד הנתונים (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "העתקת מסד הנתונים אל" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "מבנה בלבד" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "מבנה ונתונים" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "נתונים בלבד" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE לפני העתקה" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "הוספת %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "הוספת הגבלות" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "מעבר למסד הנתונים שהועתק" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "איסוף" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "אחסון התצורה של phpMyAdmin הופסקה. כדי לגלות מדוע יש ללחוץ %sכאן%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "עריכה או יצוא של תבנית יחסית" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "טבלה" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "שורות" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "גודל" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "בשימוש" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "יצירה" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "עדכון אחרון" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "נבדק לאחרונה" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -398,395 +399,396 @@ msgstr[1] "%s טבלאות" msgid "You have to choose at least one column to display" msgstr "עליך לבחור לפחות עמודה אחת לתצוגה" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "מעבר ל%sבונה החזותי%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "סידור" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "עולה" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "יורד" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "הצגה" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "קריטריונים" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "הכנסה" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "וגם" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "מחיקה" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "או" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "שינוי" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "הוספת/הסרת שורות של קריטריונים" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "הוספת/מחיקת עמודות" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "עדכון שאילתה" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "שימוש בטבלאות" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "שאילתת SQL על מסד הנתונים %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "שליחת שאילתה" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "הגישה נדחתה" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "לפחות אחת מהמילים" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "כל המילים" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "הביטוי במדויק" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "כביטוי רגולרי" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "תוצאות החיפוש אחר „%s“ %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "האם למחוק את התוצאות עבור הטבלה %s?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "סה״כ: פריט אחד (%s)" msgstr[1] "סה״כ: %s פריטים" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "חיפוש במסד הנתונים" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "מילים או ערכים לחיפוש אחריהם (תו כללי: „%“):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "חיפוש:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "מילים מופרדות ברווח („ “)." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "בתוך הטבלאות:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "בתוך העמודה:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "לא נמצאו טבלאות במסד הנתונים" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "לא ידוע" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "הטבלה %s רוקנה" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "התצוגה %s נשמטה" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "הטבלה %s נשמטה" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "המעקב פעיל." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "המעקב אינו פעיל." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "לתצוגה זו יש לפחות מספר כזה של שורות. נא לפנות ל%sתיעוד%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "שכפול" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "סכום" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s הוא מנוע האחסון כבררת המחדל של שרת MySQL זה." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "עם הנבחרים:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "סימון הכול" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "בדיקת טבלאות בעלות תקורה" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "יצוא" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "תצוגת הדפסה" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "ריקון" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "השמטה" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "בדיקת טבלה" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "ייעול טבלה" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "תיקון טבלה" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "ניתוח טבלה" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "הוספת קידומת לטבלה" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "החלפת קידומת הטבלה" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "העתקת הטבלה עם קידומת" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "מילון נתונים" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "טבלאות במעקב" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "מסד נתונים" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "הגרסה האחרונה" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "מועד היצירה" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "עודכנה" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "מצב" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "פעולה" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "מחיקת נתוני המעקב לטבלה זו" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "פעיל" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "לא פעיל" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "גרסאות" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "דוח המעקב" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "העתק של המבנה" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "טבלאות שאינן במעקב" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "מעקב אחר טבלה" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "יומן מסד נתונים" @@ -798,27 +800,27 @@ msgstr "הסוג שגוי!" msgid "Selected export type has to be saved in file!" msgstr "סוג הייצוא הנבחר חייב להישמר לקובץ!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "פרמטרים שגויים!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "אין מספיק מקום לשמירת הקובץ %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "הקובץ %s כבר קיים בשרת, נא לשנות את שם הקובץ או לסמן את אפשרות השכתוב." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "לשרת אין הרשאה לשמור את קובץ %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "השליפה נשמרה אל הקובץ %s." @@ -827,86 +829,86 @@ msgstr "השליפה נשמרה אל הקובץ %s." msgid "Invalid export type" msgstr "סוג הייצוא שגוי" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "ערך עבור העמודה „%s“" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "שימוש ב־OpenStreetMaps כשכבת הבסיס" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "פני השטח" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "נקודה" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "נקודה %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "הוספת נקודה" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "מחרוזת שורה" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "טבעת חיצונית" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "טבעת פנימית" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "הוספת מחרוזת שורה" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "הוספת טבעת פנימית" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "מצולע" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "הוספת מצולע" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "הוספת פני שטח" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "פלט" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -914,7 +916,7 @@ msgstr "" "יש לבחור ב„גאומטריה מטקסט” מהעמודה „פונקציה“ ולהדביק את המחרוזת שלהלן לשדה " "„ערך“" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -923,21 +925,21 @@ msgstr "" "כפי הנראה ניסית להוריד קובץ גדול מדי. נא לפנות ל%sתיעוד%s לקבלת דרכים לעקיפת " "הגבלה זו." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "הצגת סימנייה" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "הסימנייה נמחקה." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "לא ניתן לקרוא את הקובץ" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -946,7 +948,7 @@ msgstr "" "ניסית לטעון קובץ עם דחיסה שאינה נתמכת (%s). או שהתמיכה בדחיסה לא הוטמעה או " "שבוטלה בהגדרות שלך." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -956,26 +958,26 @@ msgstr "" "המרבי המותר בתצורת ה־PHP שלך. ניתן לעיין ב[a@./Documentation." "html#faq1_16@Documentation]שו״ת 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "לא ניתן להמיר את קידוד התווים של הקובץ ללא ספרייה להמרת קידודי תווים" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "לא ניתן לטעון את תוספי הייבוא, נא לבדוק האם ההתקנה שלך תקינה!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "הסימנייה %s נוצרה" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "הייבוא הושלם בהצלחה, הופעלו %d שאילתות." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -983,7 +985,7 @@ msgstr "" "תום זמן ההמתנה של הסקריפט עבר, אם ברצונך לסיים את הייבוא נא לשלוח מחדש את " "אותו הקובץ והייבוא יימשך." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -991,25 +993,25 @@ msgstr "" "עם זאת, בהרצה האחרונה לא נותחו נתונים כלל, לרוב משמעות הדבר היא ש־phpMyAdmin " "לא יוכל להשלים יבוא זה אלמלא גבול זמן ההמתנה של ה־php יוגדל." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "חזרה" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin מתנהג בצורה יותר ידידותית עם דפדפן התומך במסגרות (frames-" "capable)." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "הוראות \"DROP DATABASE\" מנוטרלות." @@ -1018,7 +1020,7 @@ msgstr "הוראות \"DROP DATABASE\" מנוטרלות." msgid "Do you really want to execute \"%s\"?" msgstr "האם אכן ברצונך להפעיל את „%s”?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "פעולה זו עלולה להשמיד מסד נתונים שלם!" @@ -1058,7 +1060,7 @@ msgstr "הוספת אינדקס" msgid "Edit Index" msgstr "עריכת האינדקס" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "הוספת %d עמודות לאינדקס" @@ -1076,16 +1078,16 @@ msgstr "שם המארח ריק!" msgid "The user name is empty!" msgstr "שם המשתמש ריק!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "הססמה ריקה!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "הססמאות אינן זהות!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "הוספת משתמש" @@ -1102,23 +1104,24 @@ msgstr "הסרת המשתמש הנבחרים" msgid "Close" msgstr "סגירה" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "עריכה" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "תרשים תעבורה חי" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "תרשים חיבור/תהליך חי" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "תרשים תשאול חי" @@ -1128,24 +1131,24 @@ msgstr "נתונים סטטיים" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "סה״כ" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "אחר" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1165,7 +1168,7 @@ msgstr "תעבורת השרת (ב־KiB)" msgid "Connections since last refresh" msgstr "התחברויות מאז הרענון האחרון" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "תהליכים" @@ -1183,7 +1186,7 @@ msgstr "שאלות מאז הרענון האחרון" msgid "Questions (executed statements by the server)" msgstr "שאלות (הצהרות שהופעלו על ידי השרת)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "סטטיסטיקת תשאולים" @@ -1227,14 +1230,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1294,32 +1297,32 @@ msgstr "" msgid "Bytes received" msgstr "התקבל" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "חיבורים" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1335,11 +1338,11 @@ msgstr "%s טבלאות" msgid "Questions" msgstr "Persian" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1363,11 +1366,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "ללא" @@ -1467,7 +1470,7 @@ msgstr "תכונות קשר כלליות" msgid "Current settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1554,7 +1557,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "זמן" @@ -1662,10 +1665,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "ייצוא" @@ -1720,9 +1723,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1737,11 +1740,11 @@ msgstr "מקומי" msgid "Processing Request" msgstr "תהליכים" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "אף מאגר נתונים לא נבחר." @@ -1753,9 +1756,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "אישור" @@ -1811,17 +1814,17 @@ msgstr "הוספת שדה חדש" msgid "Show indexes" msgstr "הראה רשת" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "מופעל" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1859,7 +1862,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1901,8 +1904,8 @@ msgstr "שאילתת SQL" msgid "No rows selected" msgstr "לא נבחרו שורות" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "שינוי" @@ -1910,18 +1913,18 @@ msgstr "שינוי" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "%d הוא לא מספר שורה תקין." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "שמירה" @@ -1935,7 +1938,7 @@ msgstr "שאילתת SQL" msgid "Show search criteria" msgstr "שאילתת SQL" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1987,12 +1990,12 @@ msgstr "תוצאת SQL" msgid "Data point content" msgstr "תוכן עניניים" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "התעלמות" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "העתקה" @@ -2014,7 +2017,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2107,7 +2110,7 @@ msgstr "ייצור" msgid "Change Password" msgstr "שינוי סיסמא" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2221,27 +2224,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2249,37 +2252,37 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "דצמבר" @@ -2328,32 +2331,32 @@ msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "שבת" @@ -2486,16 +2489,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "לשנייה" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "לדקה" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "לשעה" @@ -2516,71 +2519,298 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +msgid "Save edited data" +msgstr "תיקיית בית של נתונים" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "הוספת/מחיקת עמודות שדה" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "התחלה" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "הקודם" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "הבא" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "סיום" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "שבת" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "מספר שדות" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "יום שני" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "מאוזן" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "מאוזן (headers מסובבים)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "ניצב" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "הרצת שאילתה מועדפת" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "פעולות" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "טקסטים חלקיים" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "טקסטים מלאים" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "תצוגת יחסים" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +msgid "Relational display column" +msgstr "תצוגת יחסים" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +msgid "Hide browser transformation" +msgstr "שינויי צורה זמינים" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "השורה נמחקה" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "יכול להיות הערכה. ראה FAQ 3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "בשאילתה" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "מראה שורות" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "סה\"כ" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "שאילתה לקחה %01.4f שניות" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "תצוגת הדפסה (עם טקסטים מלאים)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Displaying Column Comments" +msgid "Display chart" +msgstr "מציג הערות עמודה" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "גרסת שרת" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "קישור לא נמצא" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "יכול להיות הערכה. ראה FAQ 3.11" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "אינדקסים" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "ייחודי" @@ -2593,8 +2823,8 @@ msgstr "" msgid "Cardinality" msgstr "מספור" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2616,130 +2846,130 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "מאגרי נתונים" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "שרת" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "מבנה" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "הכנסה" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "פעולות" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "שאילתה" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "הרשאות" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "משתמש" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "דו\"ח בינארי" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "משתנים" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "קידודים" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "מנועים" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "שגיאה" @@ -2766,7 +2996,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "לא נבחרו שורות" msgstr[1] "לא נבחרו שורות" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy msgid "Error while creating PDF:" msgstr "מאפשר מחיקת מידע." @@ -2856,16 +3086,108 @@ 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 +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 +#, 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 +msgid "Value" +msgstr "ערך" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "חיפוש" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "הכנסה" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "בחירת שדות (לפחות אחד):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "הוספת תנאי חיפוש (הגוף של תנאי \"where\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "מספר של שורות לכל דף" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "סדר תצוגה:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "שאילתת SQL" + +#: 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 "ביצוע \"שאילתה לדוגמה\" (תו כללי: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "ביצוע \"שאילתה לדוגמה\" (תו כללי: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "איפוס" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "קח זאת" @@ -2884,7 +3206,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3181,20 +3503,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "חיבור נכשל: הגדרות לא תקינות." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "ברוך הבא אל %s" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3209,60 +3531,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "כניסה" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "שרת" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "שם משתמש:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "סיסמא:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "בחירת שרת" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "נכשל בכניסה לשרת MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "שם משתמש/סיסמה שגויים. הגישה נדחתה." @@ -3294,7 +3610,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "טבלאות" @@ -3306,13 +3622,13 @@ msgstr "טבלאות" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "נתונים" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "תקורה" @@ -3339,246 +3655,216 @@ msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." msgid "Check Privileges" msgstr "בדיקת הרשאות" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "אתה צריך לשדרג אל %s %s לפחות." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "מירבי: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "תיעוד" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "שאילתת SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL אמר: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "הסברת SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "ללא קוד PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "ייצור קוד PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "רענון" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 #, fuzzy msgid "Skip Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "מנועים" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "יום ראשון" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "הוספת שדה חדש" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "התחלה" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "הקודם" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "הבא" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "סיום" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "קפיצה אל מאגר נתונים "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format msgid "Select from the web server upload directory %s:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "הדפסה" @@ -3608,8 +3894,8 @@ msgid "Closed" msgstr "" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "מבוטל" @@ -3761,9 +4047,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "איפוס" @@ -3973,10 +4259,6 @@ msgstr "הצעת מבנה טבלה" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4035,7 +4317,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "שמירה כקובץ" @@ -4045,7 +4327,7 @@ msgid "Character set of the file" msgstr "חבילת הקידוד של הקובץ:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "תבנית" @@ -4162,7 +4444,7 @@ msgid "MIME type" msgstr "סוג MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "יחסים" @@ -5696,9 +5978,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "סיסמא" @@ -5972,30 +6254,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "יכול להיות הערכה. ראה FAQ 3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "שינוי סיסמא" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "ללא סיסמא" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "הקלדה נוספת" @@ -6020,13 +6296,13 @@ msgstr "יצירת מאגר נתונים חדש" msgid "Create" msgstr "יצירה" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "ללא הרשאות" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "יצירת עמוד חדש" @@ -6034,9 +6310,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "שם" @@ -6221,25 +6497,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "גרסת שרת" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "גרסת שרת" @@ -6350,405 +6626,239 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -msgid "Save edited data" -msgstr "תיקיית בית של נתונים" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "הוספת/מחיקת עמודות שדה" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "שבת" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "מספר שדות" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "יום שני" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "מאוזן" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "מאוזן (headers מסובבים)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "ניצב" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "הרצת שאילתה מועדפת" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "פעולות" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "טקסטים חלקיים" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "טקסטים מלאים" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "תצוגת יחסים" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -msgid "Relational display column" -msgstr "תצוגת יחסים" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -msgid "Hide browser transformation" -msgstr "שינויי צורה זמינים" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "השורה נמחקה" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "בשאילתה" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "מראה שורות" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "סה\"כ" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "שאילתה לקחה %01.4f שניות" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "תצוגת הדפסה (עם טקסטים מלאים)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Displaying Column Comments" -msgid "Display chart" -msgstr "מציג הערות עמודה" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "גרסת שרת" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "קישור לא נמצא" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "מידע גרסאות" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "תיקיית בית של נתונים" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "קבצי נתונים" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "מצב InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "דפים" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "דפים חופשיים" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "דפים מלוכלכים" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "דפים מכילים מידע" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "דפים לריקון" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "עמודים עסוקים" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 #, fuzzy msgid "Read requests" msgstr "בקשות כתיבה" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "בקשות כתיבה" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6756,48 +6866,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6805,20 +6915,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "יחסים" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6878,15 +6988,15 @@ msgstr "הוצאת מידע עבור טבלה" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "נשלח" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6958,14 +7068,14 @@ msgstr "סוגי MIME זמינים" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "מארח" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "זמן ייצור" @@ -7164,21 +7274,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." @@ -7273,12 +7374,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "שמות עמודה" @@ -7345,96 +7446,78 @@ msgstr "תואם MySQL 4.0" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "פונקציה" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "בינארי" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "בינארי - אין לערוך" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 #, fuzzy msgid "web server upload directory" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "הכנסה" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "ואז" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "הכנסה כשורה חדשה" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "חזרה לעמוד הקודם" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "הוספה נוספת של שורה חדשה" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "חזרה אחורה לעמוד זה" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "עריכת השורה הבאה" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "ערך" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7451,38 +7534,38 @@ msgstr "ללא" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "יום שישי" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "שליחה" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "הוספת שדה חדש" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "האם אתה באמת רוצה " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "ללא שינוי" @@ -7694,93 +7777,93 @@ msgstr "" msgid "This format has no options" msgstr "לתבנית זאת אין אפשרויות" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "לא בסדר" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "אישור" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "מופעל" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "תכונות קשר כלליות" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "הצגת תכונות" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "יצירה של קבצי PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "מציג הערות עמודה" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 #, fuzzy msgid "Browser transformation" msgstr "שינויי צורה זמינים" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "שאילתות SQL מועדפות" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "היסטוריית SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "ללא תיאור" @@ -7788,7 +7871,7 @@ msgstr "ללא תיאור" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7800,13 +7883,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "שם משתמש" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "סידור" @@ -7820,7 +7903,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "משתנה" @@ -7834,38 +7917,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "כל משתמש" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "השתמש בשדה טקסט" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "כל שרת מארח" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "מקומי" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "מארח זה" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7879,7 +7962,7 @@ msgstr "ייצור סיסמא" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7911,101 +7994,102 @@ msgstr "טבלה %s נמחקה" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "נשלח" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "תהליכים" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "סוג אירוע" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "סוג אירוע" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "שינוי" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "הרצת שאילתה מועדפת" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "מצב" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "סיום" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "השלם הכנסות" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8036,7 +8120,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -8056,119 +8140,119 @@ msgstr "טבלה %s נמחקה" msgid "Routine %1$s has been created." msgstr "טבלה %s נמחקה" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "שמות עמודה" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "יצירה" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "אורך/ערכים*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "הוספת שדה חדש" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "שינוי שם מאגר נתונים אל" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "אורך/ערכים*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "אפשרויות טבלה" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "סוג שאילתה" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, fuzzy, php-format msgid "Execution results of routine %s" msgstr "מאפשר יצירת שגרות מאוחסנות." -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8187,41 +8271,41 @@ msgstr "טבלה %s נמחקה" msgid "Trigger %1$s has been created." msgstr "טבלה %s נמחקה" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "הוספת משתמש חדש" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "שם משתמש" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "זמן" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8323,7 +8407,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8333,7 +8417,7 @@ msgstr "הטבלה \"%s\" לא קיימת!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8341,7 +8425,7 @@ msgid "Please configure the coordinates for table %s" msgstr "אנא הגדר נקודות ציון עבור טבלה %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8352,27 +8436,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "תוכן עניניים" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "תכונות" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "תוספת" @@ -8492,7 +8576,7 @@ msgstr "" msgid "Current Server" msgstr "שרת" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "חפש במסד הנתונים" @@ -8511,7 +8595,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "חפש במסד הנתונים" @@ -8531,7 +8615,7 @@ msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s" msgid "Run SQL query/queries on database %s" msgstr "הרצת את שאילתה/שאילתות על מסד הנתונים %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" @@ -8543,11 +8627,11 @@ msgstr "לוח שנה" msgid "Columns" msgstr "שמות עמודה" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" @@ -8629,7 +8713,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8661,8 +8745,8 @@ msgstr "" "בתבנית הזאת : a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "אינדקס" @@ -8716,13 +8800,13 @@ msgstr "ללא" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "ראשי" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Fulltext" @@ -8736,20 +8820,20 @@ msgstr "" msgid "after %s" msgstr "לאחר %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "הוספת %s תאים" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "אתה חייב להוסיף לפחות שדה אחד." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "מנוע אחסון" @@ -8757,46 +8841,6 @@ msgstr "מנוע אחסון" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "חיפוש" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "בחירת שדות (לפחות אחד):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "הוספת תנאי חיפוש (הגוף של תנאי \"where\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "מספר של שורות לכל דף" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "סדר תצוגה:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "ביצוע \"שאילתה לדוגמה\" (תו כללי: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8906,13 +8950,13 @@ msgstr "" msgid "Manage your settings" msgstr "תכונות קשר כלליות" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "שינויים נשמרו" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8923,7 +8967,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8954,7 +8998,7 @@ msgstr "קידוד חיבור MySQL" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -8980,9 +9024,9 @@ msgstr "גרסת שרת" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "משתמש" @@ -9108,147 +9152,147 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "אין מאגרי נתונים" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "שינוי סדר הטבלה לפי" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "שינוי סדר הטבלה לפי" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "יצירת עמוד חדש" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "אנא בחר מאגר נתונים" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Traditional Chinese" msgid "Toggle relation lines" msgstr "סינית מסורתית" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "שליחת שאילתה" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "ראיית הכל" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 #, fuzzy msgid "Number of tables" msgstr "מספר שדות" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "תצוגת יחסים" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "ייצוא" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "בשאילתה" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "שינוי שם טבלה אל" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "שם משתמש" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "יצירה" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9263,62 +9307,62 @@ msgstr "טבלה %s נמחקה" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "דפים" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "קבצי ייבוא" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "לא נבחרו שורות" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "יצירת אינדקס חדש" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "שם משתמש" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 #, fuzzy msgid "Internal relation added" msgstr "יחסים פנימיים" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 #, fuzzy msgid "Relation deleted" msgstr "תצוגת יחסים" @@ -9331,89 +9375,89 @@ msgstr "" msgid "Modifications have been saved" msgstr "שינויים נשמרו" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "קבצי ייבוא" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "קבצי ייבוא" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "הכל" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "טבלה %s לא נמצאה או לא קיימת בתוך %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9423,18 +9467,18 @@ msgstr "הטבלה \"%s\" לא קיימת!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "שדות" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "הראה שאילתות שלמות" @@ -9450,7 +9494,7 @@ msgstr "מיקום" msgid "Original position" msgstr "מיקום מקורי" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "מידע" @@ -9458,7 +9502,7 @@ msgstr "מידע" msgid "Character Sets and Collations" msgstr "חבילות קידוד" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9466,24 +9510,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s מסדי נתונים נמחקו בהצלחה." msgstr[1] "%s מסדי נתונים נמחקו בהצלחה." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "סטטיסטיקת מסד הנתונים" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "הפעלת סטטיסטיקה" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9495,390 +9539,390 @@ msgstr "" msgid "Storage Engines" msgstr "מנועי אחסון" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "ראיית הוצאה (תבנית) של מאגרי נתונים" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "התחלה" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "Persian" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "מבוטל" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "כלול כל ההרשאות חוץ מ- GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "מאפשר שינוי של מבני הטבלאות הקיימות." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 #, fuzzy msgid "Allows creating new databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "מאפשר יצירת טבלאות חדשות." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "מאפשר יצירת טבלאות זמניות." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 #, fuzzy msgid "Allows creating new views." msgstr "מאפשר יצירת טבלאות חדשות." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "מאפשר מחיקת מידע." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "מאפשר מחיקת טבלאות." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 #, fuzzy msgid "Allows executing stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 #, fuzzy msgid "Allows reading data." msgstr "מאפשר מחיקת מידע." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 #, fuzzy msgid "Allows changing data." msgstr "מאפשר מחיקת מידע." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "ללא הרשאות." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "ללא" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "הרשאות ספציפיות-לטבלאות" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "הערה: שמות הרשאות MySQL מובטאות באנגלית" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "ניהול" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "הרשאות גלובליות" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "הרשאות ספציפיות למאגר נתונים" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "גבולות משאבים" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "הערה: הגדרת אפשרויות אלו אל 0 (אפס) יבטלו את ההגבלה." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "מידע כניסה" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "אל תשנה את הסיסמא" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "לא נמצאו משתמשים." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "משתמש חדש נוסף." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "אתה עדכנת הרשאות עבור %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "אתה שללת הרשאות עבור %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "הסיסמא עבור %s שונתה בהצלחה." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "מוחק %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "טוען מחדש הרשאות" -#: server_privileges.php:1504 +#: server_privileges.php:1505 #, fuzzy msgid "The selected users have been deleted successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "עריכת הרשאות" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "שלילה" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "ייצוא" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "כל דבר" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "הרשאות" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "הרשאות" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "סקירת משתמשים" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "הענקה" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "הסרת משתמשים שנבחרו" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9890,140 +9934,140 @@ msgstr "" "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "הרשאות ספציפיות-לעמודה" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "הוספת הרשאות למאגר הנתונים הבא" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "תווים כללים _ וגם % צריכים לבוא ביחד עם \\ על מנת להשתמש בהם באמת" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "הוספת הראשאות לטבלה הבאה" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "שינוי מידע כניסה / העתקת משתמש" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... שמירת הישן." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... מחיקת הישן מטבלאות המשתמשים." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן." -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "עולמי" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "ספציפי למאגר הנתונים" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "תו כללי" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy msgid "User has been added." msgstr "שדה %s נמחק" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "ההרשאות נטענו מחדש בהצלחה." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10032,271 +10076,271 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "אנא בחר מאגר נתונים" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "מבנה בלבד" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "מבנה בלבד" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin נכשל בחיסול בהליך %s. רוב הסיכויים שהוא כבר נסגר." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 #, fuzzy msgid "Query cache" msgstr "סוג שאילתה" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 #, fuzzy msgid "Delayed inserts" msgstr "השתמש בהכנסות מעוכבות" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 #, fuzzy msgid "Show open tables" msgstr "ראיית טבלאות" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "מידע זמן ריצה" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "רענון" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "אל תשנה את הסיסמא" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy msgid "Show only alert values" msgstr "ראיית טבלאות" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy msgid "Show unformatted values" msgstr "ראיית טבלאות" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "יחסים" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "סוג שאילתה" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "פונקציה" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10304,116 +10348,116 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "משפטים" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "התקבל" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "נשלח" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "ניסיונות כושלים" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "בוטל" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "קוד זיהוי" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "פקודה" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10421,78 +10465,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10500,7 +10544,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10508,42 +10552,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10551,33 +10595,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10586,243 +10630,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "חבילת הקידוד של הקובץ:" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10830,99 +10874,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10930,18 +10974,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10949,69 +10993,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "סוג שאילתה" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "שבת" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "הוספת שדה חדש" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "רענון" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "הוספת/מחיקת עמודות שדה" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 +11064,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 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 +11072,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 +11091,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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,90 +11103,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "שינוי שם מאגר נתונים אל" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "בחירת טבלאות" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "הוספת משתמש חדש" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "שאילתת SQL" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "סטטיסטיקת שורה" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "בחירת הכל" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "סוג שאילתה" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11150,7 +11194,7 @@ msgid_plural "%d seconds" msgstr[0] "לשנייה" msgstr[1] "לשנייה" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11158,131 +11202,131 @@ msgid_plural "%d minutes" msgstr[0] "בשימוש" msgstr[1] "בשימוש" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "שאילתת SQL" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "חיבורים" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "משתני והגדרות שרת" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "ערך זמן חיבור (Session)" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "ערך גלובלי" @@ -11574,179 +11618,179 @@ msgstr "" msgid "Wrong data" msgstr "אין מאגרי נתונים" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "האם אתה באמת רוצה " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "בדיקת תקינות SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "תוצאת SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "נוצר ע\"י" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "בעיות עם אינדקסים של טבלה `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "תווית" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy msgid "The columns have been moved successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "מרץ" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "שמות עמודה" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "מנועים" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "קבצי ייבוא" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "שאילתת SQL" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "ערך" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "ערך" -#: tbl_create.php:31 +#: tbl_create.php:30 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "שם המשתמש %s כבר קיים!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "טבלה %s נמחקה" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "ראיית הוצאה (תבנית) של טבלה" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "הוספת/מחיקת עמודות שדה" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "סה\"כ" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "שמירה כקובץ" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -11764,32 +11808,32 @@ msgstr "לא ניתן לשנות שם אינדקס אל PRIMARY!" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "הוספת שדה חדש" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Add new field" msgid "Edit index" msgstr "הוספת שדה חדש" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "שם אינדקס:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "סוג אינדקס:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "הוספה לאינדקס  %s שורה/שורות" @@ -11813,280 +11857,280 @@ msgstr "הטבלה %s הועברה ל- %s." msgid "Table %s has been copied to %s." msgstr "טבלה %s הועתקה אל %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "שם הטבלה ריק!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "שינוי סדר הטבלה לפי" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(singly)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "העברת טבלה אל (מסד נתונים.טבלה):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "אפשרויות טבלה" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "שינוי שם טבלה אל" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "העתקת טבלה אל (מסד נתונים.טבלה):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "מעבר לטבלה שהועתקה" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "אחזקת טבלה" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "איחוי טבלה" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "טבלה %s אופסה" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "ריקון טבלה (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "הוצאת מידע עבור טבלה" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "אין מאגרי נתונים" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "אחזקת טבלה" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 #, fuzzy msgid "Check" msgstr "צ'יכית" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "תיקון טבלה" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "ראיית טבלאות" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "שימוש מקום" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "יעיל" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "סטטיסטיקת שורה" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "דינאמי" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "אורך שורה" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "גודל שורה" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "יחסים פנימיים" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "עיין בערכים נפרדים" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add new field" msgid "Add SPATIAL index" msgstr "הוספת שדה חדש" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "ללא" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "טבלה %s נמחקה" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "מפתח ראשי נוסף אל %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "אינדקס נוסף אל %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "ראיית מידע PHP" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "הוספת %s תאים" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "תצוגת הדפסה" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "תצוגת יחסים" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "הצעת מבנה טבלה" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "הוספת %s תאים" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "בסוף טבלה" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "בתחילת טבלה" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "לאחר %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "יצירת אינדקס על %s  עמודות" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12240,72 +12284,39 @@ msgstr "" msgid "Create version" msgstr "גרסת שרת" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "ביצוע \"שאילתה לדוגמה\" (תו כללי: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "שאילתת SQL" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "איפוס" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "השג סגנונות נוספים." -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "סוגי MIME זמינים" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "שינויי צורה זמינים" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "תיאור" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "אין לך הרשאות מספיקות להיות כאן כרגע!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "הפרופיל עודכן בהצלחה." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/hi.po b/po/hi.po index 9659459417..c3dcecadb5 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-03-27 16:58+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: hindi \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 0.8\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "सभी दिखाएँ" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "पृष्ठ संख्या:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,58 +37,58 @@ msgstr "" "लक्ष्य ब्राउज़र विंडो को अद्यतन नहीं किया जा सकता है. शायद आपने मूल विंडो बंद कर दिया है," "या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन के लिए कांफिगुर कर रखा है." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "जाएँ" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "मुख्यनाम" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "वर्णन" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "इस मान का उपयोग करें" @@ -106,88 +106,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s डेटाबेस बनाया गया है." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "डाटाबेस टिप्पणि: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "टेबल टिप्पणि:" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "स्तम्भ" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "शून्य" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "तयशुदा" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "के लिए लिंक" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "टिप्पणी" @@ -196,14 +197,14 @@ msgstr "टिप्पणी" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "नहीं" @@ -216,122 +217,122 @@ msgstr "नहीं" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "हाँ " -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "डेटाबेस का डंप (स्कीमा) नजारा" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "डाटाबेस में कोई टेबल नहीं।" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "सभी का चयन करें" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "सभी को रद्द करें" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "डेटाबेस का नाम खाली है" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "डेटाबेस %s का नाम बदल कर %s रखा गया है" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "डेटाबेस %s से %s में नकल किया गया है" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "डेटाबेस का नाम इसमें पुनर्नामकरण करें" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "डेटाबेस को हटा दे" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "डाटाबेस %s को ड्रोप कर दिया गया है।" -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "डेटाबेस को ड्रप करे " -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "डेटाबेस को ______ में कॉपी करें" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "केवल संरचना" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "संरचना और डाटा" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "केवल डाटा" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "डेटाबेस कॉपी करने से पहले डेटाबेस का निर्माण करें" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "%s जोडें" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "शर्तें जोडें" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "नक़ल किये गए डाटाबेस पर जायें" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "क्रम में करें" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -340,59 +341,59 @@ msgstr "" "phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए " "%sयहाँ%s पर क्लिक करें." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "संबंधपरक स्कीमा को संपादित या निर्यात करें " -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "टेबल " -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "रो" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "आकार" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "उपयोग में है" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "रचना" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "पिछला नवीनीकरण" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "पिछली जाँच" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -403,118 +404,118 @@ msgstr[1] " %s टेबल" msgid "You have to choose at least one column to display" msgstr "आपको कम से कम एक स्तंभ प्रदर्शित करने के लिए चयन करना है." -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" msgstr "दृश्य निर्माता" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "सॉर्ट" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "आरोही" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "अवरोही" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "दिखाओ" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "मापदंड" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "घुसाएं" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "और" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "हटाइए" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "अथवा" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "संशोधन" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "मापदंड रो जोडें/हटायें" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "कोलम जोडें/हटायें" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "क्वरी का नवीनीकरण करें" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "टेबल का उपयोग करो" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "डेटाबेस %s पर SQL क्वरी:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "क्वरी भेजें" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "पहुँच निषेधित" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "कोई भी एक शब्द" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "सभी शब्द" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "यथार्थ वाक्यांश" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "नियमित अभिव्यक्ति के रूप में" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "%s %s के लिये परिणाम खोजें:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -523,278 +524,279 @@ msgid_plural "%1$s matches inside table %2$s" msgstr[0] "%s टेबल के अंदर %s मैच हैं." msgstr[1] "%s टेबल के अंदर %s मैच हैं." -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "इस %s टेबल से मैच हटाएँ" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "कुल: %s मैच" msgstr[1] "कुल: %s मैच" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "डाटाबेस में खोजें" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "शब्द अथवा वेल्यु जिसे सर्च करना है (wildcard: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "खोजो:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "शब्द स्पेस(\" \") करक्टेर से अलग किये गए हैं." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "टेबल में:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "काँलम के अंदर:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "डाटाबेस में कोई टेबल नहीं।" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "अज्ञात" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "टेबल %s को खाली किया गया है." -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "द्रश्य %s रद्द किया गया है." -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "टेबल %s को रद्द किया गया है." -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "ट्रैकिंग सक्रिय है" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "ट्रैकिंग सक्रिय नहीं है." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दस्तावेज़%s पढ़ें." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "प्रतिकृति" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "जोड" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s इस MySQL सर्वर पर तयशुदा भंडारण इंजन है." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "चुने हुओं को:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "सभी को चेक करें" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "ओवर्हेअद वाली तालुकाओं को चेक करें." -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "निर्यात" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "छपाई द्रश्य." -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "खाली" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "रद्द" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "टेबल को चेक करें" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "टेबल को अनुकूलित करें" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "टेबल को मरम्मत करें" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "टेबल का विश्लेषण करें" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "टेबल पर उपसर्ग जोड़ें" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "टेबल के उपसर्ग को पुनर्स्थापना करें" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "टेबल को इस उपसर्ग के साथ प्रतिलिपि बनाएँ" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "डेटा शब्दकोश" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "ट्रैक की गयी टेबलएं" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "डाटाबेस" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "पिछला संस्करण" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "बनाया" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "अद्यतन" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "स्थिति" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "कार्य" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "इस टेबल के लिए ट्रैकिंग डेटा हटाएँ" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "सक्रिय" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "निष्क्रिय" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "संस्करण" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "ट्रैकिंग रिपोर्ट" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "संरचना क्षणचित्र" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "लापता टेबलएं" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "टेबलओं को ट्रैक करें" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "डेटाबेस का रोजनामचा" @@ -808,30 +810,30 @@ msgstr "पट्टी प्रकार" msgid "Selected export type has to be saved in file!" msgstr "चयनित निर्यात प्रकार को फाइल में संचित करने की आवश्यकता है!" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Add index" msgid "Bad parameters!" msgstr "अनुक्रमणिका जोड़" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s फाइल को सेव करने के लिए अपर्याप्त जगह पायी गयी है." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "%s फाइल पहले से ही सर्वर पर मौजूद है, फ़ाइल नाम परिवर्तन अधिलेखित या विकल्प की जाँच करें." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "वेब सर्वर के पास फ़ाइल %s को सेव करने की अनुमति नहीं है." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "डंप को %s फाइल में सेव किया गया है." @@ -842,105 +844,105 @@ msgstr "डंप को %s फाइल में सेव किया गय msgid "Invalid export type" msgstr "निर्यात प्रकार" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Value for the column \"%s\"" msgstr "\"%s\" काँलम के लिए मान " -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add index" msgid "Add a point" msgstr "अनुक्रमणिका जोड़" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "लाईन समाप्त होता है" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "नया यूसर जोडें" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "नया यूसर जोडें" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add column" msgid "Add a polygon" msgstr "नया काँलम जोडें" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add a new server" msgid "Add geometry" msgstr "एक नया सर्वर जोडें" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "उत्पादन" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -949,21 +951,21 @@ msgstr "" "आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s " "दोकुमेंताशन%s पढ़ें." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "बुकमार्क प्रदर्शित किया जा रहा है." -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "यह बुकमार्क हटा दिया गया है" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "फाइल पढ़ी नहीं जा सकती. " -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -972,7 +974,7 @@ msgstr "" "आप असमर्थित सम्पीडन (%s) के साथ फाइल लोड करने का प्रयास कर रहे हैं. इसके लिए या तो " "समर्थन कार्यान्वित नहीं है या आपने विन्यास को अक्षम कर रखा है." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -982,33 +984,33 @@ msgstr "" "गया या फ़ाइल का आकार अधिकतम PHP विन्यास द्वारा अनुमति आकार के पार हो गई है. [a@./" "Documentation.html#faq1_16@Documentation] अकसर किये गए सवाल 1.16 [/ a] देखें." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "आयात प्लगइन्स नहीं लोड किये जा सके. कृपया अपनी संस्थापना जाँचें." -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "बुकमार्क %s बनाया" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "आयात सफलतापूर्वक समाप्त हो गया है,%d कुएरी चलाई गयी हैं." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" "स्क्रिप्ट मध्यांतर पारित की गयी है, आयात खत्म करने के लिए वही फाइल फिर से जमा करें." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1016,23 +1018,23 @@ msgstr "" "पिछले भाग पर कोई डेटा विश्लेषित नहीं किया गया, इसका मतलब है की जब तक आप php समय " "सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "वापस" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin तख़्त-सक्षम ब्रोव्सेर के लिए ज्यादा दोस्ताना है." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" बयान अक्षम हैं." @@ -1042,7 +1044,7 @@ msgstr "\"DROP DATABASE\" बयान अक्षम हैं." msgid "Do you really want to execute \"%s\"?" msgstr "क्या आप सचमुच चाहते है की" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! " @@ -1088,7 +1090,7 @@ msgstr "अनुक्रमणिका जोड़" msgid "Edit Index" msgstr "संपादन मोड" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -1107,16 +1109,16 @@ msgstr "मेज़बान का नाम (hostname) खाली है!" msgid "The user name is empty!" msgstr "यूसर नाम खाली है!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "पासवर्ड खाली है" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "पासवर्ड मिलते झूलते नहीं हैं." -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "naya upyokta" @@ -1133,25 +1135,26 @@ msgstr "चयनित यूसर को हटायें" msgid "Close" msgstr "बंद" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "सम्पादन" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "सर्वर चुनिये" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy #| msgid "Show query chart" msgid "Live query chart" @@ -1163,24 +1166,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "कुल" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1202,7 +1205,7 @@ msgstr "सर्वर चुनिये" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "प्रक्रियां" @@ -1222,7 +1225,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "डाटाबेसों के सांख्यिकी" @@ -1271,14 +1274,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1340,32 +1343,32 @@ msgstr "" msgid "Bytes received" msgstr "प्राप्त" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "कनेक्शन" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "बैट्स" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1383,11 +1386,11 @@ msgstr " %s टेबलें" msgid "Questions" msgstr "संस्करण" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "ट्रैफ़िक" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1413,11 +1416,11 @@ msgstr "ग्रिड पर स्नैप" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "कोई नहीं" @@ -1517,7 +1520,7 @@ msgstr "सेटिंग्स प्रबंधक" msgid "Current settings" msgstr "अधिक सेटिंग्स" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Default title" msgid "Chart Title" @@ -1611,7 +1614,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "समय" @@ -1721,10 +1724,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "आयात" @@ -1784,9 +1787,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "रद्द" @@ -1798,11 +1801,11 @@ msgstr "लोड हो रहा है" msgid "Processing Request" msgstr "याचिका प्रसंस्करण" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "याचिका प्रसंस्करणमें त्रुटि" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "कोइ डाटाबेस नहीं चुना गया है।" @@ -1814,9 +1817,9 @@ msgstr "काँलम गिराना" msgid "Adding Primary Key" msgstr "प्राथमिक कुंजी जोड़" -#: 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 +#: 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 msgid "OK" msgstr "ठीक है" @@ -1862,19 +1865,19 @@ msgstr "अनुक्रमणिका जोड़" msgid "Show indexes" msgstr "ग्रिड दिखाओ" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "निष्क्रिय विदेशी कुंजी चेक" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "सक्षम" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1912,7 +1915,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1957,8 +1960,8 @@ msgstr "क्वेरी बॉक्स दिखाएँ" msgid "No rows selected" msgstr "कोई चयनित रो नहीं" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "बदलिये" @@ -1968,18 +1971,18 @@ msgstr "बदलिये" msgid "Query execution time" msgstr "अधिकतम निष्पादन समय" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "%d वैध रो संख्या नहीं है" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "बचाना" @@ -1991,7 +1994,7 @@ msgstr "खोज मापदंड छिपाना" msgid "Show search criteria" msgstr "खोज मापदंड दिखाना" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2043,12 +2046,12 @@ msgstr "SQLपरिणाम" msgid "Data point content" msgstr "सूचक का आकार डेटा" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "ध्यान न देना" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "अनुकृति" @@ -2070,7 +2073,7 @@ msgstr "विदेश कुंजी का चयन करें." msgid "Please select the primary key or a unique key" msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "प्रदर्शित करने के लिए काँलम चयन करें." @@ -2161,7 +2164,7 @@ msgstr "उत्पन्न" msgid "Change Password" msgstr "पासवर्ड बदलिये " -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "अधिक" @@ -2257,63 +2260,63 @@ msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "दिसमबर" @@ -2354,32 +2357,32 @@ msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "मन्गलवार" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "शनिवार" @@ -2495,16 +2498,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "प्रति सेकंड" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "प्रति मिनट" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "प्रति घंटे" @@ -2525,45 +2528,251 @@ msgstr "" msgid "Font size" msgstr "फ़ॉन्ट का आकार" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +#| msgid "Save directory" +msgid "Save edited data" +msgstr "निर्देशिका बचाना" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Textarea columns" +msgid "Restore column order" +msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "प्रारंभ" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "पिछला" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "अगला" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "आखरी" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Textarea rows" +msgid "Start row" +msgstr "क्षेत्र रोयाँ" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows:" +msgid "Number of rows" +msgstr "रो की संख्या" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "More" +msgid "Mode" +msgstr "अधिक" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "समतल" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "खडा" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "कुंजी सॉर्ट" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "विकल्प" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "आंशिक पाठ" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "पूर्ण पाठ" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "कुंजी संबंधपरक" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "संबंधपरक प्रदर्शन स्तंभ" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "द्विआधारी सामग्री दिखाने" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "BLOB सामग्री दिखाने" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "द्विआधारी सामग्री को हेक्स सामग्री की तरह प्रदशित करें" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "सामग्री दिखाने" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "रौ को डिलीट कर दिया" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"शायद अनुमानित हैं. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a] देखें" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "रौ देखिये" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "कुल" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "क्वरी को %01.4f सेकेंड का समय लगा" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display Features" +msgid "Display chart" +msgstr "फीचरस दिखाओ" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "दृश्य बनाइये" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "लिंक नहीं मिला" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "अपलोड की गई फ़ाइल, HTML के रूप में निर्दिष्ट MAX_FILE_SIZE की सीमा से अधिक है." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "एक अस्थायी फ़ोल्डर गुम है." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "डिस्क में फ़ाइल लिखने में असफल" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2571,26 +2780,41 @@ msgstr "" "अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [a@. \"Documentation.html # " "faq1_1 @ प्रलेखन] अकसर किये गए सवाल 1,11 [/ a] देखें." -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "phpMyAdmin की नई विंडो खोलें" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "सूचकांक" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "अद्वितीय" @@ -2603,8 +2827,8 @@ msgstr "जमा" msgid "Cardinality" msgstr "प्रमुखता" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "टिप्पणी" @@ -2625,130 +2849,130 @@ msgid "" "removed." msgstr "सूचकांक %1$s और %2$s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "डाटाबेस" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "सर्वर" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "संरचना" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "इनसर्ट" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "कार्रवाई" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "नज़र रखना" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "टेबल खली लग रही है" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "डाटाबेस खाली लग रहा है" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "क्वरी" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "प्रिविलेज" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "नियमित कार्य" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "डिजाइनर" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "यूसर" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "सिंक्रनाइज़" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "बाइनरी लोग" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "प्रक्रियां" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "चरित्र सेट" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "इंजन" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "त्रुटि" @@ -2773,7 +2997,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "एकवचन%1$d रोव डाला" msgstr[1] "बहुवचन%1$d रोवस डाला" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2873,16 +3097,108 @@ 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 +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 +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 +msgid "Value" +msgstr "मूल्य" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "ढूंढें" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "इनसर्ट" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "काँलम चुनें (कम से कम एक)" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "खोज शर्तें जोडें (\"where\" खंड के शरीर में)" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "प्रति पृष्ट कितने रौ" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "क्रम से दिखाओ:" + +#: libraries/TableSearch.class.php:813 +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 "प्रदर्शित रो की अधिकतम संख्या" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "विदेशी मूल्य ब्राउस करें " + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Additional search criteria" +msgstr "खोज मापदंड छिपाना" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +#| msgid "Control user" +msgid "How to use" +msgstr "नियंत्रण यूसर" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "रीसेट" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "विषय %s के लिए कोई वैध छवि पथ नहीं पाया है!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "पूर्वावलोकन उपलब्ध नहीं." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "इसे ले लो" @@ -2901,7 +3217,7 @@ msgstr "विषयवस्तु %s नहीं मिला है!" msgid "Theme path not found for theme %s!" msgstr "विषय %s के लिए थीम पथ नहीं मिला है!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3200,13 +3516,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "अमान्य सेटिंग्स: कनेक्ट नहीं कर सकते हैं" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%s मे स्वागत है" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3215,7 +3531,7 @@ msgstr "" "आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script" "%2$s का उपयोग करें." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3230,60 +3546,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "लोगिन" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "आप होस्टनाम / आईपी पता और पोर्ट स्पचे से अलग कर के दाल सकते हैं." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "सर्वर:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "उपयोक्तानाम:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "पासव्रड:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "सर्वर चुनिये" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "पासवर्ड के बिना लॉग इन विन्यास से मना किया गया है (AllowNoPassword देखें)." -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s सेकंड के भीतर कोई गतिविधि नहीं है. कृपया फिर से लोगिन करें." -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL सर्वर में प्रवेश नहीं कर सकते" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "यूसरनेम/पासवर्ड गलत है। प्रवेश निषेध" @@ -3317,7 +3627,7 @@ msgstr "साझा" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "टेबल" @@ -3329,13 +3639,13 @@ msgstr "टेबल" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "डाटा" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "जरूरत से ज्यादा" @@ -3360,32 +3670,24 @@ msgstr "डाटाबेस के प्रिविलेज चेक क msgid "Check Privileges" msgstr "प्रिविलेज चेक करें" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Could not save configuration" msgid "Failed to read configuration file" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "%1$s से मूलभूत विन्यास लोड नहीं की जा सकी |" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3396,216 +3698,194 @@ msgid "" msgstr "" "$cfg['PmaAbsoluteUri'] निर्देश आपकी विन्यास फाइल मैं सेट होना आवश्यक है" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "अवैध सर्वर सूचकांक: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s सर्वर के लिए होस्टनाम अवैध कृपया अपना विन्यास की समीक्षा करें" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "विन्यास में अवैध प्रमाणीकरण विधि स्थापित" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "अधिकतम: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "डोक्युमेंटेशन" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL क्वरी" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL ने कहा: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "SQL वलिदटर से जुड़ने में विफल" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL की व्याख्या " -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "SQL की व्याख्या को छोड़ जाना" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "php कोड के बिना" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP Code बनाओ" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "ताज़ा करना" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL की पुष्टि को छोड़ जाना" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL की पुष्टि करना" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "इस कुएरी की इनलाइन एडिट" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "इनलाइन" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "रूपरेखा" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "रविवार" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y को %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "नियमित कार्य" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "प्रारंभ" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "पिछला" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "अगला" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "आखरी" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr ""%s" डेटाबेस पर जायें " -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s कार्यक्षमताएक एक बग के द्वारा जनि जाती है| %s पर ध्यान दे " -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "चयन करने के लिए क्लिक करें." -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "अपने कंप्यूटर ब्राउज़ करें" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "अपने वेब सर्वर डिरेक्टरी से अपलोड चुने %s; " -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "छापें" @@ -3637,8 +3917,8 @@ msgid "Closed" msgstr "बंद" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "अक्षम" @@ -3779,9 +4059,9 @@ msgstr "मूलभूत मान को बहाल" msgid "Allow users to customize this value" msgstr "कर्ता को इस मूल्य को अनुकूलित करने की अनुमति दें " -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "रीसेट" @@ -3998,10 +4278,6 @@ msgstr "टेबल संरचना का प्रस्ताव" msgid "Show binary contents as HEX by default" msgstr "डिफ़ॉल्ट रूप से द्विआधारी सामग्री को हेक्स सामग्री की तरह प्रदशित करें" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "द्विआधारी सामग्री को हेक्स सामग्री की तरह प्रदशित करें" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "डेटाबेस लिस्टिंग को ड्रॉपडाउन के बजाय सूची की तरह देखियें" @@ -4056,7 +4332,7 @@ msgstr "एक स्क्रिप्ट को चलाने की अव msgid "Maximum execution time" msgstr "अधिकतम निष्पादन समय" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "फाईल मे सेव करें" @@ -4065,7 +4341,7 @@ msgid "Character set of the file" msgstr "फ़ाइल का चरित्र सेट" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "प्रारूप" @@ -4169,7 +4445,7 @@ msgid "MIME type" msgstr "MIME प्रकार" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "संबंध" @@ -5702,9 +5978,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "पासवर्ड" @@ -5976,31 +6252,24 @@ msgstr "" msgid "Details..." msgstr "विवरण..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"शायद अनुमानित हैं. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a] देखें" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "पासव्रड बदलिये" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "पासवर्ड नहीं है" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "फिर से लिखें" @@ -6023,22 +6292,22 @@ msgstr "नया डाटाबेस बनाओ" msgid "Create" msgstr "बनाइये" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "कोइ प्रिविलेज नहीं" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "नाम" @@ -6189,26 +6458,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "एन्कोडिंग रूपांतरण" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "%s संस्करण बनायें %s.%s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -6320,397 +6589,238 @@ msgstr "प्रारूप निर्दिष्ट विकल्पो msgid "Language" msgstr "भाषा" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -#| msgid "Save directory" -msgid "Save edited data" -msgstr "निर्देशिका बचाना" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Textarea columns" -msgid "Restore column order" -msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Textarea rows" -msgid "Start row" -msgstr "क्षेत्र रोयाँ" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of rows" -msgstr "रो की संख्या" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "More" -msgid "Mode" -msgstr "अधिक" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "समतल" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "खडा" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "कुंजी सॉर्ट" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "विकल्प" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "आंशिक पाठ" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "पूर्ण पाठ" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "कुंजी संबंधपरक" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "संबंधपरक प्रदर्शन स्तंभ" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "द्विआधारी सामग्री दिखाने" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "BLOB सामग्री दिखाने" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "सामग्री दिखाने" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "रौ को डिलीट कर दिया" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "रौ देखिये" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "कुल" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "क्वरी को %01.4f सेकेंड का समय लगा" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display Features" -msgid "Display chart" -msgstr "फीचरस दिखाओ" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "दृश्य बनाइये" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "लिंक नहीं मिला" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "संस्करण जानकारी" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "डेटा घर निर्देशिका" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "सभी InnoDB फ़ाइलों के लिए निर्देशिका का सामान्य हिस्सा" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "डेटा फ़ाइलें" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "वृद्धि का स्वचालित रूप से विस्तार" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "बफर पूल आकार" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "बफर पूल" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "बफर पूल उपयोग" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "पृष्ठों" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "मुक्त पृष्ठों" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "गंदे पृष्ठों" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "पृष्ठ डेटा युक्त" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "पृष्ठ प्लावित हो" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "व्यस्त पृष्ठ" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "बफर पूल गतिविधि" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "पढने का अनुरोध" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "लिखने का अनुरोध" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "गलतियाँ पढ़ें" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "% में गलतियाँ पढ़ें" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "सूचक का आकार डेटा" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "स्वचालित वसूली मोड" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "अस्थायी सोर्ट फ़ाइलों के लिए अधिकतम आकार" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "सूचकांक सृजन पर अस्थायी फ़ाइलों का अधिकतम आकार" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "मरम्मत धागे" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "बफर आकार सोर्ट करें" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "सूचकांक कैश आकार" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "रिकॉर्ड कैश आकार" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "कैश आकार लॉग" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "लेन - देन बफर आकार" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6718,48 +6828,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6767,20 +6877,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Replication" msgid "Related Links" msgstr "पसंबंधित लिंक" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6835,14 +6945,14 @@ msgstr "" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "घटना" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6908,14 +7018,14 @@ msgstr "फीचरस दिखाओ" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "होस्ट" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "समय पर बनाया" @@ -7114,23 +7224,14 @@ msgstr "दृश्य" msgid "Export contents" msgstr "निर्यात सामग्री" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "phpMyAdmin की नई विंडो खोलें" - #: libraries/gis_visualization.lib.php:135 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." msgstr "चार्ट के लिए कोई डेटा नहीं मिला" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ने एक खाली परिणाम सेट लोताया" @@ -7233,12 +7334,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "टेबल का नाम" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "कोलम के नाम" @@ -7306,93 +7407,75 @@ msgstr "SQL संगतता मोड" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "छिपाना" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "बइनरी" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "बइनरी - एडिट मत करिये" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "वेब सर्वर अपलोड निर्देशिका" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "इनसर्ट" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "और फिर" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "इसको नया रौ में जोडे " -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "पिछले पृष्ट पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "एक और नई रो इनसर्ट करें" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "इस पृष्ठ पर वापस जाएँ" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "अगली रो को संपादित करें" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "मूल्य" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "SQL क्वेरी शो" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "इनसर्ट रो id: %1$d" @@ -7409,38 +7492,38 @@ msgstr "कोई एन्कोडिंग नहीं" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fr" msgid "From" msgstr "शुक्रवार" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "सबमिट" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add index" msgid "Add prefix" msgstr "अनुक्रमणिका जोड़" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "क्या आप सचमुच चाहते है की" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "कोइ बदलाव नहीं" @@ -7650,94 +7733,94 @@ msgstr "नेविगेशन फ्रेम पुनः लोड" msgid "This format has no options" msgstr "इस प्रारूप के कोई विकल्प नहीं है" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "ठीक नहीं है" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "ठीक है" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "सक्षम" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "सामान्य सुविधाओं के संबंध" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "फीचरस दिखाओ" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDFs का निर्माण" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "काँलम सामग्री प्रदर्शित" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "सामग्री दिखाने" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "बुकमार्क किया हुआ SQL-क्वरी" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL- इतिहास" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "के लिए" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "प्रयोक्ता वरीयताएँ" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "सेटअप करने के लिए त्वरित कदम उन्नत सुविधाओं" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "कोई विवरण नहीं" @@ -7745,7 +7828,7 @@ msgstr "कोई विवरण नहीं" msgid "Slave configuration" msgstr "दास विन्यास" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "मास्टर सर्वर को बदलें या रेकांफिगुरे करें" @@ -7757,13 +7840,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "यूसर नेम" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7776,7 +7859,7 @@ msgid "Slave status" msgstr "स्लाव की स्थिति" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "स्थिति" @@ -7790,38 +7873,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "कोई भी यूसर" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "कोई भी होस्ट" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "इस होस्ट" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "होस्ट टेबल का उपयोग करें" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7835,7 +7918,7 @@ msgstr "पासवर्ड उत्पन्न" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7869,103 +7952,104 @@ msgstr "%1$s टेबल बना दिया गया है" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Edit server" msgid "Edit event" msgstr "सर्वर को संपादित करें" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "याचिका प्रसंस्करणमें त्रुटि" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." msgid "Details" msgstr "विवरण..." -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "इवेंट प्रकार " -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "इवेंट प्रकार " -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "बदलिये" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "स्टार्टअप" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "आखरी" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "पूरा इनसर्टस" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7996,7 +8080,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -8018,122 +8102,122 @@ msgstr "टेबल %s को रद्द किया गया है." msgid "Routine %1$s has been created." msgstr "%1$s टेबल बना दिया गया है" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "संपादन मोड" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "नियमित कार्य" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "सीधे संपर्क" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "लंबाई/अर्थ*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add index" msgid "Add parameter" msgstr "अनुक्रमणिका जोड़" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "डेटाबेस को हटा दे" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "रिटर्न प्रकार" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "लंबाई/अर्थ*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "टेबल विकल्प" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "सुरक्षा" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8155,44 +8239,44 @@ msgstr "टेबल %s को रद्द किया गया है." msgid "Trigger %1$s has been created." msgstr "%1$s टेबल बना दिया गया है" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new server" msgid "Edit trigger" msgstr "एक नया सर्वर जोडें" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "ट्रिगर" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "समय" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "अवैध टेबल नाम" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8306,7 +8390,7 @@ msgstr "अपलोड करने के लिए फाइल उपलब #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8316,7 +8400,7 @@ msgstr "%s टेबल(s) मौजूद नहीं है" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8324,7 +8408,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8337,27 +8421,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "%s फाइल में कोई भी प्रमुख आईडी नहीं है" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "स्कीमा त्रुटि" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "संबंधपरक स्कीमा" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "लेख - सूची" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "विशेषता" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "अतिरिक्त" @@ -8473,7 +8557,7 @@ msgstr "अज्ञात भाषा: %1$s." msgid "Current Server" msgstr "मौजूदा सर्वर" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "स्रोत डेटाबेस" @@ -8491,7 +8575,7 @@ msgstr "दूरस्थ सर्वर" msgid "Difference" msgstr "अंतर" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "लक्ष्य डेटाबेस" @@ -8510,7 +8594,7 @@ msgstr "%s सर्वर पर SQL प्रशन चलेयें" msgid "Run SQL query/queries on database %s" msgstr "डाटाबेस %s में SQL प्रशन चलाइये " -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "स्पष्ट" @@ -8521,11 +8605,11 @@ msgstr "स्पष्ट" msgid "Columns" msgstr "कोलम" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" @@ -8607,7 +8691,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8628,8 +8712,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "सूची" @@ -8677,13 +8761,13 @@ msgstr "डिफ़ॉल्ट के लिए" msgid "As defined:" msgstr "जैसे परिभाषित:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "प्राथमिक" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "प्राथमिक" @@ -8697,20 +8781,20 @@ msgstr "" msgid "after %s" msgstr "%s के बाद" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s क्षेत्र जोडें" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "आपको कम से कम एक स्तंभ प्रदर्शित करने के लिए चयन करना है." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8718,43 +8802,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "ढूंढें" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "काँलम चुनें (कम से कम एक)" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "खोज शर्तें जोडें (\"where\" खंड के शरीर में)" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "प्रति पृष्ट कितने रौ" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "क्रम से दिखाओ:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "विदेशी मूल्य ब्राउस करें " - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8864,13 +8911,13 @@ msgstr "" msgid "Manage your settings" msgstr "सेटिंग्स प्रबंधक" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "विन्यास को बचाया गया है" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8881,7 +8928,7 @@ msgstr "" msgid "Could not save configuration" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8912,7 +8959,7 @@ msgstr "MySQL कनेक्शन कलेवा" msgid "Appearance Settings" msgstr "उपस्थिति सेटिंग्स" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -8938,9 +8985,9 @@ msgstr "संस्करण दिखाएँ" msgid "Protocol version" msgstr "अधिक सेटिंग्स" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "यूसर" @@ -9061,148 +9108,148 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "कोइ डाटाबेस नहिं" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "टेबल क्रमांक को बदलिये " -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "टेबल क्रमांक को बदलिये " -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create a page" msgctxt "short form" msgid "Create table" msgstr "नया पेज़ बनाऐं" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "कृपया एक डाटाबेस चुनिये " -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "शो/छिपाना बाएँ मेनू" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "स्थिति को बचा" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "संबंध बनायें" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "पुनः लोड" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "मदद" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "कोणीय लिंक" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "सीधे संपर्क" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "ग्रिड पर स्नैप" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "सभी छोटे/बड़े" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "टोग्ल छोटे/बड़े" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "संबंध चयन करने के लिए क्लिक करें :" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "क्वरी प्रस्तुत करें" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "चाल मेनू" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "सभी दिखाना/छिपाना" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "बिना रिश्ते की टेबलओं को दिखाना/छिपाना" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "टेबल की संख्या" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "संबंध हटाना" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "संबंध ऑपरेटर" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "सिवाय" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "Query" msgid "subquery" msgstr "उप-क्वरी" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy #| msgid "Rename database to" msgid "Rename to" msgstr "नाम बदल कर ____ रखें" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "नया नेम" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "कुल" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Actions" msgid "Active options" @@ -9216,57 +9263,57 @@ msgstr "पेज बना दिया गया है" msgid "Page creation failed" msgstr "पेज बना दिया गया है" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "पेज" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "चयनित पेज से आयात" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "चयनित पेज को निर्यात" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "एक पेज बनाएँ और इसमें निर्यात करिएँ" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "नया पेज के नाम" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "निर्यात/आयात पैमाने पर" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "सिफारिश" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "त्रुटि: रिश्ता पहले से ही मौजूद है. " -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "विदेशी कुंजी रिश्ता जोड़ा." -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "आंतरिक संबंध जोड़ा." -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "रिश्ते को नष्ट कर दिया" @@ -9278,87 +9325,87 @@ msgstr "डिजाइनर के लिए निर्देशांक msgid "Modifications have been saved" msgstr "संशोधनों को बचाया गया है" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "सेटिंग्स को बचा नहीं सकते, प्रस्तुत फार्म में त्रुटि है" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "विन्यास आयात नहीं किया जा सका" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "विन्यास में कुछ क्षेत्रों के लिए ग़लत डेटा है" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "क्या आप शेष सेटिंग्स आयात करना चाहते हैं?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "@तिथि@: पर बचाया" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "फ़ाइल से आयात" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "ब्राउज़र के भंडारण से आयात" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "सेटिंग्स को अपने ब्राउजर के स्थानीय भंडारण से आयात किया जाएगा" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "आपके पास कोई बचाई गयीसेटिंग नहीं हैं" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "यह सुविधा आपके ब्राउज़र द्वारा समर्थित नहीं है" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "मौजूदा विन्यास के साथ विलय" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "ब्राउज़र के भंडारण में बचाएं" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "सेटिंग्स को आपके ब्राउजर के स्थानीय भंडारण में सहेज लिया जाएगा" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "मौजूदा सेटिंग्स अधिलेखित हो जाएगी" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "आप अपने सभी सेटिंग्स रीसेट और उन मूलभूत मूल्यों को पुनर्स्थापित कर सकते हैं" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "फ़ाइलें आयात करें" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "सभी" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "%s table(s)" msgid "File doesn't exist" @@ -9368,17 +9415,17 @@ msgstr "फ़ाइल मौजूद नहीं है" msgid "Select binary log to view" msgstr "द्विआधारी लॉग देखने के लिए चयनित करें" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "फाइलें" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "पूर्ण क्वरीों को दिखाएँ" @@ -9394,7 +9441,7 @@ msgstr "स्थिति" msgid "Original position" msgstr "मूल स्थिति" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "सूचना" @@ -9402,7 +9449,7 @@ msgstr "सूचना" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9410,24 +9457,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s डाटाबेस को सफलता से डिलीट कर दिया गया।" msgstr[1] "%s डाटाबेस को सफलता से डिलीट कर दिया गया।" -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "डाटाबेसों के आँकडे" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "आँकडे Enable करें" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9439,382 +9486,382 @@ msgstr "" msgid "Storage Engines" msgstr "संचयन ोोोइंजन" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "प्रारंभ" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "संस्करण" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "अक्षम" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "ेेोीाेेGRANT के अतिरिक्त सभी इंजन शामिल" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "मौजूदा टेबल की संरचना में फेरबदल की अनुमति देता है" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "संग्रहित routines की फेरबदल और छोड़ने की अनुमति देता है" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "नया डेटाबेस और टेबल बनाने की अनुमति देता है" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "नया नियमित कार्यक्रम बनाने की अनुमति देता है" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "नया टेबल बनाने की अनुमति देता है" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "नया अस्थायी टेबल बनाने की अनुमति देता है" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "यूसर खातों बनाने, गिराना और नाम बदलने की अनुमति देता है" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "नए दृश्य बनाने की अनुमति देता है" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "डेटा को हटाने की अनुमति देता है" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "डेटाबेस और टेबल को हटाने की अनुमति देता है" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "टेबल को हटाने की अनुमति देता है" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "घटना अनुसूचक के लिए घटना को स्थापित करने की अनुमति देता है" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "डेटा फ़ाइलों में आयात और निर्यात करने की अनुमति देता है" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "सूचक बनाने और हटाने की अनुमति देता है" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "डेटा डालने और हटाने की अनुमति देता है" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "यूसर के समकालिक कनेक्शन की संख्या सिमित है" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "सभी यूसरओं प्रक्रियाओं को देखने की अनुमति" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "इस MySQL संस्करण में कोई प्रभाव नहीं है" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "सर्वर सेटिंग्स को पुन: लोड और सर्वर के कैश निस्तब्धता की अनुमति देता है" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "डाटा पढने की अनुमति देता है" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "डेटाबेस की पूरी सूची तक पहुंचा देता है" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "सर्वर बन्द करने की अनुमति देता है" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "डेटा को बदलने की अनुमति देता है" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "कोई प्रिविलेज नहीं" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "No" msgctxt "None privileges" msgid "None" msgstr "नहीं" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "केवल टेबल के प्रिविलेज" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "नोट: MySQL प्रिविलेज नामों को अंग्रेजी मे लिखा गया है " -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "एडमिनिस्ट्रेशन" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "वैश्विक प्रिविलेज" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "केवल डाटाबेस के प्रिविलेज" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "संसाधन सीमा" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "प्रवेश जानकारी" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "पासवर्ड मत बदलिये" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "कोई यूसर नहीं।" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "%s यूसर पहले से मौजूद है" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "आपने नया यूसर बना लिया" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "आपने %s के प्रिविलेज अपडेट कर दिया ।" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "आपने %s के privileges वापस ले लिया " -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "%s का पासवर्ड सफलतापूर्वक बदल गया" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "विशेषाधिकार पुनः लोड" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "चयनित यूसर को सफलतापूर्वक हटा दिया गया है" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "प्रिविलेज एडिट करें" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "वापस लो" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "निर्यात" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "कोई" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "प्रिविलेज" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "प्रिविलेज" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "यूसर सिंहावलोकन" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "अनुदान" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "चयनित यूसर हटायें" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "यूसर से सभी सक्रिय विशेषाधिकार रद्द करने और उन्हें बाद में हटा" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9823,141 +9870,141 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "केवल कोलम के प्रिविलेज" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "इन डाटाबेसों के लिये विशेषाधिकार जोडें" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "इन टेबल के लिये विशेषाधिकार जोडें" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... पुराने रखना" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "पुराने यूसर को टेबल से हटाना" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "यूसर के लिए डेटाबेस" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "एक ही नाम के साथ डेटाबेस बनाएँ और सभी विशेषाधिकारों को अनुदान" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "वाइल्डकार्ड नाम (यूसरनाम\\_%) पर सभी विशेषाधिकार अनुदान " -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" डेटाबेस पर सभी विशेषाधिकारों का अनुदान करें" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "वैश्विक" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "डेटाबेस-विशेष" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "वाइल्डकार्ड" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "द्रश्य %s रद्द दिया गया है." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "अज्ञात त्रुटि" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "%s मास्टर से कनेक्ट करने मैं असमर्थ" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "मास्टर की लोग स्तिथि पढने मैं असमर्थ, मास्टर पर संभव विशेषाधिकार समस्या" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "मास्टर बदलने मैं असमर्थ" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "मास्टर सर्वर सफलतापूर्वक परिवर्तित %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "यह सर्वर किसी प्रतिकृति प्रक्रिया में मास्टर की तरह कॉन्फ़िगर है" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "मास्टर अवस्था" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "मास्टर विन्यास" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9966,269 +10013,269 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "सभी डेटाबेस को दोहराना; उपेक्षा" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "सभी डेटाबेस को दोहराना; नकल" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "कृपया डेटाबेस चुने" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "नियंत्रित बचाना" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "पूर्ण शुरू" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "पूर्ण विराम" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "रीसेट दास" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "केवल संरचना" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "केवल संरचना" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "वर्तमान त्रुटि को छोड़" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "अगले छोड़" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "त्रुटियों" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s को सफलता से मारा गया।" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "thread %s को मारने में phpMyAdmin असफल हुआ। शायद वह खतम हो चुका है।" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "हैंडलर" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "क्वेरी कैश" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "थ्रेअद" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "अस्थायी डेटा" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "देरी आवेषण" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "कुंजी कैश" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "जोड़" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "छँटाई" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "लेन - देन समन्वयक" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "सभी टेबलओं फ्लश" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "खुला टेबल शो" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "फ्लश क्वेरी कैश" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "क्रम जानकारी" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "ताज़ा करना" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "पासवर्ड मत बदलिये" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "खुला टेबल शो" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "खुला टेबल शो" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Replication" msgid "Related links:" msgstr "पसंबंधित लिंक" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "क्वरी प्रकार" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Administration" msgid "Instructions" msgstr "एडमिनिस्ट्रेशन" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10236,118 +10283,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "स्टार्टअप पेज अनुकूलित करें" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "रो आँकड़े" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "प्रतिकृति स्थिति" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "प्राप्त" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "भेजा" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "अधिकतम वर्तमान कनेक्शन" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "असफल प्रयास" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "रद्द" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "आदेश" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10355,78 +10402,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10434,7 +10481,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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,42 +10489,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10485,33 +10532,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10520,244 +10567,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "आयात की गई फ़ाइल का प्रारूप" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10765,99 +10812,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10865,18 +10912,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10884,72 +10931,72 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "ट्रैकिंग सक्रिय नहीं है." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" msgstr "क्षेत्र रोयाँ" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "अनुक्रमणिका जोड़" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "ताज़ा करना" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "मूलभूत मान को बहाल" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 +11005,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 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 +11013,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 +11032,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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,95 +11044,95 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "डेटाबेस को हटा दे" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "टेबल चुनिये" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "अवैध टेबल नाम" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "एक नया सर्वर जोडें" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL क्वरी" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "आँकड़े दिखाएँ" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "पेज चुनिये" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "क्वरी प्रकार" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11093,7 +11140,7 @@ msgid_plural "%d seconds" msgstr[0] "सेकंड" msgstr[1] "सेकंड" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11101,129 +11148,129 @@ msgid_plural "%d minutes" msgstr[0] "मिनट" msgstr[1] "मिनट" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "स्रोत से कनेक्ट नहीं कर सका" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "लक्ष्य से कनेक्ट नहीं कर सका" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' डेटाबेस मौजूद नहीं है" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "संरचना तुल्यकालन" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "डेटा तुल्यकालन" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "मौजूद नहीं" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "संरचना अंतर" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "डेटा अंतर" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "काँलम जोड़ना" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "काँलम हटाना" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "काँलम बदलना" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "सूचकांक हटायें" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "सूचकांक लागू" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "अद्यतन रोयाँ" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "इनसर्ट रोयाँ" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "चयनित परिवर्तन लागू करें" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "सिंक्रनाइज़ डेटाबेस" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "चयनित लक्ष्य टेबल स्रोत टेबल के साथ सिंक्रनाइज़ किया जा चूका है" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "लक्ष्य डेटाबेस स्रोत डेटाबेस के साथ सिंक्रनाइज़ किया जा चूका है" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL क्वरी" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "मैन्युअली दर्ज करें" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "वर्तमान कनेक्शन" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "विन्यास: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "साकेट" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "सर्वर चर और सेटिंग्स" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "सत्र मूल्य" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "वैश्विक मूल्य" @@ -11513,189 +11560,189 @@ msgstr "" msgid "Wrong data" msgstr "कोइ डाटाबेस नहिं" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "क्या आप सचमुच चाहते है की" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "PHP कोड की तरह दिखाएँ" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "SQL मान्य" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQLपरिणाम" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "द्वारा उत्पन्न" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "लेबल" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "Table %1$s has been altered successfully" msgid "The columns have been moved successfully." msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है" -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Bar" msgctxt "Chart type" msgid "Bar" msgstr "पट्टी" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "स्तम्भ" -#: tbl_chart.php:84 +#: tbl_chart.php:87 #, fuzzy #| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "लाइन" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Inline" msgctxt "Chart type" msgid "Spline" msgstr "इनलाइन" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "Pie" msgctxt "Chart type" msgid "Pie" msgstr "Pie" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "जमा" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Default title" msgid "Chart title" msgstr "डिफ़ॉल्ट शीर्षक" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL क्वरी" -#: tbl_chart.php:138 +#: tbl_chart.php:141 #, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" msgstr "X Axis लेबल" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "मूल्य" -#: tbl_chart.php:141 +#: tbl_chart.php:144 #, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Y Axis लेबल" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "मूल्य" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "%s टेबल पहले से मौजूद है" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "%1$s टेबल बना दिया गया है" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "टेबल डंप दृश्य" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "सर्वर चयन प्रदशित करें" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "चौड़ाई " -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "ऊँचाई" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Textarea columns" msgid "Label column" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- कोई नहीं -" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "कुल" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "फिर से बनाएं" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "फाईल मे सेव करें" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11713,30 +11760,30 @@ msgstr "इन्डेक्स को PRIMARY नाम मे नहीं msgid "No index parts defined!" msgstr "सूचकांक परिभाषित हिस्सा नहीं " -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "अनुक्रमणिका जोड़" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "संपादन मोड" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "इन्डेक्स नाम" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "\"PRIMARY\" नाम हो सकता है केवल एक प्राथमिक कुंजी का " -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "इन्डेक्स प्रकार" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "सूचकांक में जोडें  %s column(s)" @@ -11759,262 +11806,262 @@ msgstr "%s टेबल को %s में मूव कर दिया." msgid "Table %s has been copied to %s." msgstr "%s टेबल को %s में कापी कर दिया." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "टेबल का नाम खाली है!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "टेबल क्रमांक को बदलिये " -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(अकेले)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "टेबल को (database.table) में मूव करें:" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "टेबल विकल्प" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "टेबल का नाम बदलें" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "(database.table) में टेबल को कापी करें:" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "नकल की टेबल पर स्विच करें" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "टेबल रख-रखाव" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "देफ्रागमेंट टेबल" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "टेबल %s को flush किया" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "टेबल को Flush करें (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "टेबल या डेटा हटाएँ" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "टेबल को खाली करें" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "डेटाबेस को ______ छोड़ें " -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "विभाजन रखरखाव" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "विभाजन %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "विश्लेषण" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "चेक" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "सुधारना" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "फिर से बनाना" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "मरम्मत" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "विभाजन हटायें" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Referential अखंडता की जाँच करें" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "टेबल दिखाओ" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "स्थान उपयोग" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "वास्तविक" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "पंक्ति आँकड़े" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "स्थिर" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "गतिशील" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "रौ की लंबाई" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "रौ का आकार" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "विदेशी कुंजी बनाने में त्रुटि %1$s ( डेटा टाइप चेक करें)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "आंतरिक संबंध" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "एक आंतरिक संबंध आवश्यक नहीं है जब एक विदेशी कुंजी संबंध मौजूद है." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "विदेशी कुंजी बाधा" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "अलग मूल्य ब्राउस करें " -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "प्राथमिक कुंजी जोड़ें" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "अद्वितीय अनुक्रमणिका जोड़" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add index" msgid "Add SPATIAL index" msgstr "अनुक्रमणिका जोड़" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "FULLTEXT सूचकांक जोड़ें " -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "कोई नहीं" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "टेबल %s को रद्द किया गया है." -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "%s पर एक प्राईमरी की जड़ी गयी है" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "%s पर एक सूचकांक जोड़ा गया है" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "अधिक क्रियाएँ दिखाओ" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "काँलम हटाना" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "छपाई द्रश्य." -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "संबंध दृश्य" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "टेबल संरचना का प्रस्ताव" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "नया काँलम जोडें" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "टेबल के आखिर में" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "टेबल के शुरू में" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "%s के बाद" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr " %s  कोलम पर इन्डेक्स बनाऐं " -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "विभाजित" @@ -12181,73 +12228,37 @@ msgstr "डेटा आपरेशन पर नज़र रखना" msgid "Create version" msgstr "संस्करण बनाएँ" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Additional search criteria" -msgstr "खोज मापदंड छिपाना" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -#, fuzzy -#| msgid "Maximum number of rows to display" -msgid "Maximum rows to plot" -msgstr "प्रदर्शित रो की अधिकतम संख्या" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -#| msgid "Control user" -msgid "How to use" -msgstr "नियंत्रण यूसर" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "रीसेट" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "अधिक प्रसंग पाएं" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "MIME परकआर जो उपलब्ध हैं" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "प्रकार जो इतलिच्स मैं मुद्रित है , उनके स्वयं का कोई परिवर्तन उपाय नहीं है" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "उपलब्ध परिवर्तन" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "वर्णन" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "आपके पास यहाँ उपस्थित होने के अधिकार नहीं हैं" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "प्रोफाइल अपडेट कर दिया ।" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "दृश्य का नाम" diff --git a/po/hr.po b/po/hr.po index c554d02244..717e0dd4ea 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: croatian \n" @@ -15,21 +15,21 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Broj stranice:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "nadređeni prozor ili su postavke sigurnosti vašeg preglednika konfigurirane " "za blokiranje ažuriranja preko više prozora." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Kreni" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Naziv ključa" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Upotrijebi ovu vrijednost" @@ -108,90 +108,91 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza podataka %1$s uspješno je izrađena." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Komentar baze podataka: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Komentari tablice" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nazivi stupaca" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Zadano" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Povezano s" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Komentari" @@ -200,14 +201,14 @@ msgstr "Komentari" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ne" @@ -220,125 +221,125 @@ msgstr "Ne" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Da" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Prikaži ispis (shemu) baze podataka" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "U bazi podataka nisu pronađene tablice." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Odaberi sve" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Ukloni sav odabir" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Naziv baze podataka je prazan!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Baza podataka %s preimenovana je u %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Baza podataka %s kopirana je u %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:470 +#: db_operations.php:476 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Preimenuj bazu podataka u" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Baza podataka %s je odbačena." -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy msgid "Drop the database (DROP)" msgstr "Nema baza podataka" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Kopiraj bazu podataka u" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Samo strukturu" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Strukturu i podatke" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Samo podatke" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Prije kopiranja izradi bazu podataka (CREATE DATABASE)" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Dodaj prisile" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu podataka" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Uspoređivanje" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -350,61 +351,61 @@ msgstr "" "Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste " "saznali razloge, pritisnite %sovdje%s." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Shema relacija" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tablica" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Redaka" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Veličina" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "u upotrebi" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Izrada" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Posljednje ažuriranje" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Posljednja provjera" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -416,122 +417,122 @@ msgstr[1] "%s tablica" msgid "You have to choose at least one column to display" msgstr "Morate odabrati najmanje jedan stupac za prikazivanje" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Prebaci se na kopiranu tablicu" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Presloži" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Uzlazno" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Silazno" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Prikaži" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriterij" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "I" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ili" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Uredi" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Dodaj/Izbriši redak kriterija" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Dodaj/Izbriši stupce polja" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Ažuriraj upit" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Upotrijebi tablice" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit nad bazom podataka %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Podnesi upit" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Pristup odbijen" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "najmanje jedna riječ" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "sve riječi" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "točan izraz" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "kao regularan izraz" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretraživanja za \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -539,31 +540,31 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -571,71 +572,71 @@ msgid_plural "Total: %s matches" msgstr[0] "Ukupno: %s poklapanja" msgstr[1] "Ukupno: %s poklapanja" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Traži u bazi podataka" -#: db_search.php:292 +#: db_search.php:295 #, 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:297 +#: db_search.php:300 msgid "Find:" msgstr "Traži:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Riječi su razdvojene znakom razmaka (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Unutar tablica:" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" msgstr "Unutar polja:" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "U bazi podataka nisu pronađene tablice." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "nepoznato" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tablica %s je očišćena" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Index %s je ispušten" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tablica %s je odbačen" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -643,197 +644,198 @@ msgid "" msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Prikaz" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Zbroj" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "S odabirom:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Prikaz ispisa" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Ispusti" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Provjeri tablicu" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimiziraj tablicu" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Popravi tablicu" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analiziraj tablicu" -#: db_structure.php:719 +#: db_structure.php:717 #, fuzzy msgid "Add prefix to table" msgstr "Nema baza podataka" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 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:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 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:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Rječnik podataka" -#: db_tracking.php:74 +#: db_tracking.php:75 #, fuzzy msgid "Tracked tables" msgstr "Provjeri tablicu" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Baza podataka" -#: db_tracking.php:81 +#: db_tracking.php:82 #, fuzzy msgid "Last version" msgstr "Izradi relaciju" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 #, fuzzy msgid "Created" msgstr "Izradi" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Ažurirano" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Stanje" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Aktivnost" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "aktivno" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "neaktivno" -#: db_tracking.php:135 +#: db_tracking.php:136 #, fuzzy msgid "Versions" msgstr "Perzijski" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 #, fuzzy msgid "Structure snapshot" msgstr "Samo strukturu" -#: db_tracking.php:183 +#: db_tracking.php:184 #, fuzzy msgid "Untracked tables" msgstr "Provjeri tablicu" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "Provjeri tablicu" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "Baza podataka" @@ -848,18 +850,18 @@ msgstr "Vrsta upita" msgid "Selected export type has to be saved in file!" msgstr "Odabrana vrsta izvoza mora biti spremljena u datoteku!" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Routines" msgid "Bad parameters!" msgstr "Rutine" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nema dovoljno prostora za spremanje datoteke %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -867,12 +869,12 @@ msgstr "" "Datoteka %s već postoji na poslužitelju. Promijenite naziv ili označite " "opciju za prepisivanje." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web poslužitelj nema dopuštenja za spremanje datoteke %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Izbacivanje je spremljeno u datoteku %s." @@ -882,103 +884,103 @@ msgstr "Izbacivanje je spremljeno u datoteku %s." msgid "Invalid export type" msgstr "Vrsta izvoza" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Vrijednost stupca \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometrija" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Točka" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a point" msgstr "Dodaj %s polja" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Redovi završeni s" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Poligon" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Dodaj %s polja" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy msgid "Add geometry" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -987,21 +989,21 @@ msgstr "" "Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte " "%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Prikazivanje oznake" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Favorit je izbrisan." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -1011,7 +1013,7 @@ msgstr "" "Takva podrška još nije implementirana ili je onemogućena u vašoj " "konfiguraciji." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -1021,26 +1023,26 @@ msgstr "" "veličina datoteke prelazi najveću dopuštenu veličinu od strane vaše PHP " "konfiguracije. Pogledajte ČPP 1.16." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Nije moguće učitati dodatke za uvoz. Provjerite svoju instalaciju!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Izrađen je favorit %s" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Uvoz je uspješno dovršen. Izvršeno upita: %d ." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1048,7 +1050,7 @@ msgstr "" "Vrijeme za skriptu je isteklo. Ako želite završiti uvoz, ponovo podnesite " "istu datoteku i uvoz će nastaviti." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1057,25 +1059,25 @@ msgstr "" "znači da phpMyAdmin neće biti u mogućnosti završiti ovaj uvoz sve dok ne " "povećate vremenska ograničenja unutar php." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Nazad" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin je jednostavniji za upotrebu s preglednikom koji podržava " "okvire." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" izjave su onemogućene." @@ -1085,7 +1087,7 @@ msgstr "\"DROP DATABASE\" izjave su onemogućene." msgid "Do you really want to execute \"%s\"?" msgstr "Želite li zaista " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!" @@ -1131,7 +1133,7 @@ msgstr "Indeks" msgid "Edit Index" msgstr "Uredi sljedeći redak" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -1152,16 +1154,16 @@ msgstr "Naziv računala je prazan!" msgid "The user name is empty!" msgstr "Korisničko ime je prazno!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Lozinke se ne podudaraju!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1184,25 +1186,26 @@ msgstr "Ukloni odabrane korisnike" msgid "Close" msgstr "Zatvori" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Uređivanje" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Odabir poslužitelja" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "SQL upit" @@ -1213,24 +1216,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Ostalo" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1252,7 +1255,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Procesi" @@ -1272,7 +1275,7 @@ msgstr "Upiti od zadnjeg osvježavanja" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "Statistike redova" @@ -1322,14 +1325,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "kB" @@ -1391,32 +1394,32 @@ msgstr "" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Veze" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1432,11 +1435,11 @@ msgstr "%s tablica" msgid "Questions" msgstr "Perzijski" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Promet" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1462,11 +1465,11 @@ msgstr "Poravnaj s mrežom" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "bez kompresije" @@ -1566,7 +1569,7 @@ msgstr "Opće osobine relacija" msgid "Current settings" msgstr "Opće osobine relacija" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1656,7 +1659,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Vrijeme" @@ -1763,10 +1766,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" @@ -1826,9 +1829,9 @@ msgstr "" msgid "Test" msgstr "Test" -#: 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 +#: 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 msgid "Cancel" msgstr "Odustani" @@ -1843,11 +1846,11 @@ msgstr "Lokalno" msgid "Processing Request" msgstr "Procesi" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Greška pri procesiranju zahtjeva" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Nema odabrane baze podataka." @@ -1859,9 +1862,9 @@ msgstr "Brisanje stupca" msgid "Adding Primary Key" msgstr "Dodavanje primarnog ključa" -#: 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 +#: 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 msgid "OK" msgstr "U redu" @@ -1917,19 +1920,19 @@ msgstr "Indeksi" msgid "Show indexes" msgstr "Prikaži mrežu" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Onemogući provjere stranih znakova" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Omogućeno" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1967,7 +1970,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -2009,8 +2012,8 @@ msgstr "SQL upit" msgid "No rows selected" msgstr "Nema odabranih redova" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Promijeni" @@ -2018,18 +2021,18 @@ msgstr "Promijeni" msgid "Query execution time" msgstr "Vrijeme izvršavanja upita" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Spremi" @@ -2043,7 +2046,7 @@ msgstr "SQL upit" msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2095,12 +2098,12 @@ msgstr "Operacije rezultata upita" msgid "Data point content" msgstr "Veličina pokazatelja podataka" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignoriraj" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Kopiraj" @@ -2122,7 +2125,7 @@ msgstr "Odaberite strani ključ" msgid "Please select the primary key or a unique key" msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2216,7 +2219,7 @@ msgstr "Generiraj" msgid "Change Password" msgstr "Promijeni lozinku" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2332,27 +2335,27 @@ msgid "December" msgstr "Prosinac" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2360,37 +2363,37 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Pro" @@ -2439,32 +2442,32 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sub" @@ -2600,16 +2603,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "po sekundi" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "po minuti" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "po satu" @@ -2630,21 +2633,233 @@ msgstr "" msgid "Font size" msgstr "Veličina fonta" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +msgid "Save edited data" +msgstr "Osnovna mapa podataka" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Dodaj/Izbriši stupce polja" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Na vrh stranice" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Prethodni" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Sljedeće" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Završetak" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Sub" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "Broj polja" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Pon" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "vodoravno" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "vodoravno (okrenuta zaglavlja)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "uspravno" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Izvrši favorizirani upit" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Presloži po ključu" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Opcije" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Djelomični tekstovi" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Potpuni tekstovi" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Relacijski ključ" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational display field" +msgid "Relational display column" +msgstr "Polje za prikaz relacija" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Pretvaranje preglednika" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Redak je izbrisan" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Eliminiraj" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "Može biti približno. Pogledajte ČPP 3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "unutar upita" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Prikazivanje redaka" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "ukupno" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Upit je trajao %01.4f sek" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operacije rezultata upita" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Prikaz ispisa (s potpunim tekstovima)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Prikaži PDF shemu" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Izradi relaciju" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Veza nije pronađena" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Previše poruka o greškama, neke nisu prikazane" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Učitana datoteka nadmašuje uputu upload_max_filesize (najveća veličina " "datoteke) u datoteci php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2652,52 +2867,67 @@ msgstr "" "Učitana datoteka nadmašuje uputu MAX_FILE_SIZE (najveća veličina datoteke), " "određenu u HTML obliku." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Učitana datoteka bila je djelomično učitana." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Nedostaje mapa privremene pohrane." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Zapisivanje datoteke na disk nije uspjelo." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Nepoznata pogreška tijekom učitavanja datoteke." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Pogreška tijekom premještanja učitane datoteke. Pogledajte ČPP 1.11" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Greška prilikom premještanja datoteke" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Otvori novi phpMyAdmin prozor" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Od ovog mjesta potrebno je omogućiti kolačiće." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Jedinstveno" @@ -2710,8 +2940,8 @@ msgstr "Pakirano" msgid "Cardinality" msgstr "Najvažnije" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Komentar" @@ -2733,130 +2963,130 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Baze podataka" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Poslužitelj" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Strukturu" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Umetni" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Praćenje" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tablica izgleda praznom!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Baza podataka izgleda praznom!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Upit" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilegije" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Događaji" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Kreator" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Korisnik" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binarni zapisnik" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Varijable" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Tablice znakova" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Dodatci" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Pogoni" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Pogreška" @@ -2884,7 +3114,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Umetnuto redaka: %1$d." msgstr[1] "Umetnuto redaka: %1$d." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2981,16 +3211,108 @@ 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 +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 +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 +msgid "Value" +msgstr "Vrijednost" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Traži" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Umetni" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Odaberite polja (najmanje jedno):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Dodaj uvjete pretrage (sadržaj uvjeta \"gdje\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Broj redaka po stranici" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Redoslijed prikaza:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Pretraži strane vrijednosti" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "SQL upit" + +#: 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 "Izvedi \"upit po primjeru\" (džoker: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Izvedi \"upit po primjeru\" (džoker: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +msgid "How to use" +msgstr "PHP ekstenzija" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Povrat" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Valjana putanja slika za temu %s nije pronađena!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Nema raspoloživog pregleda." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "Dodijeli" @@ -3009,7 +3331,7 @@ msgstr "Tema %s nije pronađena!" msgid "Theme path not found for theme %s!" msgstr "Za temu %s nije pronađena putanje tema!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Tema" @@ -3307,13 +3629,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Povezivanje nije moguće: neispravna postavka." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Dobro došli u %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3322,7 +3644,7 @@ msgstr "" "Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete " "upotrijebiti naredbu %1$ssetup script%2$s" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3338,60 +3660,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Od ovog mjesta potrebno je omogućiti kolačiće." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Prijava" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Poslužitelj" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Korisničko ime:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Lozinka:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Odabir poslužitelja" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Od ovog mjesta potrebno je omogućiti kolačiće." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Nije bilo nikakvih aktivnosti tijekom %s sekunda. Prijavite se ponovo." -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Prijavljivanje na MySQL poslužitelj nije moguće" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Pogrešno korisničko ime ili lozinka. Pristup odbijen." @@ -3423,7 +3739,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tablice" @@ -3435,13 +3751,13 @@ msgstr "Tablice" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Podaci" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Prepunjenje" @@ -3469,33 +3785,25 @@ msgstr "Provjeri privilegije za bazu podataka \"%s\"." msgid "Check Privileges" msgstr "Provjeri privilegije" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3507,220 +3815,198 @@ msgstr "" "Direktiva $cfg['PmaAbsoluteUri'] MORA BITI postavljena u vašoj " "konfiguracijskoj datoteci!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Neispravan indeks poslužitelja: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju " "konfiguraciju." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebali biste nadograditi na %s %s ili kasniju." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Najv: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentacija" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL upit" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL je poručio: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Preskoči Objasni SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Izradi PHP kod" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Osvježi" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Preskoči provjeru valjanosti SQL-a" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Provjera valjanosti SQL-a" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Pogoni" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Izrada profila" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y u %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekunda" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutine" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Na vrh stranice" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Prethodni" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Sljedeće" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Završetak" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Skoči do baze podataka \"%s\"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Pretraži računalo" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "mapa učitavanja web poslužitelja" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Izvrši" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Ispiši" @@ -3752,8 +4038,8 @@ msgid "Closed" msgstr "Navodnik nije zatvoren" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Onemogućeno" @@ -3904,9 +4190,9 @@ msgstr "Vrati zadanu vrijednost" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Povrat" @@ -4119,10 +4405,6 @@ msgstr "Predloži strukturu tablice" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4181,7 +4463,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Spremi kao datoteku" @@ -4191,7 +4473,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Oblikovanje" @@ -4310,7 +4592,7 @@ msgid "MIME type" msgstr "MIME vrsta" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relacije" @@ -5868,9 +6150,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Lozinka" @@ -6149,12 +6431,6 @@ msgstr "" msgid "Details..." msgstr "Detalji..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "Može biti približno. Pogledajte ČPP 3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6163,18 +6439,18 @@ msgstr "" "konfiguraciji nije uspjelo." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Promijeni lozinku" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Bez lozinke" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Ponovite" @@ -6199,22 +6475,22 @@ msgstr "Izradi novu bazu podataka" msgid "Create" msgstr "Izradi" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Bez privilegija" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Naziv" @@ -6409,25 +6685,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "MySQL verzija klijenta" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Izradi relaciju" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Izradi relaciju" @@ -6554,193 +6830,27 @@ msgstr "" msgid "Language" msgstr "Jezik" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -msgid "Save edited data" -msgstr "Osnovna mapa podataka" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Dodaj/Izbriši stupce polja" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Sub" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "Broj polja" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Pon" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "vodoravno" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "vodoravno (okrenuta zaglavlja)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "uspravno" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Izvrši favorizirani upit" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Presloži po ključu" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Opcije" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Djelomični tekstovi" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Potpuni tekstovi" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Relacijski ključ" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational display field" -msgid "Relational display column" -msgstr "Polje za prikaz relacija" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Pretvaranje preglednika" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Redak je izbrisan" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Eliminiraj" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "unutar upita" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Prikazivanje redaka" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "ukupno" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Upit je trajao %01.4f sek" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operacije rezultata upita" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Prikaz ispisa (s potpunim tekstovima)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Prikaži PDF shemu" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Izradi relaciju" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Veza nije pronađena" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Podaci o verziji" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Osnovna mapa podataka" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Uobičajeni dio putanje mapa za sve InnoDB podatkovne datoteke." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Podatkovne datoteke" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Korak autoproširenja" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6748,11 +6858,11 @@ msgstr "" " Veličina koraka za proširivanje veličine automatski proširujućeg prostora " "tablice u slučaju njezinog ispunjavanja." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Veličina međuspremnika" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6760,79 +6870,79 @@ msgstr "" "Veličina memorijskog međuspremnika koju InnoDB upotrebljava za privremenu " "pohranu podataka i indeksa svojih tablica." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Međuspremnik" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB stanje" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Iskoristivost međuspremnika" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "stranice" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Slobodne stranice" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Prljave stranice" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Stranice koje sadrže podatke" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Stranice za pražnjenje" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Zaposlene stranice" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Vezane stranice" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Aktivnost međuspremnika" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Pročitaj zahtjeve" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Zahtjevi zapisivanja" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Propuštena čitanja" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Zapisivanje čeka" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Propuštena čitanja pri %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Zapisivanje čeka pri %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Veličina pokazatelja podataka" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6840,11 +6950,11 @@ msgstr "" "Zadana veličina pokazatelja podataka u bajtovima, koju će upotrijebiti " "naredba CREATE TABLE za MyISAM tablice ako opcija MAX_ROWS nije određena." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Rad s automatskim povratom" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6852,11 +6962,11 @@ msgstr "" "Način rada za automatski povrat srušenih MyISAM tablica, na način kojim je " "određen putem opcije --myisam-recover." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Najveća veličina datoteke za privremeno preslagivanje" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6866,11 +6976,11 @@ msgstr "" "ponovne izrade MyISAM indeksa (tijekom izvođenja naredbi REPAIR TABLE, ALTER " "TABLE ili LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Najveća veličina privremenih datoteka pri izradi indeksa" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6880,11 +6990,11 @@ msgstr "" "pohrane ključeva, uz ovdje navedenu vrijednost, preferiraj način pohrane " "ključeva." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Popravi grane" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6893,11 +7003,11 @@ msgstr "" "paralelno (svaki indeks unutar vlastite grane) tijekom popravka putem " "postupka preslagivanja." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Veličina međuspremnika preslagivanja" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6906,11 +7016,11 @@ msgstr "" "tijekom naredbe REPAIR TABLE ili tijekom izrade indeksa naredbama CREATE " "INDEX ili ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Veličina pohrane indeksa" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6919,11 +7029,11 @@ msgstr "" "MB. Ovdje dodijeljena memorija koristi se samo za međupohranjivanje stranica " "indeksa." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Veličina pohrane zapisa" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6934,11 +7044,11 @@ msgstr "" "upotrebljava za međuspremanje izmjena u datotekama rukovanim podacima (.xtd) " "pokazivača retka (.xtr)." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Veličina pohrane zapisnika" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6946,11 +7056,11 @@ msgstr "" "Količina memorije dodijeljena međuspremniku zapisnika transakcija. Zadana " "vrijednost je 16 MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Najveća veličina datoteke zapisnika" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6958,11 +7068,11 @@ msgstr "" "Veličina zapisnika transakcija prije povrata i izrade novog zapisnika. " "Zadana vrijednost je 16 MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Veličina međuspremnika transakcije" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6970,11 +7080,11 @@ msgstr "" "Veličina globalnog međuspremnika zapisnika transakcija (pogon dodjeljuje 2 " "međuspremnika ove veličine). Zadana vrijednost je 1 MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Učestalost točke provjere" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6982,11 +7092,11 @@ msgstr "" "Količina podataka zapisana u zapisnik transakcija prije izvođenja točke " "provjere. Zadana vrijednost je 24 MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Najveća veličina zapisnika podataka" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6998,11 +7108,11 @@ msgstr "" "Vrijednost ove varijable može se povećati kako bi se povećao ukupan broj " "podataka koji se mogu pohraniti u bazu podataka." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Najveća veličina otpada" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -7010,11 +7120,11 @@ msgstr "" "Postotak otpada u datoteci zapisnika podataka prije sređivanja. Vrijednost " "može biti od 1 do 99. Zadana vrijednost je 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Veličina međuspremnika zapisnika" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -7024,27 +7134,27 @@ msgstr "" "vrijednost je 256 MB. Pogon dodjeljuje jedan međuspremnik po grani, ali samo " "ako je grana potrebna za zapisivanje zapisnika podataka." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Veličina porasta datoteke podataka" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Veličina porasta rukovanim datotekama podataka (.xtr)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Veličina porasta datoteke redaka" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Veličina porasta datoteka pokazivača retka (.xtr)." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Najveći broj datoteka zapisnika" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -7056,20 +7166,20 @@ msgstr "" "će izbrisani. U protivnom se preimenuju i daje im se sljedeći veći redni " "broj." -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Relacije" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -7129,14 +7239,14 @@ msgstr "Izbacivanje podataka za tablicu" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Događaj" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7206,14 +7316,14 @@ msgstr "Raspoložive MIME vrste" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Računalo" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Vrijeme generiranja" @@ -7413,21 +7523,12 @@ msgstr "Prikaz" msgid "Export contents" msgstr "Vrsta izvoza" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Otvori novi phpMyAdmin prozor" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7524,12 +7625,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Naziv tablice" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Nazivi stupaca" @@ -7597,100 +7698,82 @@ msgstr "Način rada SQL kompatibilnosti" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funkcija" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Sakrij" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binarno" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binarno - ne uređuj" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "mapa učitavanja web poslužitelja" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Umetni" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, 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:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "i potom" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Umetni kao novi redak" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 #, fuzzy msgid "Show insert query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Kreni nazad na prethodnu stranicu" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Umetni dodatni novi redak" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Kreni nazad na ovu stranicu" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Uredi sljedeći redak" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Vrijednost" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" @@ -7707,36 +7790,36 @@ msgstr "bez kompresije" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Pet" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Podnesi" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Dodaj prefiks" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Želite li zaista " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Bez izmjena" @@ -7948,93 +8031,93 @@ msgstr "" msgid "This format has no options" msgstr "Ovaj oblik nema raspoložive opcije" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "nije OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "U redu " -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Omogućeno" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Opće osobine relacija" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Osobine prikaza" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Izrada PDF datoteka" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Prikazivanje stupca komentara" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Pretvaranje preglednika" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Pogledajte dokumentaciju radi uputa o ažuriranju tablice column_comments." -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Favorizirani SQL upit" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL povijest" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Korisničke postavke" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "bez opisa" @@ -8042,7 +8125,7 @@ msgstr "bez opisa" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -8054,13 +8137,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Korisničko ime" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Presloži" @@ -8076,7 +8159,7 @@ 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:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Varijabla" @@ -8090,38 +8173,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Upotrijebi tekstualno polje" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Bilo koje računalo" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Ovo računalo" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Upotrijebi tablicu poslužitelja" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8135,7 +8218,7 @@ msgstr "Generiraj lozinku" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8170,103 +8253,104 @@ msgstr "" "Jedna ili više grešaka se dogodila prilikom procesiranja vašeg zahtjeva:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Web poslužitelj" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." msgid "Details" msgstr "Detalji..." -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Vrsta događaja" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Vrsta događaja" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Promijeni" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Izvrši favorizirani upit" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Stanje" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Završetak" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Dovrši umetanja" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Novo" @@ -8297,7 +8381,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -8319,100 +8403,100 @@ msgstr "Tablica %s je odbačen" msgid "Routine %1$s has been created." msgstr "Tablica %1$s je izrađena." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy msgid "Edit routine" msgstr "Web poslužitelj" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parametri" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Izravne veze" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Duljina/Vrijednosti" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Dodaj parametar" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Preimenuj bazu podataka u" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Vrsta povratka" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Duljina/Vrijednosti" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcije tablice" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vrsta upita" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8420,19 +8504,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, 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:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8454,43 +8538,43 @@ msgstr "Tablica %s je odbačen" msgid "Trigger %1$s has been created." msgstr "Tablica %1$s je izrađena." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Dodaj novog korisnika" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Okidači" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Vrijeme" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Neispravan naziv tablice" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8597,7 +8681,7 @@ msgstr "Provjeri tablicu" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8607,7 +8691,7 @@ msgstr "Tablica \"%s\" ne postoji!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8615,7 +8699,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Konfigurirajte koordinate tablice %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8627,27 +8711,27 @@ msgstr "Shema \"%s\" baza podataka - stranica %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Shema relacija" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Sadržaj tablice" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atributi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Dodatno" @@ -8767,7 +8851,7 @@ msgstr "Nepoznati jezik: %1$s." msgid "Current Server" msgstr "Poslužitelj" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Traži u bazi podataka" @@ -8787,7 +8871,7 @@ msgstr "Web poslužitelj" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Traži u bazi podataka" @@ -8807,7 +8891,7 @@ msgstr "Pokreni SQL upit na poslužitelju %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" @@ -8819,11 +8903,11 @@ msgstr "Kalendar" msgid "Columns" msgstr "Nazivi stupaca" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Neka svi korisnici imaju pristup ovom favoritu" @@ -8918,7 +9002,7 @@ msgstr "" "SQL validator nije bilo moguće pokrenuti. Provjerite jeste li instalirali " "potrebna PHP proširenja, na način opisan u %sdokumentaciji%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8950,8 +9034,8 @@ msgstr "" "navodnika, u sljedećem obliku: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indeks" @@ -9005,13 +9089,13 @@ msgstr "bez kompresije" msgid "As defined:" msgstr "Kako je definirano:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primarni" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Puni tekst" @@ -9025,20 +9109,20 @@ msgstr "" msgid "after %s" msgstr "Poslije %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, 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:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Morate dodati najmanje jedno polje." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Pogon pohrane" @@ -9046,45 +9130,6 @@ msgstr "Pogon pohrane" msgid "PARTITION definition" msgstr "Definicija PARTICIJE" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Traži" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Odaberite polja (najmanje jedno):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Dodaj uvjete pretrage (sadržaj uvjeta \"gdje\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Broj redaka po stranici" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Redoslijed prikaza:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Pretraži strane vrijednosti" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Izvedi \"upit po primjeru\" (džoker: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9278,13 +9323,13 @@ msgstr "" msgid "Manage your settings" msgstr "Opće osobine relacija" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Izmjene su spremljene" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9297,7 +9342,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9328,7 +9373,7 @@ msgstr "MySQL uspoređivanje veza" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9354,9 +9399,9 @@ msgstr "Verzija poslužitelja" msgid "Protocol version" msgstr "Verzija protokola" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Korisnik" @@ -9489,147 +9534,147 @@ msgstr "" "Poslužitelj pokrenut sa Suhosin. Proučite %sdokumentaciju%s radi mogućih " "problema." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Nema baza podataka" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "naziv tablice" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "naziv tablice" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Izradi tablicu" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Odaberite bazu podataka" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Prikaži/sakrij lijevi izbornik" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Spremi položaj" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Izradi relaciju" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Osvježi" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Pomoć" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Kutne veze" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Izravne veze" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Poravnaj s mrežom" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Malo / Sve veliko" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Malo / Veliko" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "Za odabir relacije pritisnite:" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Uvoz / Izvoz koordinate iz PDF sheme" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Podnesi upit" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Premjesti izbornik" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Prikaži / Sakrij sve" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Prikaži / Sakrij tablice bez relacija" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Broj tablica" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Izbriši relaciju" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Relacija je izbrisana" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Izvoz" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "unutar upita" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Preimenuj tablicu u" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Korisničko ime" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Izradi" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9644,61 +9689,61 @@ msgstr "Tablica %1$s je izrađena." msgid "Page creation failed" msgstr "Neuspješno kreiranje stranice" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "stranice" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Uvezi datoteke" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Uvoz / Izvor prema omjeru" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Izradi novi indeks" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Korisničko ime" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Uvoz / Izvor prema omjeru" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "preporučeno" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Pogreška: Relacija već postoji." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Pogreška: Relacija nije dodana." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Dodana je relacija FOREIGN KEY" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Dodane interne relacije" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relacija je izbrisana" @@ -9710,91 +9755,91 @@ msgstr "Pogreška tijekom spremanja koordinata za Kreatora." msgid "Modifications have been saved" msgstr "Izmjene su spremljene" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Uvezi datoteke" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Uvezi datoteke" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Sve" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "tablica %s nije pronađena ili nije zadana u %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9804,17 +9849,17 @@ msgstr "Tablica \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "Odaberite binarni zapisnik za prikaz" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Sreži prikazane rezultate" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Prikaži pune upite" @@ -9830,7 +9875,7 @@ msgstr "Položaj" msgid "Original position" msgstr "Izvorni položaj" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Podaci" @@ -9838,7 +9883,7 @@ msgstr "Podaci" msgid "Character Sets and Collations" msgstr "Tablica znakova i uspoređivanja" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9847,24 +9892,24 @@ msgstr[0] "Baza podataka %s uspješno je odbačena." msgstr[1] "Baza podataka %s uspješno je odbačena." msgstr[2] "Baza podataka %s uspješno je odbačena." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statistike baza podataka" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Omogući statistike" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9876,157 +9921,157 @@ msgstr "" msgid "Storage Engines" msgstr "Pogoni pohrane" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Prikaži ispis (shemu) baza podataka" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Moduli" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Na vrh stranice" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Dodatak" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Modul" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Biblioteka" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "Perzijski" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Autor" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Licenca" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Onemogućeno" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Obuhvaća sve privilegije osim GRANT (Podari)." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Dopušta izmjenu strukture postojećih tablice." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Dopušta izradu novih baze podataka i tablice." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Dopušta izradu pohranjenih rutina." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Dopušta izradu novih tablica." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Dopušta izradu privremenih tablica." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dopušta izradu, odbacivanje i preimenovanje korisničkih naloga." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Dopušta izradu novih prikaza." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Dopušta brisanje podataka." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Dopušta odbacivanje baza podataka i tablica." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Dopušta odbacivanje tablica." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Omogućuje postavljanje događaja za planer" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Dopušta pokretanje pohranjenih rutina." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Dopušta uvoz i izvoz podataka iz datoteka." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dopušta dodavanje korisnika i privilegija bez ponovnog učitavanja tablica." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Dopušta izradu i odbacivanje indeksa." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Dopušta umetanje i zamjenu podataka." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Dopušta zaključavanje tablica u trenutnoj grani." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ograničava broj novih povezivanja koje korisnik može otvoriti, po satu." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ograničava broj upita koje korisnik može poslati poslužitelju, po satu." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -10034,61 +10079,61 @@ msgstr "" "Ograničava broj naredbi koje korisnik može pokrenuti, a čija je namjena " "mijenjanje bilo koje tablice ili baze podataka, po satu." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Omogućuje pregledavanje procesa za sve korisnike" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Nema učinka u ovoj verziji MySQL-a." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dopušta ponovno učitavanje postavki poslužitelja i pražnjenje privremene " "pohrane poslužitelja." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dopušta korisnik postavljanje upita o lokaciji potčinjenih i gospodara." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Potrebno za replikacijske potčinjene." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Dopušta čitanje podataka." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Daje pristup cjelokupnom popisu baza podataka." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dopušta izvođenje upita SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Dopušta gašenje poslužitelja." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -10098,174 +10143,174 @@ msgstr "" "većinu administrativnih operacija poput postavljanja općih varijabli ili " "eliminiranje grana drugih korisnika." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Omogućuje izradu i uklanjanje okidača" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Dopušta mijenjanje podataka." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Bez privilegija." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "bez kompresije" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Privilegije specifične za tablicu" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Napomena: Nazivi MySQL privilegija navedeni su na engleskom jeziku" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Opće privilegije" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Privilegije specifične za bazu podataka" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Ograničenja resursa" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Napomena: Postavljanje ovih opcija na vrijednost 0 (nula) uklanja " "ograničenje." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "_Podaci prijave" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Ne mijenjaj lozinku" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnici nisu pronađeni." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Opozvali ste privilegije za %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s uspješno je promijenjena." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Brisanje %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Nema odabranih korisnika za uklanjanje!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Ponovno učitavanje privilegija" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Odabrani korisnici uspješno su izbrisani." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspješno učitane." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Uredi privilegije" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Opozovi" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Izvoz" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Privilegije" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Pregled korisnika" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Podarivanje" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Ukloni odabrane korisnike" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10278,145 +10323,145 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Privilegije specifične za stupac" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Dodaj privilegije za sljedeće baze podataka" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Dodaj privilegije za sljedeću tablicu" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Promjena podataka prijave / Kopiranje korisnika" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Izradi novog korisnika s istim privilegijama i..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... zadržati staru." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... izbriši starog iz korisničkih tablica." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Baza podataka za korisnika" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "Izradi bazu podataka istog naziva i podari sve privilegije" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu podataka \"%s\"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup u \"%s\"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "opće" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "specifično za bazu podataka" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "džoker" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "Index %s je ispušten" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Nepoznata greška" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Privilegije su uspješno učitane." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 #, fuzzy msgid "Show master status" msgstr "Prikaži stanje potčinjenog" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10425,273 +10470,273 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Odaberite bazu podataka" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Puni tekst" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full stop" msgstr "Puni tekst" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Samo strukturu" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Samo strukturu" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "greške." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Grana %s uspješno je prekinuta." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao ugasiti granu %s. Vjerojatno je već zatvorena." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Hvatišta" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Pohrana upita" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Grane" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Privremeni podaci" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Odgođena umetanja" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Pohrana ključeva" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Spojevi" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Preslagivanje" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Koordinator transakcije" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Isprazni (zatvori) sve tablice" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Prikaži otvorene tablice" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Prikaži potčinjena računala" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Prikaži stanje potčinjenog" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Isprazni pohranu upita" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Podaci o razini izvršavanja" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Osvježi" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Datoteke" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Ne mijenjaj lozinku" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Prikaži otvorene tablice" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filtriraj po kategoriji" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Prikaži otvorene tablice" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Vrsta upita" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Funkcije" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10699,57 +10744,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Izjave" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10758,47 +10803,47 @@ msgstr "" "prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti " "netočne." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Primljeno" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Poslano" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "najv. uzastopnih veza" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Neuspjeli pokušaji" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Naredba" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -10808,17 +10853,17 @@ msgstr "" "ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu " "datoteku za pohranjivanje izjava transakcija." -#: server_status.php:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10830,11 +10875,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Koliko je privremenih tablica izradio mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10842,7 +10887,7 @@ msgstr "" "Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio " "tijekom izvršavanja izjava." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10850,7 +10895,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:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10858,23 +10903,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Broj redaka zapisanih pomoću INSERT DELAYED." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih izjava FLUSH." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Broj internih izjava COMMIT." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10884,7 +10929,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:1335 +#: 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, " @@ -10894,7 +10939,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:1336 +#: server_status.php:1335 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." @@ -10902,7 +10947,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:1337 +#: server_status.php:1336 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 " @@ -10912,7 +10957,7 @@ msgstr "" "povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako " "izvodite pretraživanje indeksa." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10920,7 +10965,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:1339 +#: 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 " @@ -10932,7 +10977,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:1340 +#: server_status.php:1339 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 " @@ -10944,36 +10989,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:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih izjava ROLLBACK." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Broj zahtjeva za ažuriranje retka u tablici." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Broj zahtjeva za umetanje retka u tablici." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj stranice koje sadrže podatke (dirty ili clean)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Broj stranica koje su trenutno 'dirty'." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Broj slobodnih stranica." -#: server_status.php:1348 +#: 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 " @@ -10983,7 +11028,7 @@ msgstr "" "čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog " "drugog razloga." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10995,11 +11040,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:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Ukupna veličina međuspremnika, u stranicama." -#: server_status.php:1351 +#: 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." @@ -11007,7 +11052,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:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11015,11 +11060,11 @@ msgstr "" "Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se " "događa kad InnoDB izvodi potpuno pretraživanje tablice." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB." -#: server_status.php:1354 +#: 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." @@ -11027,7 +11072,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:1355 +#: server_status.php:1354 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 " @@ -11041,55 +11086,55 @@ msgstr "" "prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno " "postavljena, ova bi vrijednost trebala biti malenom." -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Broj dosadašnjih fsync() operacija." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Trenutan broj fsync() operacija u čekanju." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Trenutan broj čitanja u čekanju." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Trenutan broj zapisivanja u čekanju." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Ukupan broj iščitavanja podataka." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Ukupan broj zapisivanja podataka." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -11098,35 +11143,35 @@ msgstr "" "međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka " "rada." -#: server_status.php:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Broj zahtjeva za zapisivanje u zapisnik." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih zapisivanja u zapisnik." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Zapisivanja u zapisnik na čekanju." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Broj bajtova zapisanih u zapisnik." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Broj izrađenih stranica." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -11135,52 +11180,52 @@ msgstr "" "vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo " "jednostavno pretvaranje u bajtove." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Broj iščitanih stranica." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Broj zapisanih stranica." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Broj zaključavanja redaka na koje se trenutno čeka." -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redaka izbrisanih iz InnoDB tablica." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redaka umetnutih u InnoDB tablice." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Broj redaka iščitanih iz InnoDB tablica." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Broj ažuriranih redaka u InnoDB tablicama." -#: server_status.php:1387 +#: 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." @@ -11188,7 +11233,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:1388 +#: 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." @@ -11196,7 +11241,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:1389 +#: server_status.php:1388 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 " @@ -11206,17 +11251,17 @@ msgstr "" "gornje razine koja označuje najveći broj blokova koji su ikad bili u " "istovremenoj upotrebi." -#: server_status.php:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Oblikovanje uvezene datoteke" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -11227,26 +11272,26 @@ msgstr "" "promašivanja pohrane moguće je izračunati putem naredbi Key_reads/" "Key_read_requests." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -11256,17 +11301,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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11274,39 +11319,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Broj otvorenih tablica." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za pohranu upita." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Broj pronalaženja u pohrani." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Broj upita pridodanih u pohranu." -#: server_status.php:1408 +#: 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 " @@ -11319,7 +11364,7 @@ msgstr "" "nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će " "upite ukloniti iz pohrane." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11327,19 +11372,19 @@ msgstr "" "Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog " "postavke query_cache_type)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Broj upita registriranih u pohrani." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u pohrani upita." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -11347,12 +11392,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -11361,7 +11406,7 @@ msgstr "" "retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite " "indekse vaših tablica." -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11369,17 +11414,17 @@ msgstr "" "Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije " "kritično ako je ovaj iznos velik.)" -#: server_status.php:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11387,12 +11432,12 @@ msgstr "" "Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane " "replikacijske potčinjene SQL grane." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11400,14 +11445,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:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11417,23 +11462,23 @@ msgstr "" "Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti " "sistemske varijable sort_buffer_size." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Broj preslagivanja učinjenih pomoću opsega." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Broj presloženih redaka." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "Količina trenutno postignutih zaključavanja tablica." -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11445,7 +11490,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:1429 +#: server_status.php:1428 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 " @@ -11455,11 +11500,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11471,70 +11516,70 @@ msgstr "" "(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti " "primjetna poboljšanja performansi.)" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Pohrana ključeva" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Broj grana koje nisu uspavane." -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sub" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Dodaj %s polja" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Osvježi" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/Izbriši stupce polja" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Resetiraj na zadano" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11543,7 +11588,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11551,18 +11596,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11570,11 +11615,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11582,92 +11627,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Preimenuj bazu podataka u" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Odaberite tablice" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Neispravan naziv tablice" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Dodaj novog korisnika" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "SQL upit" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Statistike redova" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Odaberite tablice" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vrsta upita" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11676,7 +11721,7 @@ msgstr[0] "po sekundi" msgstr[1] "po sekundi" msgstr[2] "po sekundi" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11685,133 +11730,133 @@ msgstr[0] "u upotrebi" msgstr[1] "u upotrebi" msgstr[2] "u upotrebi" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 #, fuzzy msgid "Structure Difference" msgstr "Struktura za pregledavanje" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 #, fuzzy msgid "Data Difference" msgstr "Struktura za pregledavanje" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Dodaj stupac/stupce" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Ukloni stupac / stupce" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Ukloni indeks(e)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Primjeni indeks/indekse" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Ažuriraj redak" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Unetni redak" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Sinkroniziraj baze podataka" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL upit" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Unesi ručno" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "najv. uzastopnih veza" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Varijable i postavke poslužitelja" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Vrijednost sesije" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Opća vrijednost" @@ -12106,182 +12151,182 @@ msgstr "" msgid "Wrong data" msgstr "Nema baza podataka" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Želite li zaista " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Prikazivanje kao PHP koda" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjera valjanosti SQL-a" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL rezultat" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Generirano s" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi s indeksima tablice `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Oznaka" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s uspješno je izmijenjena." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Odabrani korisnici uspješno su izbrisani." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Ožu" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Nazivi stupaca" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Linija" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Pogoni" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Pakirano" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Naslov izvještaja" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "X-os:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "SQL upit" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Oznaka X-osi" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Vrijednost" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Vrijednost" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Tablica %s već postoji!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Tablica %1$s je izrađena." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Prikaži ispis (shemu) tablice" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Širina" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Visina" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Dodaj/Izbriši stupce polja" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Najveći broj datoteka zapisnika" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Spremi kao datoteku" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12299,31 +12344,31 @@ msgstr "Preimenovanje indeksa u PRIMARY nije moguće!" msgid "No index parts defined!" msgstr "Nema definiranih dijelova indeksa!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Dodaj indeks" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Print view" msgid "Edit index" msgstr "Prikaz ispisa" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Naziv indeksa:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" mora biti naziv i samo naziv primarnog ključa!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Vrsta indeksa:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj u indeks  %s stupci" @@ -12346,277 +12391,277 @@ msgstr "Tablica %s premještena je u %s." msgid "Table %s has been copied to %s." msgstr "Tablica %s kopirana je u %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Naziv tablice je prazan!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Izmijeni rasporede tablice po" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(pojedinačno)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Premjesti tablicu u (bazapodataka.tablica):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Opcije tablice" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Preimenuj tablicu u" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopiraj tablicu u (bazapodataka.tablica):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Prebaci se na kopiranu tablicu" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Održavanje tablice" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmentiraj tablicu" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tablica %s je ispražnjena" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Isprazni tablicu (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Izbacivanje podataka za tablicu" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Isprazni tablicu (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Nema baza podataka" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Održavanje particije" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Particija %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analiziraj" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Provjeri" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimiziraj" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Ponovno izgradi" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Popravi" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Ukloni particioniranje" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Provjeri referencijalan integritet:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Prikaži tablice" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Iskorištenost prostora" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Na snazi" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Statistike redova" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamički" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Duljina retka" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Veličina retka" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Pogreška tijekom izrade stranog ključa na %1$s (provjerite vrste podataka)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Interne relacije" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Interna relacija nije potrebna ako postoji odgovarajuća relacija FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Pretraži prepoznatljive vrijednosti" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Dodaj primarni ključ" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "bez kompresije" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tablica %s je odbačen" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Primarni ključ je dodan na %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Indeks je pridodan na %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Prikaži PHP podatke" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Ukloni stupac / stupce" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Prikaz ispisa" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Prikaz relacija" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Predloži strukturu tablice" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dodaj %s polja" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Pri završetku tablice" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Pri početku tablice" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Poslije %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "particionirano" @@ -12774,73 +12819,39 @@ msgstr "" msgid "Create version" msgstr "Izradi relaciju" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Izvedi \"upit po primjeru\" (džoker: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "SQL upit" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -msgid "How to use" -msgstr "PHP ekstenzija" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Povrat" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Raspoložive MIME vrste" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME vrste ispisane kurzivom nemaju posebnu funkciju preoblikovanja" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Raspoloživa preoblikovanja" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nemate dovoljno privilegija da boravite ovdje!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profil je ažuriran." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Naziv prikaza" diff --git a/po/hu.po b/po/hu.po index 35ab5db650..b35b0862fa 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-28 00:57+0200\n" "Last-Translator: Róbert Nagy \n" "Language-Team: hungarian \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Összes megjelenítése" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Oldalszám:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ 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:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Indítás" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Kulcsnév" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Leírás" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Ezen érték használata" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "A(z) %1$s adatbázis elkészült." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Megjegyzés az adatbázishoz: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Tábla megjegyzése" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Oszlop" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Nulla" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Alapértelmezett" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Hivatkozás" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Megjegyzések" @@ -197,14 +198,14 @@ msgstr "Megjegyzések" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nem" @@ -217,122 +218,122 @@ msgstr "Nem" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Igen" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Adatbázis kiírás (vázlat) megtekintése" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Nem található tábla az adatbázisban." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Mind kijelölése" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Mind törlése" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Üres az adatbázis neve!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "A(z) %s adatbázis átnevezése %s névre megtörtént" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "A(z) %s adatbázis másolása a(z) %s adatbázisba megtörtént" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Adatbázis átnevezése" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Adatbázis eltávolítása" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "A(z) %s adatbázis eldobása megtörtént." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Adatbázis eldobása (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Adatbázis másolása" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Csak a szerkezet" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Szerkezet és adatok" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Csak az adatok" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE másolás előtt" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "%s hozzáadása" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT érték hozzáadása" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Megszorítás hozzáadása" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "A másolt adatbázisra váltás" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Illesztés" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -341,59 +342,59 @@ msgstr "" "A phpMyAdmin konfigurációs tárolója deaktiválva lett. Ha szeretné megtudni, " "hogy miért, kattintson %side%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Kapcsolati séma szerkesztése, exportálása" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tábla" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Sorok" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Méret" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "használatban" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Létrehozás" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Utolsó frissítés" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Utolsó ellenőrzés" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -404,117 +405,117 @@ msgstr[1] "%s táblák" msgid "You have to choose at least one column to display" msgstr "Ki kell legalább egy megjelenítendő oszlopot választania" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Átváltás a %svizuális tervezőre%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Rendezés" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Növekvő" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Csökkenő" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Megjelenítés" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Feltételek" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Beszúrás" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "És" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Törlés" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Vagy" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Módosítás" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Feltételsor hozzáadása/törlése" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Oszlopok hozzáadása/törlése" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Lekérdezés frissítése" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Felhasználandó táblák" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-lekérdezés a(z) %s adatbázison:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Lekérdezés indítása" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "A hozzáférés megtagadva" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "legalább az egyik szó" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "minden szó" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "a pontos kifejezés" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "reguláris kifejezésként" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Keresési eredmények \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -523,93 +524,93 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, 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:289 +#: db_search.php:292 msgid "Search in database" msgstr "Keresés az adatbázisban" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Keresendő szavak vagy értékek (karakterhelyettesítő: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Keresés:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "A szavak elválasztása szóköz karakterrel (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Belső táblák:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Mezőben:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Nem található tábla az adatbázisban" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "ismeretlen" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "A(z) %s tábla kiürítése megtörtént" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "A(z) %s nézet eldobása kész" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "A(z) %s tábla eldobása megtörtént" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Nyomkövetés aktív." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Nyomkövetés inaktív." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -618,185 +619,186 @@ 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." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Többszörözés" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Összeg" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Mind kijelölése" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "A felülírott táblák kijelölése" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportálás" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Nyomtatási nézet" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Kiürítés" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Eldobás" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Tábla ellenőrzése" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Tábla optimalizálása" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Tábla javítása" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Tábla elemzése" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Előtag hozzáadása a táblához" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Tábla előtagjának lecserélése" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Tábla másolása előtaggal" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Adatkönyvtár" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Nyomon követett táblák" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Adatbázis" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Legutolsó verzió" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Létrehozva" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "frissítve" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Állapot" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Művelet" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Tábla nyomkövetési adatainak törlése" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "aktív" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "nem aktív" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Verziók" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Nyomkövetési jelentés" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Szerkezeti pillanatkép" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Nem követett táblák" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Tábla nyomon követése" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Adatbázis Log" @@ -808,16 +810,16 @@ msgstr "Rossz típus!" msgid "Selected export type has to be saved in file!" msgstr "Fájlban kell menteni a kiválasztott exportálási típust!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Rossz paraméterek!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Kevés a hely a(z) %s fájl mentéséhez." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -825,12 +827,12 @@ msgstr "" "Már létezik %s fájl a szerveren, változtassa meg a fájlnevet, vagy állítsa " "be a felülírási opciót!" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "A webszerver számára nem engedélyezett a(z) %s fájl mentése." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." @@ -839,88 +841,88 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." msgid "Invalid export type" msgstr "Érvénytelen export típus" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" oszlop értéke" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "OpenStreetMaps használata alaprétegként" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Pont" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "%d. pont" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Pont hozzáadása" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Sorok vége" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Külső gyűrű" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Belső gyűrű" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Új sorvég hozzáadása" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Belső gyűrű hozzáadása" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Sokszög" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Sokszög hozzáadása" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Geometria hozzáadása" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Kimenet" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -928,7 +930,7 @@ msgstr "" "Válassza a \"GeomFromText\"-et a \"Függvény\" oszlopból és illessze be az " "alábbi karakterláncot az \"Érték\" mezőbe" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -937,21 +939,21 @@ 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." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Könyvjelző megjelenítése" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "A könyvjelző törlése megtörtént." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Nem lehetett beolvasni a fájlt" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -960,7 +962,7 @@ msgstr "" "Ön nem támogatott tömörítésű (%s) fájlt kísérelt meg betölteni. Vagy nem " "valósították meg a támogatását, vagy letiltják a beállítások." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -970,31 +972,31 @@ msgstr "" "vagy a fájlméret túllépte a PHP beállításokban engedélyezett legnagyobb " "méretet. Lásd [a@./Documentation.html#faq1_16@Documentation]GYIK 1.16.[/a].." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Nem konvertálható a fájl karakterkészlete a karakterkészlet konvertáló " "könyvtár nélkül" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nem lehetett betölteni az importáló beépülő modulokat. Kérjük, ellenőrizze a " "telepítését!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "A(z) %s könyvjelző elkészült" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" "Az importálás sikeresen befejeződött, %d lekérdezés került végrehajtásra." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1002,7 +1004,7 @@ msgstr "" "Script időtúllépés történt, ha be akarja fejezni az importálást, akkor " "küldje újra ugyanazt a fájlt és az importálás folytatódni fog." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1011,23 +1013,23 @@ msgstr "" "jelenti, hogy a phpMyAdmin nem tudja befejezni ezt az importálást, ha Ön nem " "növeli meg a PHP időkorlátozását." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Vissza" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "A phpMyAdmin keretkezelő böngészőben használhatóbb." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "A \"DROP DATABASE\" utasítást letiltották." @@ -1037,7 +1039,7 @@ msgstr "A \"DROP DATABASE\" utasítást letiltották." msgid "Do you really want to execute \"%s\"?" msgstr "Valóban a következőt akarja " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!" @@ -1077,7 +1079,7 @@ msgstr "Index hozzáadása" msgid "Edit Index" msgstr "Index szerkesztése" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "%d oszlop hozzáadása az indexhez" @@ -1095,16 +1097,16 @@ msgstr "A hosztnév üres!" msgid "The user name is empty!" msgstr "Üres a felhasználónév!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Üres a jelszó mező!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Nem egyeznek a jelszavak!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Felhasználó hozzáadása" @@ -1121,23 +1123,24 @@ msgstr "A kijelölt felhasználók törlése" msgid "Close" msgstr "Bezárás" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Módosítás" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Élő forgalomgrafikon" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -1149,24 +1152,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Összesen" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Egyéb" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1186,7 +1189,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Folyamatok" @@ -1204,7 +1207,7 @@ msgstr "Kérdések a legutóbbi frissítés óta" msgid "Questions (executed statements by the server)" msgstr "Kérdések (a kiszolgáló által végrehajtott lekérdezések)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Lekérdezések statisztikája" @@ -1247,14 +1250,14 @@ msgid "System swap" msgstr "Rendszer lapozófájl" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1306,32 +1309,32 @@ msgstr "Bájt elküldve" msgid "Bytes received" msgstr "Fogadott bájtok" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Kapcsolatok" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1345,11 +1348,11 @@ msgstr "%d tábla" msgid "Questions" msgstr "Kérdések" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Forgalom" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Beállítások" @@ -1369,11 +1372,11 @@ msgstr "Diagram hozzáadása" msgid "Please add at least one variable to the series" msgstr "Legalább egy változót adjon meg a sorozathoz" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Nincs" @@ -1471,7 +1474,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:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Diagramcím" @@ -1551,7 +1554,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Idő" @@ -1645,10 +1648,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importálás" @@ -1700,9 +1703,9 @@ msgstr "Használt változó / képlet" msgid "Test" msgstr "Teszt" -#: 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 +#: 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 msgid "Cancel" msgstr "Mégse" @@ -1714,11 +1717,11 @@ msgstr "Betöltés" msgid "Processing Request" msgstr "Kérés feldolgozása" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Hiba a kérés feldolgozásában" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Nincs kiválasztott adatbázis." @@ -1730,9 +1733,9 @@ msgstr "Oszlop törlése" msgid "Adding Primary Key" msgstr "Elsődleges kulcs hozzáadása" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1772,19 +1775,19 @@ msgstr "Indexek elrejtése" msgid "Show indexes" msgstr "Indexek megjelenítése" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Az idegen kulcsok ellenőrzésének letiltása" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Engedélyezett" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1814,7 +1817,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET szerkesztő" @@ -1855,8 +1858,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/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Módosítás" @@ -1864,18 +1867,18 @@ msgstr "Módosítás" msgid "Query execution time" msgstr "A lekérdezés végrehajtási ideje" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Mentés" @@ -1887,7 +1890,7 @@ msgstr "Keresési kritériumok elrejtése" msgid "Show search criteria" msgstr "Keresési kritériumok mutatása" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1937,12 +1940,12 @@ msgstr "Műveletek a lekérdezési eredménnyel" msgid "Data point content" msgstr "Adatmutató mérete" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Kihagyás" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Másolás" @@ -1962,7 +1965,7 @@ msgstr "Idegen kulcs kiválasztása" msgid "Please select the primary key or a unique key" msgstr "Válassza ki az elsődleges kulcsot, vagy egy egyedi kulcsot" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Válassza ki a megjelenítendő oszlopot" @@ -2051,7 +2054,7 @@ msgstr "Generálás" msgid "Change Password" msgstr "Jelszó megváltoztatása" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Több" @@ -2142,63 +2145,63 @@ msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "jan." #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "febr." #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "márc." #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "ápr." #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "máj." #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "jún." #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "júl." #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "aug." #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "szept." #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "okt." #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "nov." #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "dec." @@ -2236,32 +2239,32 @@ msgid "Sun" msgstr "Vas" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Hét" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Ked" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Csü" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Pén" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Szo" @@ -2377,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "másodpercenként" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "percenként" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "óránként" @@ -2407,21 +2410,219 @@ msgstr "" msgid "Font size" msgstr "Betűméret" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "A módosított adatok mentése" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Textarea columns" +msgid "Restore column order" +msgstr "Szövegterület oszlopai" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "A tetejére" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Előző" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Következő" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Vége" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Indítás" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Sorok száma" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Mód" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "vízszintesen" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "vízszintesen (elforgatott fejlécek)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "függőlegesen" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute every" +msgid "Headers every %s rows" +msgstr "Végrehajtás minden" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Kulcs szerinti rendezés" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Beállítások" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Részleges szövegek" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Teljes szövegek" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Relációs kulcs" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational display field" +msgid "Relational display column" +msgstr "Relációs megjelenítési mező" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Bináris tartalom megjelenítése" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "BLOB-tartalom megjelenítése" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Bináris tartalom megjelenítése HEX-ként" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Böngésző átalakítása" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Leállít" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Becsült érték lehet. Lásd [a@./Documentation.html#faq3_11@Documentation]GyIK " +"3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "lekérdezésben" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Megjelenített sorok:" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "összesen" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "a lekérdezés %01.4f másodpercig tartott" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Műveletek a lekérdezési eredménnyel" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Nyomtatási nézet (teljes szöveggel)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Diagram megjelenítése" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Nézet létrehozása" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Nem található a hivatkozás" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "A feltöltött fájl mérete túllépi a php.ini fájlban megadott " "upload_max_filesize utasítást." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2429,27 +2630,27 @@ msgstr "" "A feltöltött fájl mérete túllépi a HTML űrlapban megadott MAX_FILE_SIZE " "utasítást." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "A feltöltött fájl csak részben került feltöltésre." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Hiányzik egy ideiglenes mappa." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Nem sikerült lemezre írni a fájlt." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "A fájlfeltöltés kiterjesztés alapján leállt." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Ismeretlen hiba a fájlfeltöltésben." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2457,26 +2658,41 @@ msgstr "" "Hiba történt a feltöltött fájl áthelyezésekor, lásd [a@./Documentation." "html#faq1_11@Documentation]GyIK 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Új phpMyAdmin ablak nyitása" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indexek" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Egyedi" @@ -2489,8 +2705,8 @@ msgstr "Csomagolt" msgid "Cardinality" msgstr "Számosság" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Megjegyzés" @@ -2513,128 +2729,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Adatbázisok" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Kiszolgáló" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Szerkezet" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Beszúrás" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Műveletek" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Követés" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Üresnek tűnik a tábla!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Üresnek tűnik az adatbázis!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Lekérdezés" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Jogok" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Eljárások" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Események" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Tervező" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Felhasználók" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Bináris napló" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Változók" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Karakterkészlet" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Bővítmények" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Motorok" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Hiba" @@ -2659,7 +2875,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "A(z) %1$d sor beszúrása megtörtént." msgstr[1] "A(z) %1$d sor beszúrása megtörtént." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Hiba történt a PDF létrehozása közben:" @@ -2754,16 +2970,106 @@ 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 +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 +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 +msgid "Value" +msgstr "Érték" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Keresés" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Szerkesztés/Beszúrás" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Válasszon oszlopokat (legalább egyet):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "adja meg a keresési feltételeket (a \"where\" feltétel törzsét):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Sorok száma oldalanként" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Megjelenítési sorrend:" + +#: libraries/TableSearch.class.php:813 +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 "A megjelenítendő sorok száma" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Az idegen kulcsok böngészése" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "További keresési feltételek" + +#: 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 "" +"Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" +"Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Hogyan kell használni" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Visszaállítás" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nincs érvényes kép elérési útja a(z) %s témának!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Nincs előnézet." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "csináld" @@ -2782,7 +3088,7 @@ msgstr "Nem található a(z) %s téma!" msgid "Theme path not found for theme %s!" msgstr "Nem található a(z) %s téma elérési útja!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Téma" @@ -3081,13 +3387,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Nem lehet csatlakozni: érvénytelenek a beállítások." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Üdvözli a %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3096,7 +3402,7 @@ 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." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3112,62 +3418,56 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Belépés" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Az állomásnevet/IP-címet és a port számát szóközzel elválasztva írhatja be." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Szerver" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Felhasználónév:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Jelszó:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Szerver választása" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "A konfiguráció tiltja a jelszó nélküli bejelentkezést (lásd AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Nem volt tevékenység %s másodperce; jelentkezzen be újra" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Nem lehet bejelentkezni a MySQL szerverre" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Hibás felhasználónév/jelszó. A hozzáférés megtagadva." @@ -3201,7 +3501,7 @@ msgstr "megosztott" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Táblák" @@ -3213,13 +3513,13 @@ msgstr "Táblák" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Adatok" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Felülírás" @@ -3244,30 +3544,22 @@ msgstr "A(z) "%s" adatbázis jogainak ellenőrzése." msgid "Check Privileges" msgstr "Jogok ellenőrzése" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "A beállítófájl olvasása meghiúsult" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nem lehetett betölteni az alapértelmezett konfigurációt innen: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3279,210 +3571,192 @@ msgstr "" "A $cfg['PmaAbsoluteUri'] utasítás értékét a konfigurációs " "fájlban KELL megadni!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Érvénytelen szerverindex: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "A(z) %1$s szerver hosztneve érvénytelen. Ellenőrizze a beállításokat." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Érvénytelen hitelesítési mód került beállításra a konfigurációban:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Frissítenie kell %s %s vagy újabb verzióra." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentáció" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-lekérdezés" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "A MySQL mondta: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Nem lehetett kapcsolódni a MySQL-validátorhoz" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Az SQL magyarázata" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "SQL magyarázat átugrása" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP kód nélkül" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-kód létrehozása" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Frissítés" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL érvényesítés átugrása" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL érvényesítése" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "lekérdezés inline szerkesztése" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Belső" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Adatgyűjtés" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Vas" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y. %B %d. %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s nap, %s óra, %s perc, %s másodperc" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Hiányzó paraméter:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "A tetejére" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Előző" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Következő" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Vége" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Ugrás a(z) "%s" adatbázishoz." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Kattintson a kijelöléshez." -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Számítógép tallózása:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format 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:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Nem elérhető a feltöltésekhez megadott könyvtár" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Nincsenek feltöltendő fájlok" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Végrehajtás" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Nyomtatás" @@ -3512,8 +3786,8 @@ msgid "Closed" msgstr "Zárt" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Letiltott" @@ -3655,9 +3929,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Visszaállítás" @@ -3880,10 +4154,6 @@ msgstr "Táblaszerkezet ajánlása" msgid "Show binary contents as HEX by default" msgstr "Bináris tartalom megjelenítése HEX-ként, mint alapértelmezett" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Bináris tartalom megjelenítése HEX-ként" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Az adatbázisok legördülő helyett listaként történő megjelenítése" @@ -3940,7 +4210,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Végrehajtási idő legfeljebb" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Mentés fájlként" @@ -3949,7 +4219,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formátum" @@ -4053,7 +4323,7 @@ msgid "MIME type" msgstr "MIME-típus" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Kapcsolatok" @@ -5683,9 +5953,9 @@ msgstr "Szükséges az SQL Validator engedélyezése" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Jelszó" @@ -5969,14 +6239,6 @@ msgstr "" msgid "Details..." msgstr "Részletek..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Becsült érték lehet. Lásd [a@./Documentation.html#faq3_11@Documentation]GyIK " -"3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -5985,18 +6247,18 @@ msgstr "" "sikerült." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Jelszó megváltoztatása" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Nincs jelszó" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Újraírás" @@ -6017,22 +6279,22 @@ msgstr "Adatbázis létrehozása" msgid "Create" msgstr "Létrehozás" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Nincs jog" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Név" @@ -6191,26 +6453,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Átkódoló motor" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version" msgid "committed on %1$s by %2$s" msgstr "Verzió létrehozása" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version" msgid "authored on %1$s by %2$s" @@ -6327,181 +6589,27 @@ msgstr "Formátum specifikus beállítások:" msgid "Language" msgstr "Nyelv" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "A módosított adatok mentése" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Textarea columns" -msgid "Restore column order" -msgstr "Szövegterület oszlopai" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Indítás" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Sorok száma" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Mód" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "vízszintesen" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "vízszintesen (elforgatott fejlécek)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "függőlegesen" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute every" -msgid "Headers every %s rows" -msgstr "Végrehajtás minden" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Kulcs szerinti rendezés" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Beállítások" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Részleges szövegek" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Teljes szövegek" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Relációs kulcs" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational display field" -msgid "Relational display column" -msgstr "Relációs megjelenítési mező" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Bináris tartalom megjelenítése" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "BLOB-tartalom megjelenítése" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Böngésző átalakítása" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "A sor törlése megtörtént" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Leállít" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "lekérdezésben" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Megjelenített sorok:" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "összesen" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "a lekérdezés %01.4f másodpercig tartott" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Műveletek a lekérdezési eredménnyel" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Nyomtatási nézet (teljes szöveggel)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Diagram megjelenítése" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Nézet létrehozása" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Nem található a hivatkozás" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Verziószám" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Adatok kezdőkönyvtára" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Az összes InnoDB adatfájl könyvtára elérési útjának közös része." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Adatfájlok" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Növekmény automatikus bővítése" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6509,11 +6617,11 @@ msgstr "" "A növekmény mérete egy automatikusan bővülő táblahely méretének bővítéséhez, " "amikor megtelik." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Pufferkészlet mérete" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6521,79 +6629,79 @@ msgstr "" "Az InnoDB által a táblák adatainak és indexeinek gyorsítótárazásához " "használt memóriapuffer mérete." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Pufferkészlet" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB állapota" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Pufferkészlet kihasználtsága" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "lapok" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Szabad lapok" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Piszkos lapok" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Adatokat tartalmazó lapok" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Kiírandó oldalak" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Foglalt oldalak" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Zárolt oldalak" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Pufferkészlet művelete" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Olvasási kérések" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Írási kérések" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Olvasási hibák" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Írási várakozások" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Olvasási hibák %-ban" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Írási várakozások %-ban" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Adatmutató mérete" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6601,11 +6709,11 @@ msgstr "" "Az alapértelmezett mutató mérete bájtban, a CREATE TABLE által a MyISAM " "táblákhoz, ha nem adták meg a MAX_ROWS beállítás értékét." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Automatikus helyreállítási mód" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6613,11 +6721,11 @@ msgstr "" "Az összeomlott MyISAM táblák automatikus helyreállítási módja, a --myisam-" "recover szerver indítási beállításnál megadottak szerint." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Az ideiglenes rendezőfájlok mérete legfeljebb" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6626,11 +6734,11 @@ msgstr "" "A MySQL által engedélyezett ideiglenes fájl legnagyobb mérete a MyISAM index " "újralétrehozásakor (REPAIR TABLE, ALTER TABLE vagy LOAD DATA INFILE során)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Index készítésekor az ideiglenes fájlok mérete legfeljebb" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6640,11 +6748,11 @@ msgstr "" "megadott érték által használt kulcsgyorsítótárnál, akkor részesítse előnyben " "a kulcsgyorsítótár módszert." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Szálak kijavítása" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6653,11 +6761,11 @@ msgstr "" "tároló folyamat által párhuzamosan (mindegyik index a saját szálában) " "történik a javítás során." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Rendezőpuffer mérete" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6666,11 +6774,11 @@ msgstr "" "vagy az indexek CREATE INDEX vagy ALTER TABLE paranccsal történő " "készítésekor." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Indexgyorsítótár mérete" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6679,11 +6787,11 @@ msgstr "" "alapértelmezett érték 32 MB. Az itt lefoglalt memória kerül felhasználásra " "az indexoldalak gyorsítótárazásához." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Rekordgyorsítótár mérete" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6694,11 +6802,11 @@ msgstr "" "kerül felhasználásra az adat (.xtd) és a sormutató (.xtr) fájlok kezeléséhez " "szükséges változások gyorsítótárazásához." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Naplógyorsítótár mérete" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6706,11 +6814,11 @@ msgstr "" "A tranzakciónapló gyorsítótárához lefoglalt, a tranzakciónapló adatainak " "gyorsítótárazásához használt memória mennyisége. Alapértelmezés: 16 MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Naplófájl küszöbértéke" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6718,11 +6826,11 @@ msgstr "" "A tranzakciónapló váltás előtti mérete, s egy új napló készül. Az " "alapértelmezett érték 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Tranzakció puffer mérete" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6730,11 +6838,11 @@ msgstr "" "A globális tranzakciónapló pufferének mérete (a motor 2 ilyen méretű puffert " "foglal le). Alapértelmezés: 1 MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Ellenőrzőpont gyakorisága" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6742,11 +6850,11 @@ msgstr "" "Az ellenőrzőpont végrehajtása előtt a tranzakciónaplóba írt adatok " "mennyisége. Az alapértelmezés 24 MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Adatnapló küszöbértéke" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6758,11 +6866,11 @@ msgstr "" "használ. Így ennek a változónak az értéke növelhető, hogy növelje az " "adatbázisban tárolható adatok összes mennyiségét." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Szemét küszöbértéke" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6770,11 +6878,11 @@ msgstr "" "Az adatnaplófájlban lévő szemét tömörítés előtti százalékaránya. Ez 1 és 99 " "közti érték. Alapértelmezés: 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Napló gyorsítótárának mérete" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6784,27 +6892,27 @@ msgstr "" "motor szálanként egy puffert foglal le, de csak akkor, ha a szálnak írnia " "kell az adatnaplóba." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Az adatfájl növekedési mérete" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Az adatkezelő (.xtd) fájlok növekedési mérete." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Sorfájl növekedési mérete" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "A sormutató (.xtr) fájlok növekedési mérete." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Naplófájlok száma" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6816,20 +6924,20 @@ msgstr "" "törli, egyéb esetben átnevezi őket, és a következő legnagyobb számot adja " "nekik." -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Kapcsolatok" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6876,14 +6984,14 @@ msgstr "A tábla adatainak kiíratása" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Esemény" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6945,14 +7053,14 @@ msgstr "MIME-típusok megjelenítése" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Hoszt" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Létrehozás ideje" @@ -7164,23 +7272,14 @@ msgstr "Nézetek" msgid "Export contents" msgstr "Tartalom exportálása" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Új phpMyAdmin ablak nyitása" - #: libraries/gis_visualization.lib.php:135 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." msgstr "Nem található adat a grafikonhoz" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7277,12 +7376,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Tábla neve" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Oszlopnevek" @@ -7350,93 +7449,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Függvény" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Elrejtés" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Bináris" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Bináris - nem szerkeszthető" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "webszerver feltöltési könyvtár" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Szerkesztés/Beszúrás" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Beszúrás folytatása a(z) %s sorokkal" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "és utána" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Beszúrás új sorként" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 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:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Beillesztő lekérdezés megjelenítése" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Vissza az előző oldalra" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Új sor beszúrása" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Visszatérés erre az oldalra" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Következő sor szerkesztése" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Érték" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" @@ -7451,34 +7534,34 @@ msgstr "Nincs" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Ettől" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Indítás" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Valóban a következőt akarja " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Nincs változás" @@ -7688,89 +7771,89 @@ msgstr "A navigációs keret újratöltése" msgid "This format has no options" msgstr "Ennek a formátumnak nincsenek beállításai" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Nincs rendben" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Engedélyezett" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Általános relációs jellemzők" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Tulajdonságok megjelenítése" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF készítése" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Oszlopmegjegyzések megjelenítése" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Böngésző átalakítása" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" 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:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Könyvjelzőkhöz hozzáadott SQL-lekérdezés" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-előzmények" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Állandó kapcsolatok" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Felhasználói beállítások" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Gyors lépések a haladó funkciók beállításához:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Hozza létre a kívánt táblákat a examples/create_tables.sql " "használatával." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" "Hozzon létre egy pma felhasználót és adjon hozzáférést ezekhez a táblákhoz." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7778,12 +7861,12 @@ msgstr "" "Engedélyezze a haladó funkciókat a beállító fájlban (config.inc.php), például induljon ki a config.sample.inc.php fájlból." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Jelentkezzen be újra a phpMyAdminba a frissített beállítófájl betöltéséhez." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "nincs leírás" @@ -7792,7 +7875,7 @@ msgstr "nincs leírás" msgid "Slave configuration" msgstr "Szerverbeállítások" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7804,13 +7887,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Felhasználónév" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Rendezés" @@ -7824,7 +7907,7 @@ msgid "Slave status" msgstr "Másodlagos állapot" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Változó" @@ -7838,38 +7921,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Szöveges mező használata" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Bármilyen hoszt" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Helyi" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Ez a hoszt" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Hoszt-tábla használata" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7885,7 +7968,7 @@ msgstr "Jelszó generálása" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7916,94 +7999,95 @@ msgstr "A(z) %1$s esemény létrejött." 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:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Esemény módosítása" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Hiba a kérés feldolgozásában" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Részletek" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Eseménynév" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Esemény típusa" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Módosítás erre: %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Végrehajtás minden" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Indítás" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Vége" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "teljes beillesztések" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Új" @@ -8034,7 +8118,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Érvénytelen eljárástípus: \"%s\"" @@ -8055,116 +8139,116 @@ msgstr "A(z) %s oszlop eldobása megtörtént" msgid "Routine %1$s has been created." msgstr "A(z) %1$s tábla elkészült." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Eljárás szerkesztése" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Eljárás neve" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Paraméterek" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Közvetlen hivatkozások" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Hossz/Érték*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Paraméter hozzáadása" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Adatbázis eltávolítása" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Típus visszaadása" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Hossz/Érték*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tábla beállításai" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Biztonság" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, 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:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Eljárás paraméterei" @@ -8184,44 +8268,44 @@ msgstr "A(z) %s oszlop eldobása megtörtént" msgid "Trigger %1$s has been created." msgstr "A(z) %1$s tábla elkészült." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new server" msgid "Edit trigger" msgstr "Új szerver hozzáadása" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Eseményindítók" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Idő" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Érvénytelen táblanév" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8314,7 +8398,7 @@ msgstr "Nincsen megjeleníthető esemény." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8323,7 +8407,7 @@ msgstr "A(z) \"%s\" tábla nem létezik!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8331,7 +8415,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Állítsa be a(z) %s tábla koordinátáit" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8342,27 +8426,27 @@ msgstr "A(z) \"%s\" adatbázis sémája - %s. oldal" msgid "This page does not contain any tables!" msgstr "Ez az oldal nem tartalmaz egyetlen táblát sem!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "SÉMA HIBA: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Kapcsolati séma" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Tartalomjegyzék" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Tulajdonságok" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8472,7 +8556,7 @@ msgstr "Ismeretlen nyelv: %1$s." msgid "Current Server" msgstr "Jelenlegi kiszolgáló" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Forrás adatbázis" @@ -8490,7 +8574,7 @@ msgstr "Távoli szerver" msgid "Difference" msgstr "Különbség" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Cél adatbázis" @@ -8509,7 +8593,7 @@ msgstr "A(z) %s szerveren lefuttatandó SQL lekérdezés(ek)" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Törlés" @@ -8518,11 +8602,11 @@ msgstr "Törlés" msgid "Columns" msgstr "Oszlopok" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 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 " @@ -8622,7 +8706,7 @@ msgstr "" "%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" "kiterjesztést." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8649,8 +8733,8 @@ msgstr "" "karakter vagy idézőjelek nélkül, a következő formátum használatával: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Index" @@ -8702,13 +8786,13 @@ msgstr "Nincs" msgid "As defined:" msgstr "Mint meghatározva:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Elsődleges" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Teljes szöveg" @@ -8722,17 +8806,17 @@ msgstr "" msgid "after %s" msgstr "%s után" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "%s oszlop hozzáadása" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Legalább egy oszlopot kell hozzáadnia." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Tárolómotor" @@ -8740,44 +8824,6 @@ msgstr "Tárolómotor" msgid "PARTITION definition" msgstr "PARTITION definíció" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Keresés" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Válasszon oszlopokat (legalább egyet):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "adja meg a keresési feltételeket (a \"where\" feltétel törzsét):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Sorok száma oldalanként" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Megjelenítési sorrend:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Az idegen kulcsok böngészése" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" -"Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8940,11 +8986,11 @@ msgstr "" msgid "Manage your settings" msgstr "Beállítások kezelése" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "A módosítások mentése megtörtént" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8957,7 +9003,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Nem menthetők el a módosítások" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8984,7 +9030,7 @@ msgstr "Kiszolgálókapcsolat illesztése" msgid "Appearance Settings" msgstr "Megjelenési beállítások" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "További beállítások" @@ -9004,9 +9050,9 @@ msgstr "Szoftver verzió" msgid "Protocol version" msgstr "Protokoll verzió" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Felhasználó" @@ -9152,136 +9198,136 @@ 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:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Nincs adatbázis" -#: navigation.php:222 +#: navigation.php:170 #, 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:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Tábla rendezésének módosítása e szerint:" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Tábla létrehozása" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Válasszon adatbázist" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Bal oldali menü megjelenítése/elrejtése" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Pozíció mentése" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Kapcsolat létrehozása" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Újratöltés" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Súgó" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Összeférhetetlen hivatkozások" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Közvetlen hivatkozások" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Rácshoz illesztés" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Mind kicsi/nagy" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Kicsi/nagy kapcsoló" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "A kapcsolat kiválasztásához, kattintson :" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "A PDF-séma importálási/exportálási koordinátái" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Lekérdezés készítése" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Menü áthelyezése" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Minden elrejtése/megjelenítése" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "A kapcsolat nélküli táblák megjelenítése/elrejtése" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Táblák száma" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Kapcsolat törlése" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Kapcsolat operátor" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Exportálás" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "allekérdezés" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy #| msgid "Rename view to" msgid "Rename to" msgstr "Nézet átnevezése" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Új név" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Összegzés" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9295,51 +9341,51 @@ msgstr "Az oldal elkészült" msgid "Page creation failed" msgstr "Az oldal létrehozása meghiúsult" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Oldal" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Importálás a kiválasztott oldalakról" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Exportálás a kiválasztott oldalakra" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Oldal létrehozása és exportálás arra" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Új oldal neve: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Méretezendő exportálás/importálás" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "ajánlott" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Hiba: A kapcsolat már létezik." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Hiba: Nem adta hozzá a kapcsolatot." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "IDEGEN KULCS kapcsolat hozzáadása megtörtént" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "A belső kapcsolat hozzáadása megtörtént" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "A kapcsolat törlése kész" @@ -9351,51 +9397,51 @@ msgstr "Hiba történt a Tervező koordinátáinak mentésekor." msgid "Modifications have been saved" msgstr "A módosítások mentése megtörtént" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "A beállítások nem menthetők, az elküldött űrlap hibákat tartalmaz" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Nem importálhatók a beállítások" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "A beállítás rossz adatot tartalmaz néhány mezőben." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Szeretné importálni a megmaradt beállításokat?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importálás fájlból" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Importálás a böngészőből" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "A beállítások a böngészője helyi tárolójából lesznek importálva." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Nincsenek elmentett beállításai!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Az ön web böngészője nem támogatja ezt a szolgáltatást" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Egyesítés a jelenlegi beállítással" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9404,39 +9450,39 @@ 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." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Mentés a böngésző tárolójába" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "A beállítások a böngészője helyi tárolójába lesznek mentve." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "A meglévő beállítások felülíródnak!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Alaphelyzetbe állíthatja az összes beállítását és visszaállíthatja azokat az " "alapértelmezett értékekre." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Fájlok importálása" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Mind" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" "Nem található a(z) %s tábla, vagy nem adták meg a(z) %s adatbázisban" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "A fájl nem létezik" @@ -9444,17 +9490,17 @@ msgstr "A fájl nem létezik" msgid "Select binary log to view" msgstr "Válassza ki a megtekintendő bináris naplót" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Fájlok" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 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:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Teljes lekérdezések megjelenítése" @@ -9470,7 +9516,7 @@ msgstr "Pozíció" msgid "Original position" msgstr "Eredeti pozíció" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Információ" @@ -9478,7 +9524,7 @@ msgstr "Információ" msgid "Character Sets and Collations" msgstr "Karakterkészletek és illesztések" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9486,24 +9532,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "A(z) %s adatbázis eldobása sikerült." msgstr[1] "A(z) %s adatbázis eldobása sikerült." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Adatbázis-statisztika" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Statisztika engedélyezése" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9515,157 +9561,157 @@ msgstr "" msgid "Storage Engines" msgstr "Tárolómotorok" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Adatbázis kiírás (séma) megtekintése" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Modulok" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "A tetejére" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Bővítmény" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Modul" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Könyvtár" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Verzió" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Szerző" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Licenc" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "letiltott" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "A GRANT kivételével minden jogot tartalmaz." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Engedélyezi a létező táblák szerkezetének megváltoztatását." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Engedélyezi a tárolt eljárások módosítását és eldobását." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Engedélyezi új adatbázisok és táblák készítését." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Engedélyezi tárolt eljárások létrehozását." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Engedélyezi új táblák készítését." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Engedélyezi ideiglenes táblák készítését." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Engedélyezi a felhasználói fiókok létrehozását, törlését és átnevezését." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Engedélyezi új nézetek létrehozását." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Engedélyezi az adatok törlését." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Engedélyezi az adatbázisok és táblák eldobását." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Engedélyezi a táblák eldobását." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Az eseményütemező eseményeinek beállítását teszi lehetővé" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Engedélyezi a tárolt eljárások végrehajtását." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Engedélyezi az adatok fájlokba történő exportálását/importálását." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "A privilégium táblák újratöltése nélkül engedélyezi a felhasználók és jogok " "hozzáadását." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Engedélyezi indexek készítését és törlését." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Engedélyezi az adatok beírását és megváltoztatását." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "A jelenlegi szálon engedélyezi a táblák blokkolását." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Korlátozza a felhasználó által óránként megnyitható új kapcsolatok számát." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Korlátozza a felhasználó által a kiszolgálóra óránként küldhető lekérdezések " "számát." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9673,62 +9719,62 @@ msgstr "" "Korlátozza a felhasználó által óránként végrehajtható, bármelyik táblát vagy " "adatbázist módosító parancsok számát." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Az összes felhasználó folyamatainak megtekintését engedélyezi" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Nem valósult meg ebben a MySQL verzióban" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Engedélyezi a szerver beállításainak újratöltését, és a szerver " "gyorsítótárának törlését." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Engedélyezi a felhasználónak, hogy megkérdezze, hol találhatók a kisegítő/fő " "helyek." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "A kisegítő helyek másolásához szükséges." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Engedélyezi az adatok olvasását." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Hozzáférést ad az adatbázisok teljes listájához." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Engedélyezi SHOW CREATE VIEW lekérdezések végrehajtását." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Engedélyezi a szerver leállítását." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9739,167 +9785,167 @@ msgstr "" "globális változók beállítása, vagy más felhasználók folyamatainak " "megszüntetése." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Eseményindítók létrehozásának és eldobásának engedélyezése" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Engedélyezi az adatok megváltoztatását." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Nincsenek jogok." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Nincs" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Táblaspecifikus jogok" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Megjegyzés: a MySQL jognevek az angolból származnak." -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Adminisztráció" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globális jogok" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Adatbázis-specifikus jogok" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Erőforrás-korlátozások" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Megjegyzés: Ezen beállítások 0-ra (nulla) állítása eltávolítja a korlátozást." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Bejelentkezési adatok" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Nincs jelszó megváltoztatás" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Nem található felhasználó." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "%s felhasználó már létezik!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Az új felhasználó hozzáadása megtörtént." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Ön frissítette %s jogait." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s jogainak visszavonása megtörtént" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "%s jelszavának megváltoztatása sikerült." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "%s törlése" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Nincs törlésre kijelölt felhasználó!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "A jogok újratöltése" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "A kiválasztott felhasználók törlése sikerült." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "A jogok újratöltése sikerült." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Jogok szerkesztése" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Visszavonás" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Exportálás" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Bármi" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Jogok" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Jogok" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Felhasználók áttekintése" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Engedélyezés" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "A kijelölt felhasználók törlése" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9912,144 +9958,144 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Oszlopspecifikus jogok" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Jogok hozzáadása a következő adatbázison" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Jogok hozzáadása a következő táblán:" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Bejelentkezési adatok módosítása / Felhasználó másolása" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... a régiek megőrzése." -#: server_privileges.php:2366 +#: server_privileges.php:2374 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:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Adatbázis a felhasználó számára" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Az összes jog engedélyezése a(z) "%s" adatbázison" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "A(z) "%s" adatbázishoz hozzáférhető felhasználók" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "globális" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "adatbázis-specifikus" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "karakterhelyettesítő" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "A felhasználó hozzáadása kész." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Ismeretlen hiba" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "A jogok újratöltése sikerült." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 #, fuzzy msgid "Show master status" msgstr "Kisegítő állapot megjelenítése" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 #, fuzzy msgid "Master configuration" msgstr "Szerverbeállítások" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10058,123 +10104,123 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Kérjük válasszon adatbázist:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 #, fuzzy msgid "Control slave:" msgstr "Kontrollfelhasználó" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Teljes szöveg" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Csak a szerkezet" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Csak a szerkezet" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Következő átugrása" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Sikerült leállítani a(z) %s. szálat." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10182,136 +10228,136 @@ msgstr "" "A phpMyAdmin nem tudta leállítani a(z) %s szálat. Valószínűleg már " "befejeződött." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Kezelő" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Lekérdezési gyorsítótár" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Szálak" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Ideiglenes adatok" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Késleltetett beszúrások" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Kulcs gyorsítótár" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Illesztések" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Rendezés" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Tranzakció koordinátor" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Összes tábla kiírása (bezárása)" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Nyitott táblák megjelenítése" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Kisegítő állomások megjelenítése" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Kisegítő állapot megjelenítése" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Lekérdezési gyorsítótár kiírása" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Futtatási információk" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Frissítési időköz: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Szűrő" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Tartalmazza ezt a szót:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Csak a figyelmeztető értékek megjelenítése" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Formázatlan értékek megjelenítése" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Kapcsolódó hivatkozások:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Elemző futtatása" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Utasítások" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10319,46 +10365,46 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "A kezdőlap testreszabása" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Utasítások" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10366,11 +10412,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:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Többszörözéses állapot" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10378,47 +10424,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Fogadott" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Küldött" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "Max. egyidejű kapcsolatok száma" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Sikertelen próbák" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Megszakítva" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "AZ" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Parancs" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -10428,17 +10474,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:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 +10496,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10462,7 +10508,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:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10470,7 +10516,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:1329 +#: server_status.php:1328 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 +10524,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "A beírt INSERT DELAYED sorok száma." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "A végrehajtott FLUSH utasítások száma." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "A belső COMMIT utasítások száma." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10504,7 +10550,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:1335 +#: 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, " @@ -10515,7 +10561,7 @@ msgstr "" "például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül " "indexelésre." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10523,7 +10569,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:1337 +#: server_status.php:1336 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 " @@ -10533,7 +10579,7 @@ msgstr "" "ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot " "végez." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10541,7 +10587,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:1339 +#: 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 " @@ -10553,7 +10599,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:1340 +#: server_status.php:1339 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 " @@ -10565,35 +10611,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:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "A belső ROLLBACK utasítások száma." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "A jelenleg piszkos lapok száma." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "A szabad lapok száma." -#: server_status.php:1348 +#: 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 " @@ -10603,7 +10649,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:1349 +#: server_status.php:1348 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 " @@ -10616,11 +10662,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data értékként is " "számolható." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "A pufferkészlet teljes mérete lapokban." -#: server_status.php:1351 +#: 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." @@ -10629,7 +10675,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:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10637,11 +10683,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:1353 +#: server_status.php:1352 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:1354 +#: 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." @@ -10649,7 +10695,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:1355 +#: server_status.php:1354 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 " @@ -10664,53 +10710,53 @@ msgstr "" "méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell " "lennie." -#: server_status.php:1356 +#: server_status.php:1355 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:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Az fsync() műveletek eddigi száma." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "A folyamatban lévő fsync() műveletek száma." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "A folyamatban lévő olvasások száma." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "A folyamatban lévő írások száma." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Az eddig beolvasott adatok mennyisége bájtban." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Az összes beolvasott adat." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Az összes írott adat." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Az összes írott adat, bájtban." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -10718,35 +10764,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "A naplóírási kérések száma." -#: server_status.php:1369 +#: server_status.php:1368 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:1370 +#: server_status.php:1369 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "A folyamatban lévő naplófájl fsync-ek száma." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "A folyamatban lévő naplófájl írások száma." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "A naplófájlba írt bájtok száma." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "A létrehozott lapok száma." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10755,51 +10801,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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "A beolvasott lapok száma." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Az írott lapok száma." -#: server_status.php:1378 +#: server_status.php:1377 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:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "A sorzárolásokra fordított összes idő, milliszekundumban." -#: server_status.php:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 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:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Az InnoDB táblákba beszúrt sorok száma." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Az InnoDB táblákból beolvasott sorok száma." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Az InnoDB táblákban frissített sorok száma." -#: server_status.php:1387 +#: 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." @@ -10807,7 +10853,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:1388 +#: 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." @@ -10815,7 +10861,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:1389 +#: server_status.php:1388 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 " @@ -10824,17 +10870,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:1390 +#: server_status.php:1389 #, 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:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10845,26 +10891,26 @@ msgstr "" "sikertelen találatainak aránya a Key_reads/Key_read_requests alapján " "számítható ki." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -10875,17 +10921,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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10893,40 +10939,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "A megnyitott fájlok száma." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "A megnyitott táblák száma." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 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:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "A gyorsítótár találatok száma." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "A gyorsítótárhoz adott lekérdezések száma." -#: server_status.php:1408 +#: 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 " @@ -10939,7 +10985,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:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10947,19 +10993,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:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "A gyorsítótárban bejegyzett lekérdezések száma." -#: server_status.php:1411 +#: server_status.php:1410 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:1412 +#: server_status.php:1411 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:1413 +#: server_status.php:1412 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." @@ -10967,11 +11013,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10980,7 +11026,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:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10988,15 +11034,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11004,11 +11050,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:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11016,14 +11062,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:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11033,23 +11079,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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "A tartományokkal végzett rendezések száma." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Rendezett sorok száma." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -11061,7 +11107,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:1429 +#: server_status.php:1428 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 " @@ -11071,11 +11117,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "A jelenleg megnyitott kapcsolatok száma." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11086,66 +11132,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:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Nyomkövetés inaktív." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "A nem alvó szálak száma." -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Indítás" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Diagram hozzáadása" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Frissítési időköz" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Diagram oszlopai" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Visszaállítás az alapértékre" -#: server_status.php:1632 +#: server_status.php:1631 #, fuzzy msgid "Monitor Instructions" msgstr "Információ" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11154,7 +11200,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11162,18 +11208,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11181,11 +11227,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11193,228 +11239,228 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Adatbázis eltávolítása" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Táblák kiválasztása" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Érvénytelen táblanév" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Új szerver hozzáadása" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL-lekérdezések" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Naplóstatisztikák" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Táblák kiválasztása" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Lekérdezés típusa" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d másodperc" msgstr[1] "%d másodperc" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d perc" msgstr[1] "%d perc" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Nem lehetett kapcsolódni a forráshoz" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Nem lehetett kapcsolódni a célhoz" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Nem létezik '%s' nevű adatbázis." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Szerkezet különbség" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Adatkülönbség" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Oszlop(ok) hozzáadása" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Oszlop(ok) eltávolítása" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Oszlop(ok) módosítása" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Index(ek) törlése" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Index(ek) alkalmazása" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Sor(ok) frissítése" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Sor(ok) beszúrása" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Kiválasztott módosítások végrehajtása" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Adatbázisok szinkronizálása" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Végrehajtott lekérdezések" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Jelenlegi kapcsolat" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Beállítás: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Szerver változók és beállítások" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Munkamenet értéke" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Globális változó" @@ -11777,175 +11823,175 @@ msgstr "" msgid "Wrong data" msgstr "Hibás adat" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Valóban a következőt akarja " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Megjelenítés PHP kódként" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Érvényes SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL-eredmény" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Készítette" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probléma a(z) `%s` tábla indexeivel" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Név" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "A(z) %1$s tábla módosítása sikerült" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "A kiválasztott felhasználók törlése sikerült." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Bar" msgctxt "Chart type" msgid "Bar" msgstr "Sáv" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Oszlop" -#: tbl_chart.php:84 +#: tbl_chart.php:87 #, fuzzy #| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "Vonal" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Inline" msgctxt "Chart type" msgid "Spline" msgstr "Belső" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "Pie" msgctxt "Chart type" msgid "Pie" msgstr "Torta" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Halmozott" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Diagramcím" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "X tengely:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL-lekérdezések" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "X tengely címkéje:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "X értékek" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Y tengely címkéje:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Y érték" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Már létezik %s nevű tábla!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "A(z) %1$s tábla elkészült." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Tábla kiírás (vázlat) megtekintése" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "A választható szerverek megjelenítése" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Szélesség" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Magasság" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Textarea columns" msgid "Label column" msgstr "Szövegterület oszlopai" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Nincs --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Naplófájlok száma" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Újrarajzolás" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Mentés fájlba" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Fájlnév" @@ -11961,32 +12007,32 @@ msgstr "Nem nevezhető át PRIMARY-re az index!" msgid "No index parts defined!" msgstr "Nincs meghatározott indexrész!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Index hozzáadása" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Szerkesztő mód" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Index neve:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(Az elsődleges kulcs nevének, és csak annak \"PRIMARY\"-nak kell lennie!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Index típusa:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Hozzáadás az index  %s oszlophoz" @@ -12009,259 +12055,259 @@ msgstr "A(z) %s tábla áthelyezése a(z) %s adatbázisba kész." msgid "Table %s has been copied to %s." msgstr "A(z) %s tábla másolása %s néven megtörtént." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Üres a tábla neve!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Tábla rendezésének módosítása e szerint:" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(egyenként)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Tábla áthelyezése (adatbázis.tábla):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Tábla beállításai" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Tábla átnevezése" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Tábla másolása (adatbázis.tábla):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "A másolt táblára váltás" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Tábla karbantartása" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Tábla töredezettségmentesítése" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "A(z) %s tábla kiírása megtörtént" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Tábla kiöblítése (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Adat vagy tábla törlése" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Tábla kiürítése (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Tábla törlése (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Partíció karbantartása" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "%s partíció" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Elemzés" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Ellenőrzés" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimalizálás" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Újraépítés" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Javítás" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Particionálás eltávolítása" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Hivatkozási sértetlenség ellenőrzése:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Táblák megjelenítése" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Területhasználat" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Hatásos" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Sorstatisztika" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "statikus" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamikus" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Sor hossza" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Sor mérete" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Hiba történt az idegen kulcs %1$s táblán történő létrehozásakor (ellenőrizze " "az adattípusokat)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Belső kapcsolat" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Nincs szükség belső kapcsolatra, ha létezik megfelelő IDEGEN KULCS kapcsolat." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Idegen kulcs megszorítás" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "A különböző értékek tallózása" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Elsődleges kuly hozzáadása" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Elsődleges kulcs hozzáadása" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "SPATIAL Index hozzáadása" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "FULLTEXT index hozzáadása" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Nincs" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "A(z) %s oszlop eldobása megtörtént" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Az elsődleges kulcs hozzáadása a(z) %s mezőn megtörtént" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Az index hozzáadása a(z) %s mezőn megtörtént" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Több tevékenység mutatása" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Oszlop(ok) eltávolítása" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Nézet szerkesztése" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Kapcsolat nézete" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Táblaszerkezet ajánlása" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Oszlop hozzáadása" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "A tábla végén" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "A tábla elején" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "%s után" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Index készítése a(z)  %s oszlopokon" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "particionált" @@ -12414,72 +12460,37 @@ msgstr "" msgid "Create version" msgstr "Verzió létrehozása" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "További keresési feltételek" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -#, fuzzy -#| msgid "Maximum number of rows to display" -msgid "Maximum rows to plot" -msgstr "A megjelenítendő sorok száma" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Hogyan kell használni" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Visszaállítás" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Több téma letöltése" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Létező MIME-típusok" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "A dőlttel írt MIME-típusoknak nincs külön átalakítási funkciójuk" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Létező átalakítások" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Leírás" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Önnek nincs elég joga ahhoz, hogy épp most itt tartózkodjon!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "A profil frissítése megtörtént." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "NÉZET neve" diff --git a/po/hy.po b/po/hy.po index 6dfe75cabc..b731e5912d 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,92 +7,92 @@ 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-04 13:49+0200\n" -"PO-Revision-Date: 2012-03-23 10:41+0200\n" -"Last-Translator: Michal Čihař \n" +"POT-Creation-Date: 2012-06-18 10:54+0200\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" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 0.8\n" +"X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" -msgstr "" +msgstr "Ցույց տալ բոլորը" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" -msgstr "" +msgstr "էջի համարը՝" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 libraries/common.lib.php:3309 +#: libraries/common.lib.php:3316 libraries/common.lib.php:3512 +#: libraries/common.lib.php:3513 msgid "Search" -msgstr "" +msgstr "Որոնում" -#: browse_foreigners.php:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" -msgstr "" +msgstr "OK" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" -msgstr "" +msgstr "Ինդեքսի անվանումը" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" -msgstr "" +msgstr "Նկարագրություն" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" -msgstr "" +msgstr "Օգտագործել այս արժեքը" #: changelog.php:32 license.php:28 #, php-format @@ -100,113 +100,116 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" +"%s ֆայլը գնտված չէ այս համակարգում, լրացուցիչ ինֆորմացիայի համար այցելե՛ք " +"www.phpmyadmin.net։" #: db_create.php:74 #, php-format msgid "Database %1$s has been created." -msgstr "" +msgstr "%1$s տվյալների բազան ստեղծված է։" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " -msgstr "" +msgstr "Տվյալների բազայի մեկնաբանությունը՝ " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" -msgstr "" +msgstr "Աղյուսակի մեկնաբանությունը" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" -msgstr "" +msgstr "Սյուն" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: tbl_printview.php:133 tbl_structure.php:203 tbl_tracking.php:304 +#: tbl_tracking.php:366 msgid "Type" -msgstr "" +msgstr "Տեսակ" #: db_datadict.php:166 libraries/Index.class.php:464 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" -msgstr "" +msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" -msgstr "" +msgstr "Լռելյան" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" -msgstr "" +msgstr "Կապեր" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" -msgstr "" +msgstr "Մեկնաբանություններ" #: db_datadict.php:235 js/messages.php:251 libraries/Index.class.php:359 #: libraries/Index.class.php:386 libraries/Index.class.php:704 #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: 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 @@ -216,610 +219,609 @@ msgstr "" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" -msgstr "" +msgstr "Այո" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" -msgstr "" +msgstr "Ցուցադրել տվյալների բազայի dump-ը (սխեման)" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." -msgstr "" +msgstr "Տվյալների բազայում աղյուսակներ չկան։" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" -msgstr "" +msgstr "Նշել բոլորը" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" -msgstr "" +msgstr "Հանել նշումը" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" -msgstr "" +msgstr "Տվյալների բազայի անունն նշված չէ" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" -msgstr "" +msgstr "%1$s տվյալների բազան վերանված է %2$s-ի" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" -msgstr "" +msgstr "%1$s տվյալների բազան պատճենված է %2$s-ում" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" -msgstr "" +msgstr "Վերնվանել տվյալների բազան" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" -msgstr "" +msgstr "Հեռացնել տվյալների բազան" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." -msgstr "" +msgstr "%s տվյալների բազան հեռացված է։" -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" -msgstr "" +msgstr "Հեռացնել տվյալների բազան (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" -msgstr "" +msgstr "Պատճենել տվյալների բազան" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" -msgstr "" +msgstr "Միայն կառուղվածքը" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" -msgstr "" +msgstr "Կառուցվածքն ու տվյալները" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" -msgstr "" +msgstr "Միայն տվյալները" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" -msgstr "" +msgstr "Պատճենելուց առաջ ստեղծել տվյալների բազա (CREATE DATABASE)" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" -msgstr "" +msgstr "Ավելացնել %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" -msgstr "" +msgstr "Ավելացնել AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" -msgstr "" +msgstr "Ավելացնել սահմանափակում" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" -msgstr "" +msgstr "Անցնել պատճենված տվյալների բազային" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" -msgstr "" +msgstr "Համեմատումը" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" -msgstr "" +msgstr "Աղյուսակ" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" -msgstr "" +msgstr "Տողեր" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" -msgstr "" +msgstr "Ծավալը" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" -msgstr "" +msgstr "օգտագործվում է" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" -msgstr "" +msgstr "Ստեղծում" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" -msgstr "" +msgstr "Վերջին թարմացումը" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" -msgstr "" +msgstr "Վերջին ստուգումը" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s աղյուսակ" #: db_qbe.php:41 msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" -msgstr "" +msgstr "Դասավորել" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" -msgstr "" +msgstr "Աճման կարգով" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" -msgstr "" +msgstr "Նվազման կարգով" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" -msgstr "" +msgstr "Ցուցադրել" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" -msgstr "" +msgstr "Չափորոշիչ" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" -msgstr "" +msgstr "Տեղադրել" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" -msgstr "" +msgstr "Եվ" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" -msgstr "" +msgstr "Հեռացնել" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" -msgstr "" +msgstr "Կամ" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" -msgstr "" +msgstr "Փոփոխել" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" -msgstr "" +msgstr "Լրացնել հարցումը" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" -msgstr "" +msgstr "Օգտագործել աղյուսակներ" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" -msgstr "" +msgstr "Կատարել հարցումը" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "" -#: db_search.php:43 db_search.php:301 -msgid "at least one of the words" -msgstr "" - -#: db_search.php:44 db_search.php:302 -msgid "all words" -msgstr "" - -#: db_search.php:45 db_search.php:303 -msgid "the exact phrase" -msgstr "" - #: db_search.php:46 db_search.php:304 -msgid "as regular expression" -msgstr "" +msgid "at least one of the words" +msgstr "բառերից ցանկանցածը" -#: db_search.php:216 +#: db_search.php:47 db_search.php:305 +msgid "all words" +msgstr "բոլոր բառերը" + +#: db_search.php:48 db_search.php:306 +msgid "the exact phrase" +msgstr "ճիշտ համընկնում" + +#: db_search.php:49 db_search.php:307 +msgid "as regular expression" +msgstr "կանոնավոր արտահայտություն" + +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" -msgstr "" +msgstr "«%s» որոնման արդյունքները %s՝" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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 "" +msgstr "Թերթել" -#: db_search.php:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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 "" +msgstr "Հեռացնել" -#: db_search.php:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" -msgstr[0] "" -msgstr[1] "" - -#: db_search.php:289 -msgid "Search in database" -msgstr "" +msgstr[0] "Ընդհանուր՝ %s համընկնում" #: db_search.php:292 +msgid "Search in database" +msgstr "Որոնումը տվյալների բազայում" + +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" -msgstr "" +msgstr "Գտնել՝" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." -msgstr "" +msgstr "Բառերն առանձնացվում են (« »)։" -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" -msgstr "" +msgstr "Աղյուսակներ՝" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" -msgstr "" +msgstr "Սյուներ՝" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" -msgstr "" +msgstr "Տվյալների բազայում աղյուսակներ չկան" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" -msgstr "" +msgstr "անհայտ" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" -msgstr "" +msgstr "%s աղյուսակն դատարկված է" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" -msgstr "" +msgstr "%s ներկայացումն հեռացված է" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" -msgstr "" +msgstr "%s աղյուսակն հեռացված է" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "" +msgstr "Ներկայացում" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" -msgstr "" +msgstr "Վերարադրում" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" -msgstr "" +msgstr "Ընդամենը" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" -msgstr "" +msgstr "Նշվածները՝" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" -msgstr "" +msgstr "Նշել բոլորը" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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 "" +msgstr "Հանել նշումը" -#: db_structure.php:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" -msgstr "" +msgstr "Արտահանում" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" -msgstr "" +msgstr "Դատարկել" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" -msgstr "" +msgstr "Հեռացնել" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" -msgstr "" +msgstr "Ստուգել աղյուսակը" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" -msgstr "" +msgstr "Օպտիմիզացնել աղյուսակը" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" -msgstr "" +msgstr "Վերականգնել աղյուսակը" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" -msgstr "" +msgstr "Վերլուծել աղյուսակը" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" -msgstr "" +msgstr "Տվյալների բառարան" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" -msgstr "" +msgstr "Տվյալների բազա" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" -msgstr "" +msgstr "Վերջին տարբերակը" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" -msgstr "" +msgstr "Ստեղծված է" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" -msgstr "" +msgstr "Թարմացված է" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" -msgstr "" +msgstr "Վիճակը" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" -msgstr "" +msgstr "Գործողություն" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" -msgstr "" +msgstr "միացված է" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" -msgstr "" +msgstr "անջատված է" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" -msgstr "" +msgstr "Տարբերակներ" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" -msgstr "" +msgstr "Կառուցվածքի պատկերը" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "" #: export.php:40 msgid "Bad type!" -msgstr "" +msgstr "Սխալ տեսակ" #: export.php:90 msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" -msgstr "" +msgstr "Սխալ պարամետրեր" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -828,174 +830,174 @@ msgstr "" msgid "Invalid export type" msgstr "" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -1004,7 +1006,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1044,7 +1046,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "" @@ -1062,16 +1064,16 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "" @@ -1088,23 +1090,24 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "" @@ -1114,24 +1117,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "" @@ -1151,7 +1154,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "" @@ -1169,7 +1172,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "" @@ -1210,14 +1213,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "" @@ -1269,32 +1272,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "" @@ -1308,11 +1311,11 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "" @@ -1332,11 +1335,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "" @@ -1429,7 +1432,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "" @@ -1507,7 +1510,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "" @@ -1595,10 +1598,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1646,9 +1649,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1660,11 +1663,11 @@ msgstr "" msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1676,9 +1679,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "" @@ -1718,15 +1721,15 @@ msgstr "" msgid "Show indexes" msgstr "" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "" @@ -1754,7 +1757,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1793,8 +1796,8 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "" @@ -1802,18 +1805,18 @@ msgstr "" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "" @@ -1825,7 +1828,7 @@ msgstr "" msgid "Show search criteria" msgstr "" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "" @@ -1869,12 +1872,12 @@ msgstr "" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -1894,7 +1897,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "" @@ -1977,7 +1980,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "" @@ -2066,63 +2069,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "" @@ -2160,32 +2163,32 @@ msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "" @@ -2298,16 +2301,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "" @@ -2328,70 +2331,266 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "" @@ -2404,8 +2603,8 @@ msgstr "" msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "" @@ -2426,128 +2625,128 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "" @@ -2572,7 +2771,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2659,16 +2858,96 @@ 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 +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 +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 +msgid "Value" +msgstr "" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2687,7 +2966,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -2976,20 +3255,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3001,58 +3280,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "" @@ -3084,7 +3359,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "" @@ -3096,13 +3371,13 @@ msgstr "" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "" @@ -3127,233 +3402,211 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "" @@ -3383,8 +3636,8 @@ msgid "Closed" msgstr "" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "" @@ -3525,9 +3778,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "" @@ -3729,10 +3982,6 @@ msgstr "" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3785,7 +4034,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "" @@ -3794,7 +4043,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "" @@ -3898,7 +4147,7 @@ msgid "MIME type" msgstr "" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "" @@ -5348,9 +5597,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -5617,30 +5866,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "" @@ -5661,22 +5904,22 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -5827,25 +6070,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -5952,383 +6195,238 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6336,48 +6434,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6385,18 +6483,18 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6443,14 +6541,14 @@ msgstr "" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6508,14 +6606,14 @@ msgstr "" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "" @@ -6700,21 +6798,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6806,12 +6895,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "" @@ -6876,91 +6965,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6975,32 +7048,32 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "" @@ -7210,90 +7283,90 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "" @@ -7301,7 +7374,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7313,13 +7386,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7332,7 +7405,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "" @@ -7346,38 +7419,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7391,7 +7464,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7422,88 +7495,89 @@ msgstr "" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7532,7 +7606,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7551,105 +7625,105 @@ msgstr "" msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -7667,36 +7741,36 @@ msgstr "" msgid "Trigger %1$s has been created." msgstr "" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -7780,7 +7854,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -7789,7 +7863,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -7797,7 +7871,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -7808,27 +7882,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "" @@ -7934,7 +8008,7 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -7952,7 +8026,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -7971,7 +8045,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -7980,11 +8054,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8066,7 +8140,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8086,8 +8160,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "" @@ -8131,13 +8205,13 @@ msgstr "" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "" @@ -8150,17 +8224,17 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8168,41 +8242,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8310,11 +8349,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8325,7 +8364,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8352,7 +8391,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "" @@ -8372,9 +8411,9 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "" @@ -8482,126 +8521,126 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "" @@ -8613,51 +8652,51 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "" @@ -8669,87 +8708,87 @@ msgstr "" msgid "Modifications have been saved" msgstr "" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "" @@ -8757,17 +8796,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -8783,7 +8822,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "" @@ -8791,31 +8830,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -8825,369 +8864,369 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9196,138 +9235,138 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9336,251 +9375,251 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -9588,115 +9627,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -9704,78 +9743,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -9783,7 +9822,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -9791,42 +9830,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -9834,33 +9873,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -9869,242 +9908,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10112,99 +10151,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10212,18 +10251,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10231,61 +10270,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10294,7 +10333,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10302,18 +10341,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10321,11 +10360,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10333,214 +10372,214 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -10824,153 +10863,153 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "" -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "" @@ -10986,28 +11025,28 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11030,252 +11069,252 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -11423,65 +11462,37 @@ msgstr "" msgid "Create version" msgstr "" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/id.po b/po/id.po index 8eab5790ef..30fef55517 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-03-27 16:57+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: indonesian \n" @@ -15,21 +15,21 @@ msgstr "" "X-Generator: Weblate 0.8\n" "X-Poedit-Basepath: ../../..\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Tampilkan semua" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Nomor halaman:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "menutup jendela induk atau pilihan keamanan pada peramban Anda mencekal " "pembaruan lintas-jendela" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Kirim" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Nama kunci" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Deskripsi" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Gunakan nilai ini" @@ -108,88 +108,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Basis data %1$s telah dibuat." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Komentar basis data: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Komentar tabel" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Kolom" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Kosong" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Bawaan" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Tautan ke" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Komentar" @@ -198,14 +199,14 @@ msgstr "Komentar" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Tidak" @@ -218,123 +219,123 @@ msgstr "Tidak" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ya" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Tampilkan dump (skema) basis data" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Tidak ada tabel dalam basis data." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Pilih Semua" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Lepas Semua" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Nama basis data kosong!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Nama basis data %s telah diubah menjadi %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Basis data %s telah disalin ke %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Ubah nama basis data menjadi" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Hapus basis data" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Basis data %s telah dihapus." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Hapus basis data (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Salin basis data ke" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Struktur saja" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Data saja" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE sebelum menyalin" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Tambahkan %s" # Imperative verb -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Tambahkan batasan" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Pindah ke basis data hasil penyalinan" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Penyortiran" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -343,59 +344,59 @@ msgstr "" "Penyimpanan konfigurasi phpMyAdmin telah dinonaktifkan. Untuk mencari tahu " "mengapa klik %sdi sini%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Edit atau ekspor skema relasional" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabel" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Baris" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Ukuran" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "sedang digunakan" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Pembuatan" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Pembaruan terakhir" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Pemeriksaan terakhir" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -405,117 +406,117 @@ msgstr[0] "%s tabel" msgid "You have to choose at least one column to display" msgstr "Anda harus memiliih paling tidak satu kolom untuk ditampilkan" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Alihkan ke %spembangun visual%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Urutan" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Menaik" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Menurun" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Tampilkan" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriteria" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Tambahkan" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Dan" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Hapus" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Atau" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Ubah" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Tambahkan/Hapus baris kriteria" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Tambahkan/Hapus kolom" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Perbarui Kueri" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Gunakan Tabel" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Kueri SQL pada basis data %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Kirim Kueri" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Akses ditolak" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "paling tidak satu kata" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "semua kata" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "frasa tepat" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "persamaan reguler" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Hasil pencarian untuk \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -523,92 +524,92 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Hapus yang cocok untuk %s tabel?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s cocok" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Cari dalam basis data" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Kata atau hasil untuk dicari (wildcard: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Cari:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Kata dipisahkan oleh karakter spasi (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Dalam tabel:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Dalam kolom:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Tidak ada tabel dalam basis data." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "tidak diketahui" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s telah dikosongkan" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "View %s telah dihapus" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s telah dihapus" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Pelacakan aktif" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Pelacakan tidak aktif." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -617,186 +618,187 @@ msgstr "" "Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat " "%sdokumentasi%s" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikasi" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Jumlah" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Dengan pilihan:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Pilih Semua" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Pilih tabel berbeban tambahan" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspor" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Tampilan cetak" # Imperative menu -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Kosongkan" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Hapus" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Periksa tabel" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimalkan tabel" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Perbaiki tabel" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analisis tabel" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Tambahkan prefiks untuk tabel" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Ganti prefiks tabel" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Salin tabel dengan prefiks" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Kamus Data" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Tabel yang dilacak" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Basis data" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Versi terakhir" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Dibuat" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Diperbarui" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Status" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Tindakan" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Hapus pelacakan data untuk tabel ini" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "aktif" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "tidak aktif" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versi" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Laporan pelacakan" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Snapshot struktur" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Tabel yang tidak dilacak" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Lacak tabel" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Log Basis Data" @@ -808,16 +810,16 @@ msgstr "Penulisan yang buruk!" msgid "Selected export type has to be saved in file!" msgstr "Jenis ekspor yang diipilih harus disimpan dalam berkas!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Pembatasan yang buruk!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Tidak cukup ruang untuk menyimpan %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -825,12 +827,12 @@ msgstr "" "Berkas %s sudah ada pada server. Ganti nama berkas atau centang opsi " "overwrite." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Server web tidak memiliki hak akses untuk menyimpan berkas %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump (Skema) disimpan pada berkas %s." @@ -839,86 +841,86 @@ msgstr "Dump (Skema) disimpan pada berkas %s." msgid "Invalid export type" msgstr "Jenis ekspor invalid" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Nilai untuk kolom \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Gunakan OpenStreetMaps sebagai Lapisan Dasar" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Titik" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Titik %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Tambahkan titik" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Segmen garis" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Lingkar Luar" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Lingkar Dalam" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Tambahkan segmen garis" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Tambahkan lingkar dalam" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Poligon" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Tambahkan poligon" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Tambahkan geometri" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Keluaran" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -926,7 +928,7 @@ msgstr "" "Pilih \"GeomFromText\" dari kolom \"Fungsi\" dan rekatkan string di bawahnya " "ke dalam isian \"Value\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -935,21 +937,21 @@ msgstr "" "Anda mungkin mencoba mengunggah berkas yang terlalu besar. Harap lihat " "%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Tampilkan markah" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Markah telah dihapus." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Gagal membaca berkas" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -958,7 +960,7 @@ msgstr "" "Anda mencoba untuk memuat berkas dengan kompresi yang tidak didukung (%s). " "Dukungan belum diimplementasi atau tidak aktif di dalam konfigurasi Anda." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -969,27 +971,27 @@ msgstr "" "konfigurasi PHP Anda. Lihat [a@./Documentation.html#faq1_16@Documentation]" "FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Tidak dapat mengubah set karakter berkas tanpa pustaka konversi set karakter" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Tidak dapat memuat plugin import, harap periksa instalasi Anda!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Markah %s dibuat" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Impor telah berhasil menyelesaikan,%d kueri dieksekusi." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -997,7 +999,7 @@ msgstr "" "Script sudah melewati timeout, jika Anda ingin menyelesaikan proses impor, " "harap kirim ulang arsip yang sama dan proses impor akan berlanjut." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1006,25 +1008,25 @@ msgstr "" "phpMyAdmin tidak bisa menyelesaikan proses impor kecuali Anda menambah batas " "waktu eksekusi php." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Kembali" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "Lebih mudah untuk menggunakan phpMyAdmin dengan browser yang mendukung " "frame." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Perintah \"DROP DATABASE\" dinonaktifkan." @@ -1034,7 +1036,7 @@ msgstr "Perintah \"DROP DATABASE\" dinonaktifkan." msgid "Do you really want to execute \"%s\"?" msgstr "Benarkah Anda ingin untuk " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Anda akan MENGHAPUS seluruh basis data!" @@ -1074,7 +1076,7 @@ msgstr "Tambah indek" msgid "Edit Index" msgstr "Mengedit Indeks" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Tambahkan %d kolom ke index" @@ -1092,16 +1094,16 @@ msgstr "Nama inang kosong!" msgid "The user name is empty!" msgstr "Nama pengguna kosong!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Kata sandi kosong!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Kata sandi tidak sama!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Tambahkan pengguna" @@ -1118,23 +1120,24 @@ msgstr "Hapus pengguna yang dipilih" msgid "Close" msgstr "Tutup" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Edit" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Bagan lalu lintas langsung" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Bagan koneksi/proses langsung" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Bagan kueri langsung" @@ -1144,24 +1147,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Jumlah" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Lainnya" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1181,7 +1184,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Proses Aktif" @@ -1199,7 +1202,7 @@ msgstr "Perintah sejak penyegaran terakhir" msgid "Questions (executed statements by the server)" msgstr "Pertanyaan (statement yang dieksekusi server)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Statistik kueri" @@ -1244,14 +1247,14 @@ msgid "System swap" msgstr "Swap sistem" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1303,32 +1306,32 @@ msgstr "Bita dikirim" msgid "Bytes received" msgstr "Bita diterima" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Koneksi" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1342,11 +1345,11 @@ msgstr "%d tabel" msgid "Questions" msgstr "Perintah" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Lalu Lintas" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Pengaturan" @@ -1366,11 +1369,11 @@ msgstr "Tambahkan bagan pada grid" msgid "Please add at least one variable to the series" msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Tidak ada" @@ -1470,7 +1473,7 @@ msgstr "Ubah pengaturan" msgid "Current settings" msgstr "Pengaturan saat ini" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Judul Bagan" @@ -1558,7 +1561,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Waktu" @@ -1655,10 +1658,10 @@ msgstr "" "Gagal membangun Grafik kisi dengan mengimport config. Mengembalikan ke " "Setelan baku..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Impor" @@ -1710,9 +1713,9 @@ msgstr "Variabel / formula terpakai" msgid "Test" msgstr "Uji" -#: 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 +#: 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 msgid "Cancel" msgstr "Batal" @@ -1724,11 +1727,11 @@ msgstr "Memproses" msgid "Processing Request" msgstr "Memproses Permintaan" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Galat sewaktu Memproses Permintaan" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Basis data belum dipilih." @@ -1740,9 +1743,9 @@ msgstr "Menghapus Kolom" msgid "Adding Primary Key" msgstr "Menambahkan Kunci Primer" -#: 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 +#: 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 msgid "OK" msgstr "Oke" @@ -1782,19 +1785,19 @@ msgstr "Sembunyikan indeks" msgid "Show indexes" msgstr "Tampilkan indeks" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Tanpa pemeriksaan kunci asing" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Aktif" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1824,7 +1827,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" @@ -1865,8 +1868,8 @@ msgstr "Tampilkan kotak kueri" msgid "No rows selected" msgstr "Tidak ada baris yang dipilih" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Ubah" @@ -1874,18 +1877,18 @@ msgstr "Ubah" msgid "Query execution time" msgstr "Waktu eksekusi kueri" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Simpan" @@ -1897,7 +1900,7 @@ msgstr "Sembunyikan kriteria pencarian" msgid "Show search criteria" msgstr "Tampilkan kriteria pencarian" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Pencarian Zum" @@ -1945,12 +1948,12 @@ msgstr "Operasi hasil pertanyaan" msgid "Data point content" msgstr "Isi titk data" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Abaikan" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Salin" @@ -1970,7 +1973,7 @@ msgstr "Pilih Foreign Key" msgid "Please select the primary key or a unique key" msgstr "Harap pilih kunci primer atau kunci unik" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Pilih kolom untuk ditampilkan" @@ -2066,7 +2069,7 @@ msgstr "Hasilkan" msgid "Change Password" msgstr "Ubah Sandi" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Lainnya" @@ -2157,63 +2160,63 @@ msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Agu" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Des" @@ -2251,32 +2254,32 @@ msgid "Sun" msgstr "Min" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Sen" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Kam" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sab" @@ -2393,16 +2396,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "per detik" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "per menit" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "dalam sejam" @@ -2424,47 +2427,235 @@ msgstr "" msgid "Font size" msgstr "Ukuran huruf" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Simpan data yang diedit" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Pulihkan urutan kolom" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Awal" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Sebelumnya" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Berikutnya" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Akhir" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Baris mulai" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Jumlah baris" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Modus" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horisontal" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horisontal (judul diputar)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertikal" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "Judul setiap %s baris" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Urut berdasarkan kunci" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Opsi" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Teks parsial" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Teks penuh" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Kunci relasi" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Kolom tampilan relasi" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Tampilkan konten biner" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Tampilkan konten BLOB" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Tampilkan konten biner dalam HEX" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Transformasi Browser" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Baris telah dihapus" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Tutup" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation." +"html#faq3_11@Dokumentasi]FAQ 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "dalam susunan pemeriksaan" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Tampilan baris" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "total" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Pencarian dilakukan dalam %01.4f detik" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operasi hasil kueri" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Tampilan cetak (teks lengkap)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Tampilkan bagan" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Buat tampilan" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Tautan tidak ditemukan" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Terlalu banyak pesan kesalahan, sebagian tidak bisa ditampilkan." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "File bukan file unggah." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Berkas yang diunggah melewati ketentuan upload_max_filesize dalam php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Berkas yang diunggah melewati MAX_FILE_SIZE yang ditentukan dalam form HTML." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Berkas yang diunggah hanya terunggah sebagian." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Folder sementara tidak ditemukan." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Gagal menulis berkas ke diska." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Pengunggahan berkas dihentikan oleh ekstensi." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Galat tidak dikenal sewaktu mengunggah berkas." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2472,26 +2663,41 @@ msgstr "" "Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation." "html#faq1_11@Documentation]FAQ 3.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Terjadi galat sewaktu memindahkan berkas unggahan." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Tidak bisa membaca (memindah) file unggah." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Buka jendela phpMyAdmin baru" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Mulai dari sini cookies harus diaktifkan." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "Mulai dari sini cookies harus diaktifkan." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unik" @@ -2504,8 +2710,8 @@ msgstr "Dipadatkan" msgid "Cardinality" msgstr "Kardinalitas" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Komentar" @@ -2528,128 +2734,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Basis data" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktur" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Tambahkan" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operasi" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Pelacakan" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tampaknya tabel kosong!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Basis data kelihatannya kosong!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Kueri" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Hak Akses" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Routine" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Event" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Desainer" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Pengguna" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sinkronisasi" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Log biner" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variabel" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Set Karakter" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Plugin" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Mesin" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Galat" @@ -2677,7 +2883,7 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "%1$d baris ditambahkan." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Terjadi galat sewaktu membuat PDF:" @@ -2772,16 +2978,100 @@ 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 +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 +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 +msgid "Value" +msgstr "Nilai" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Pencarian Tabel" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Edit/Tambah" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Pilih kolom (paling tidak satu):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Tambahkan kriteria pencarian (bagian klausa \"where\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Jumlah baris per halaman" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Urutan tampilan:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Menjelajahi nilai luar" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Kriteria pencarian tambahan" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Lakukan \"kueri dengan contoh\" (wildcard: \"%\") untuk dua kolom yang " +"berbeda" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Lakukan \"kueri dengan contoh\" (wildcard: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Cara pakai" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Reset" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Lokasi citra yang benar untuk tema %s tidak ditemukan!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Tidak ada pratayang tersedia." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "ambil ini" @@ -2800,7 +3090,7 @@ msgstr "Tema %s tidak ditemukan!" msgid "Theme path not found for theme %s!" msgstr "\"Path\" untuk tema tidak ditemukan untuk tema %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Tema" @@ -3099,13 +3389,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Koneksi gagal: pengaturan invalid." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Selamat Datang di %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3114,7 +3404,7 @@ msgstr "" "Anda mungkin belum membuat berkas konfigurasi. Anda bisa menggunakan " "%1$ssetup script%2$s untuk membuatnya." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3130,43 +3420,37 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Gagal menggunakan Blowfish dari mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Mulai dari sini cookies harus diaktifkan." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Masuk" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Anda bisa memasukkan hostname/alamat IP dan port dipisahkan dengan spasi." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Nama Pengguna:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Kata Sandi:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Pilihan Server" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Mulai dari sini cookies harus diaktifkan." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3174,19 +3458,19 @@ msgstr "" "Masuk tanpa kata sandi tidak diperbolehkan dalam konfigurasi (lihat " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Tidak ada aktivitas selama %s detik atau lebih. Harap masuk kembali" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Gagal masuk ke MySQL server" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Nama pengguna/kata sandi salah. Akses ditolak." @@ -3218,7 +3502,7 @@ msgstr "dibagi" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabel" @@ -3230,13 +3514,13 @@ msgstr "Tabel" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Beban" @@ -3261,19 +3545,11 @@ msgstr "Periksa hak akses untuk basis data "%s"." msgid "Check Privileges" msgstr "Periksa Hak Akses" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "memungkinkan mengeksploitasi" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "tombol angka terdeteksi" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Gagal membaca berkas konfigurasi" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3281,12 +3557,12 @@ msgstr "" "Hal ini biasanya berarti ada kesalahan sintaks di dalamnya, silahkan cek " "kesalahan di bawah ini." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Tidak dapat memuat konfigurasi default dari: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3298,205 +3574,191 @@ msgstr "" "Directif $cfg['PmaAbsoluteUri'] WAJIB diset dalam berkas " "konfigurasi!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Indeks server tidak sah: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Hostname tidak sah untuk server %1$s. Harap lihat kembali konfigurasi Anda." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Metode autentikasi dalam konfigurasi tidak sah:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Anda harus memperbarui ke %s %s atau lebih baru." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "memungkinkan mengeksploitasi" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "tombol angka terdeteksi" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Batas ukuran: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentasi" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "Pencarian SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL menyatakan: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Gagal melakukan koneksi ke validator SQL!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Jelaskan SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Lewati Penjelasan SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Kode PHP tidak ditemukan" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Buat kode PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Segarkan" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Lewati Validasi SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validasi SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Edit langsung kueri ini di tempat" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Edit di tempat" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profil" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Minggu" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y pada %H.%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s menit dan %s detik" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Parameter yang hilang:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Awal" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Sebelumnya" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Berikutnya" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Akhir" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Langsung ke basis data "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Klik untuk beralih" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Telusuri komputer Anda:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pilih dari direktori unggah %s pada web server:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Tidak ada arsip untuk diunggah" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Eksekusi" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Cetak" @@ -3526,8 +3788,8 @@ msgid "Closed" msgstr "Tutup" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Tidak aktif" @@ -3670,9 +3932,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Reset" @@ -3892,10 +4154,6 @@ msgstr "Usulkan struktur tabel" msgid "Show binary contents as HEX by default" msgstr "Tampilkan konten biner dalam HEX sebagai bawaan" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Tampilkan konten biner dalam HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Tampilkan daftar basis data dalam bentuk daftar dan bukan tarik-turun" @@ -3950,7 +4208,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Waktu eksekusi maksimum" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Simpan sebagai berkas" @@ -3959,7 +4217,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4063,7 +4321,7 @@ msgid "MIME type" msgstr "Jenis MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Tabel Relasi" @@ -5546,9 +5804,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Kata Sandi" @@ -5819,14 +6077,6 @@ msgstr "Harap periksa hak akses direktori basis data." msgid "Details..." msgstr "Rincian..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation." -"html#faq3_11@Dokumentasi]FAQ 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -5834,18 +6084,18 @@ msgstr "" "Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Ubah Sandi" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Kata Sandi belum ditetapkan" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Ketik ulang" @@ -5866,22 +6116,22 @@ msgstr "Buat basis data" msgid "Create" msgstr "Buat" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Tidak Ada Hak Akses" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nama" @@ -6032,26 +6282,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Konversi Pengodean:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "Buat versi %s dari %s.%s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -6166,187 +6416,39 @@ msgstr "Opsi Format Khusus:" msgid "Language" msgstr "Bahasa" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Simpan data yang diedit" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Pulihkan urutan kolom" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Baris mulai" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Jumlah baris" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Modus" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horisontal" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horisontal (judul diputar)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertikal" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Judul setiap %s baris" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Urut berdasarkan kunci" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Opsi" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Teks parsial" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Teks penuh" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Kunci relasi" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Kolom tampilan relasi" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Tampilkan konten biner" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Tampilkan konten BLOB" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Transformasi Browser" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Baris telah dihapus" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Tutup" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "dalam susunan pemeriksaan" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Tampilan baris" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "total" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Pencarian dilakukan dalam %01.4f detik" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operasi hasil kueri" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Tampilan cetak (teks lengkap)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Tampilkan bagan" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Buat tampilan" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Tautan tidak ditemukan" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Informasi versi" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Direktori awal data" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Bagian lazim dari Directory Path untuk seluruh berkas data milik InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Berkas data" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Pembesaran otomatis" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" "Besar peningkatan ukuran ruang tabel yang otomatis ditambahkan sewaktu penuh." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Besar penampungan penyangga" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6354,79 +6456,79 @@ msgstr "" "Besar penyangga memori yang digunakan oleh InnoDB untuk menyinggahkan data " "dan indeks dari tabelnya." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Penampungan Penyangga" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Status InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Penggunaan Penampungan Penyangga" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "halaman" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Halaman yang bebas" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Halaman yang kotor" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Halaman yang berisi data" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Halaman yang akan dibersihkan" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Halaman yang sibuk" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Halaman yang dipalang" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Aktivitas Penampungan Penyangga" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Permintaan pembacaan" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Permintaan penulisan" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Pembacaan yang kelewat" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Penundaan penulisan" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Pembacaan yang kelewat dalam %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Penundaan penulisan dalam %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Ukuran petunjuk data (Data Pointer)" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6434,11 +6536,11 @@ msgstr "" "Ukuran standar dari petunjuk (Pointer) dalam Byte untuk digunakan oleh " "CREATE TABLE untuk tabel jenis MyISAM bila pilihan MAX_ROWS tidak ditentukan." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Modus restorasi otomatis" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6447,11 +6549,11 @@ msgstr "" "sesuai dengan pengaturan melalui pilihan --myisam-recover pada startup " "server." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Ukuran maksimal untuk penyortiran berkas sementara" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6461,11 +6563,11 @@ msgstr "" "oleh MySQL pada sewaktu pembuatan ulang sebuah indeks MyISAM (sewaktu " "menjalankan REPAIR TABLE, ALTER TABLE, atau LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Ukuran maksimal untuk berkas sementara pada pembuatan indeks" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6475,11 +6577,11 @@ msgstr "" "dibandingkan dengan ukuran Key Cache yang disebut di sini, disarankan untuk " "menggunakan metode Key Cache." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Perbaiki proses" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6488,11 +6590,11 @@ msgstr "" "dalam modus paralel (setiap indeks memiliki proses tersendiri) selama " "perbaikan dijalankan oleh proses penyortiran." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Urutkan ukuran Buffer" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6501,72 +6603,72 @@ msgstr "" "atau pada sewaktu membuat indeks dengan cara CREATE INDEX atau cara ALTER " "TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Besar singgahan indeks" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Besar singgahan data" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Besar singgahan log" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Ambang berkas log" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Besar penyangga transaksi" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Frekuensi checkpoint" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Ambang log data" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6574,48 +6676,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Ambang sampah" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Besar penyangga log" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Besar pertumbuhan berkas data" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Besar pertumbuhan berkas baris" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Jumlah berkas log" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6623,18 +6725,18 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Tautan Terkait" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6681,14 +6783,14 @@ msgstr "Dumping data untuk tabel" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Event" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definisi" @@ -6746,14 +6848,14 @@ msgstr "Tampilkan jenis MIME" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Inang" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Waktu pembuatan" @@ -6942,21 +7044,12 @@ msgstr "View" msgid "Export contents" msgstr "Ekspor isi" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Buka jendela phpMyAdmin baru" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Data untuk visualisasi GIS tidak ditemukan." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7051,12 +7144,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Nama tabel" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Nama kolom" @@ -7123,93 +7216,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Fungsi" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Sembunyikan" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Biner" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Biner - jangan diedit" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "direktori unggahan server web" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Edit/Tambah" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Lanjutkan penambahan untuk %s baris" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "selanjutnya" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Tambahkan sebagai baris baru" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Tambahkan sebagai baris baru dan abaikan galat" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Tampilkan kueri penambahan" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "kembali" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "tambahkan baris baru berikutnya" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Kembali ke halaman ini" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Edit baris berikut" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Nilai" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Menampilkan kueri SQL" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Nomor baris baru: %1$d" @@ -7224,34 +7301,34 @@ msgstr "Tidak ada" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Dari" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Menjadi" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Kirim" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Tambahkan prefiks tabel" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Tambahkan prefiks" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Benarkah Anda ingin untuk " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Tidak ada perubahan" @@ -7461,94 +7538,94 @@ msgstr "Muat ulang bingkai navigasi" msgid "This format has no options" msgstr "Format ini tidak memiliki opsi" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "tidak oke" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "Oke" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Aktif" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Ciri-ciri dari General Relation" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Tampilkan ciri-ciri" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Pembuatan PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Tampilkan komentar kolom" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Transformasi Browser" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Harap pelajari dokumentasi tentang cara memperbarui tabel column_comments " "Anda" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Kueri SQL yang dimarkahi" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Riwayat SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Tabel baru digunakan persisten" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Tabel preferensi UI persisten" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Preferensi pengguna" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Langkah cepat untuk menyiapkan fitur lanjut:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "tidak ada deskripsi" @@ -7556,7 +7633,7 @@ msgstr "tidak ada deskripsi" msgid "Slave configuration" msgstr "Konfigurasi slave" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Ubah atau konfigurasikan ulang server master" @@ -7568,13 +7645,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Nama pengguna" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Porta" @@ -7587,7 +7664,7 @@ msgid "Slave status" msgstr "Status slave" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variabel" @@ -7601,38 +7678,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Tambahkan pengguna replikasi slave" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Setiap pengguna" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Gunakan text field" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Semua inang" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Inang Ini" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Gunakan Host Table" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7646,7 +7723,7 @@ msgstr "Menghasilkan kata sandi" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7677,88 +7754,89 @@ msgstr "Event %1$s telah dibuat." msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Edit event" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Galat sewaktu memproses permintaan." -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detail" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Nama event" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Jenis event" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Ubah menjadi %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Dieksekusi pada" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Dieksekusi setiap" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Mulai" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Selesai" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Sewaktu selesai pertahankan" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Anda harus memasukkan nama event" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Anda harus memasukkan nilai interval yang valid untuk event." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Anda harus memasukkan waktu eksekusi yang valid untuk event." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Anda harus memasukkan jenis yang valid untuk event." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "Anda harus memasukkan definisi event." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Baru" @@ -7787,7 +7865,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Jenis routine invalid: \"%s\"" @@ -7806,69 +7884,69 @@ msgstr "Routine %1$s telah diubah." msgid "Routine %1$s has been created." msgstr "Routine %1$s telah dibuat." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Edit routine" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Nama routine" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parameter" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Arah" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Panjang/Nilai" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Tambahkan parameter" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Hapus parameter terakhir" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Jenis hasil" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Panjang/nilai hasil" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Opsi hasil" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Deterministik" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Jenis keamanan" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "Akses data SQL" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Anda harus memasukkan nama routine" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7876,36 +7954,36 @@ msgstr "" "Anda harus memasukkan panjang/nilai untuk parameter routine bagi jenis ENUM, " "SET, VARCHAR, dan VARBINARY." -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Anda harus memasukkan definisi routine." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Hasil eksekusi routine %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Jalankan routine" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Parameter routine" @@ -7923,38 +8001,38 @@ msgstr "Trigger %1$s telah diubah." msgid "Trigger %1$s has been created." msgstr "Tabel %1$s telah dibuat." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Edit trigger" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Nama trigger" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Waktu" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Anda harus memasukkan nama trigger" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Anda harus memasukkan waktu yang valid untuk trigger." -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Anda harus memasukkan event yang valid untuk trigger." -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Anda harus memberikan nama tabel yang valid" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Anda harus memasukkan definisi trigger." @@ -8038,7 +8116,7 @@ msgstr "Tidak ada event untuk ditampilkan." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8047,7 +8125,7 @@ msgstr "Tabel %s tidak ditemukan!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8055,7 +8133,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Harap konfigurasikan koordinasi bagi tabel %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8066,27 +8144,27 @@ msgstr "Skema basis data %s - Halaman %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "GALAT SKEMA:" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Skema Relational" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Daftar Isi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atribut" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Ekstra" @@ -8194,7 +8272,7 @@ msgstr "Bahasa tidak dikenal: %1$s." msgid "Current Server" msgstr "Server Saat Ini" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Basis data sumber" @@ -8212,7 +8290,7 @@ msgstr "Server jauh" msgid "Difference" msgstr "Perbedaan" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Basis data target" @@ -8231,7 +8309,7 @@ msgstr "Jalankan perintah SQL pada basis data %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Bersihkan" @@ -8240,11 +8318,11 @@ msgstr "Bersihkan" msgid "Columns" msgstr "Kolom" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Izinkan semua pengguna untuk mengakses markah ini" @@ -8339,7 +8417,7 @@ msgstr "" "Validator SQL tidak dapat dijalankan. Harap periksa kembali ekstension PHP " "yang diperlukan seperti yang tercatat dalam %sdokumentasi%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." @@ -8366,8 +8444,8 @@ msgstr "" "backslash, escaping atau quotes dan dengan menggunakan format sbb.: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indeks" @@ -8419,13 +8497,13 @@ msgstr "Tidak ada" msgid "As defined:" msgstr "Seperti yang didefinisikan" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Kunci Utama" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Teks penuh" @@ -8439,17 +8517,17 @@ msgstr "" msgid "after %s" msgstr "Setelah %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Tambahkan %s kolom" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Anda perlu menambahkan paling tidak satu kolom." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Mesin Penyimpanan" @@ -8457,41 +8535,6 @@ msgstr "Mesin Penyimpanan" msgid "PARTITION definition" msgstr "Definisi PARTITION" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Pencarian Tabel" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Pilih kolom (paling tidak satu):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Tambahkan kriteria pencarian (bagian klausa \"where\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Jumlah baris per halaman" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Urutan tampilan:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Menjelajahi nilai luar" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Lakukan \"kueri dengan contoh\" (wildcard: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8632,11 +8675,11 @@ msgstr "" msgid "Manage your settings" msgstr "Kelola pengaturan Anda" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Konfigurasi telah disimpan" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8647,7 +8690,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Konfigurasi tidak dapat disimpan" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8674,7 +8717,7 @@ msgstr "Penyortiran koneksi server" msgid "Appearance Settings" msgstr "Pengaturan Tampilan" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Pengaturan lain" @@ -8694,9 +8737,9 @@ msgstr "Versi perangkat lunak" msgid "Protocol version" msgstr "Versi protokol" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Pengguna" @@ -8823,130 +8866,130 @@ msgstr "" "Server berjalan dengan Suhosin. Harap rujuk %sdokumentasi%s untuk " "kemungkinan masalah." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Basis data tidak ditemukan" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Filter tabel menurut nama" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Filter tabel menurut nama" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Buat tabel" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Harap pilih basis data" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Tampilkan/Sembunyikan menu kiri." -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Simpan posisi" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Buat relasi" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Muat ulang" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Bantuan" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Tautan angular" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Tautan langsung" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Lekatkan kepada kisi" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Page creation failed" msgid "Toggle relation lines" msgstr "Pembuatan halaman gagal" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Bangun Kueri" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Pindahkan Menu" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Sembunyikan/Tampilkan semua" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Tampilkan/Sembunyikan Tabel tanpa relasi" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Jumlah tabel" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Hapus relasi" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Operator relasi" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Kecuali" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "subkueri" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Ubah nama menjadi" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Nama baru" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Agregasi" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Opsi aktif" @@ -8958,51 +9001,51 @@ msgstr "Halaman telah dibuat" msgid "Page creation failed" msgstr "Pembuatan halaman gagal" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Halaman" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Impor dari halaman terpilih" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Ekspor ke halaman terpilih" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Buat halaman dan ekspor ke dalamnya" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Nama halaman baru:" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Ekspor/Impor dengan skala" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "direkomendasikan" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Galat: relasi sudah ada." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Galat: Relasi tidak ditambahkan." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Relasi FOREIGN KEY ditambahkan" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Relasi internal ditambahkan" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relasi dihapus" @@ -9014,51 +9057,51 @@ msgstr "Galat sewaktu menyimpan koordinat untuk Desainer." msgid "Modifications have been saved" msgstr "Modifikasi telah disimpan" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Pengaturan tidak dapat disimpan, formulir kiriman mengandung galat" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Tidak dapat mengimpor konfigurasi" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Konfigurasi mengandung data yang tidak tepat pada beberapa isian." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Apakah Anda ingin mengimpor pengaturan yang lain?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Disimpan pada: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Impor dari berkas" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Impor dari penyimpanan peramban" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Pengaturan akan diimpor dari penyimpanan lokal peramban Anda" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Anda tidak punya pengaturan tersimpan!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Fitur ini tidak didukung oleh peramban web Anda" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Gabungkan dengan konfigurasi saat ini" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9067,37 +9110,37 @@ msgstr "" "Anda dapat mengatur pengaturan lain dengan mengubah config.inc.php, mis. " "dengan menggunakan %sskrip pengaturan%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Simpan di penyimpanan peramban" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Pengaturan akan disimpan di penyimpanan lokal peramban Anda." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Pengaturan yang ada akan ditimpa!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Anda dapat mengatur ulang semua pengaturan Anda dan memulihkan nilai bawaan. " -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Impor berkas" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Semua" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabel tidak ditemukan atau tidak diset di %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Berkas tidak ditemukan" @@ -9105,17 +9148,17 @@ msgstr "Berkas tidak ditemukan" msgid "Select binary log to view" msgstr "Pilih log biner untuk ditampilkan" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Berkas" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Potongkan pencarian yang ditampilkan" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Tampilkan pencarian yang lengkap" @@ -9131,7 +9174,7 @@ msgstr "Posisi" msgid "Original position" msgstr "Posisi aslinya" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informasi" @@ -9139,31 +9182,31 @@ msgstr "Informasi" msgid "Character Sets and Collations" msgstr "Set dan Penyortiran Karakter" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Sukses menghapus basis data %s." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statistik basis data" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Replikasi master" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Replikasi slave" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Aktifkan Statistik" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9175,157 +9218,157 @@ msgstr "" msgid "Storage Engines" msgstr "Mesin Penyimpanan" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Tampilkan dump (skema) basis data" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Modul" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Awal" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Plugin" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Modul" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Pustaka" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Versi" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Pembuat" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Lisensi" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "tidak aktif" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Mencakup semua hak akses selain GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Mengizinkan untuk mengubah struktur dari tabel yang ada." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Mengizinkan untuk mengubah dan menghapus routine tersimpan." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Mengizinkan untuk membuat basis data dan tabel baru." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Mengizinkan untuk membuat routine tersimpan." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Mengizinkan untuk membuat tabel baru." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Mengizinkan untuk membuat tabel temporer." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Mengizinkan untuk membuat, menghapus, dan mengubah nama akun pengguna." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Mengizinkan untuk membuat view baru." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Mengizinkan untuk menghapus data." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Mengizinkan penghapusan basis data dan tabel." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Mengizinkan untuk hapus tabel." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Mengizinkan penyiapan event untuk penjadwal event" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Mengizinkan eksekusi routine tersimpan." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Mengizinkan mengimpor data dari dan mengekspor data ke berkas." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Mengizinkan untuk menambah pengguna dan hak akses tanpa harus memuat ulang " "tabel hak akses." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Mengizinkan untuk tambah dan ganti data." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Membatasi jumlah kueri yang diperbolehkan untuk setiap pengguna dalam batas " "waktu satu jam." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9333,61 +9376,61 @@ msgstr "" "Membatasi jumlah perintah untuk merubah sebuah tabel atau basis data untuk " "setiap pengguna dalam batas waktu satu jam." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Membatasi jumlah koneksi simultan yang dapat dibuat pengguna." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Mengizinkan untuk melihat proses dari semua pengguna" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Tidak ada efek dalam versi MySQL yang digunakan." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Mengizinkan untuk memuat ulang pengaturan server dan membersihkan singgahan " "server." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Digunakan untuk replikasi dari slaves." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Mengizinkan untuk baca data." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Memberi akses ke seluruh daftar basis data." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Mengizinkan pencarian dengan cara SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Mengizinkan untuk shut-down server." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9398,169 +9441,169 @@ msgstr "" "global atau untuk menonaktifkan sebuah Thread yang dimiliki oleh pengguna " "lain." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Mengizinkan untuk membuat dan menghapus trigger" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Mengizinkan untuk ubah data." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Tanpa hak akses." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Tidak ada" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Hak akses khusus tabel" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Catatan: Nama hak akses MySQL dalam bahasa Inggris " -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administrasi" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Hak akses global" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Hak akses khusus basis data" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Batas dari sumber" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Perhatian: Perubahan pilihan ini ke posisi 0 (zero) akan menghapus batas " "yang telah ditentukan." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Informasi Masuk" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Jangan ubah Kata Sandi" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Pengguna tidak ditemukan." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Pengguna %s telah terdaftar!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Pengguna baru telah ditambahkan." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah memperbarui hak akses untuk %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Anda telah mencabut hak akses untuk %s." -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Sukses mengubah Kata Sandi untuk %s ." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Menghapus %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Tidak ada pengguna yang dipilih untuk dihapus!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Memuat hak akses" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Sukses menghapus pengguna yang dipilih." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Hak akses berhasil dimuat ulang." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Edit Hak Akses" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Cabut" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Ekspor" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Semua" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Hak Akses" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Hak Akses" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Ikhtisar pengguna" # Table column to indicate if the user able to grant a privilege -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Pemberi Izin" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Hapus pengguna yang dipilih" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9574,132 +9617,132 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Pengguna yang dipilih tidak ditemukan pada tabel hak akses." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Hak akses khusus kolom" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Tambahkan hak akses pada basis data berikut" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Tambahkan hak akses pada tabel berikut" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Ubah Informasi Masuk / Salin Pengguna" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Buat pengguna baru dengan hak akses yang sama dan ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... mempertahankan yang lama." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... hapus yang lama dari User Table." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Basis data untuk pengguna" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Berikan semua hak untuk basis data "%s"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Pengguna memiliki akses ke "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "khusus basis data" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Pengguna %s telah ditambahkan." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Galat tidak dikenal" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Tidak dapat tersambung ke master %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Tidak dapat membaca posisi log master. Mungkin ada masalah hak akses pada " "master." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Tidak dapat mengubah master." -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Server master berhasil diubah menjadi %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Server ini dikonfigurasikan sebagai master dalam proses replikasi." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Tampilkan status master" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Tampilkan slave yang tersambung" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9708,11 +9751,11 @@ msgstr "" "Server ini tidak dikonfigurasikan sebagai master dalam proses replikasi. " "Apakah Anda ingin mengonfigurasikannya?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Konfigurasi master" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9721,108 +9764,108 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Replikasikan semua basis data; Abaikan:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Abaikan semua basis data; Replikasikan:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Harap pilih basis data:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Thread SQL slave tidak berjalan!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Thread IO slave tidak berjalan!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Server ini dikonfiguraskan sebagai slave dalam proses replikasi. Apakah Anda " "ingin:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Lihat tabel status slave" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Sinkronkan basis data dengan master" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Kendalikan slave:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Jalankan semua" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Hentikan semua" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Reset slave" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Jalankan hanya Thread SQL" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Hanya hentikan Thread SQL" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Jalankan hanya Thread IO" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Hanya hentikan Thread IO" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Kelola galat:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Pengabaian galat dapat menyebabkan master dan slave tidak tersinkronisasi" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Lewati galat saat ini" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Lewati berikutnya" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "galat." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -9831,12 +9874,12 @@ msgstr "" "Server ini tidak dikonfigurasikan sebagai slave dalam proses replikasi. " "Apakah Anda ingin mengonfigurasikannya?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Sukses hentikan Thread %s." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -9844,137 +9887,137 @@ msgstr "" "phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah " "ditutup terlebih dahulu" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Handler" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Singgahan kueri" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Thread" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Data temporer" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Penambahan tunda" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Singgahan kunci" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Join" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Pengurutan" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Koordinator transaksi" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Bersihkan (tutup) semua tabel" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Tampilkan tabel terbuka" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Tampilkan inang slave" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Tampilka status slave" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Bersihkan singgahan kueri" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Informasi Waktu Eksekusi" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Semua variabel status" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Pemantauan" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Penasihat" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Laju penyegaran:" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy #| msgid "Filter" msgid "Filters" msgstr "Filter" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Mengandung kata:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Tampilkan hanya nilai peringatan" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filter menurut kategori..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Tampilkan nilai tanpa format" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Tautan terkait:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Jalankan penganalisis" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Instruksi" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -9982,32 +10025,32 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Perintah sejak awal: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Keterangan" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Lalu lintas jaringan sejak awal: %sw" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10015,63 +10058,63 @@ msgstr "" "Server MySQL ini berfungsi sebagai master dan slave dalam " "proses replication." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" "Server MySQL ini berfungsi sebagai master dalam proses " "replication." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" "Server MySQL ini berfungsi sebagai slave dalam proses replication." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Status replikasi" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Penerimaan" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Pengiriman" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "Koneksi konkuren maks." -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Gagal" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Pengguguran" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Perintah" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10079,11 +10122,11 @@ msgstr "" "Jumlah koneksi yang digugurkan karena klien terputus tanpa menutup koneksi " "dengan baik." -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Jumlah upaya koneksi ke server MySQL yang gagal." -#: server_status.php:1322 +#: server_status.php:1321 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 " @@ -10093,16 +10136,16 @@ msgstr "" "melebihi nilai binlog_cache_size dan menggunakan berkas temporer untuk " "menyimpan perintah dari transaksi." -#: server_status.php:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "Jumlah transaksi yang menggunakan singgahan log biner temporer." -#: server_status.php:1324 +#: server_status.php:1323 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:1325 +#: server_status.php:1324 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 " @@ -10114,11 +10157,11 @@ msgstr "" "mungkin perlu meningkatkan nilai tmp_table_size agar tabel temporer disimpan " "di yang berbasis memori daripada yang berbasis diska." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Jumlah berkas temporer yang telah dibuat mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10126,7 +10169,7 @@ msgstr "" "Jumlah tabel temporer dalam-memori yang dibuat otomatis oleh server sewaktu " "mengeksekusi perintah." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10134,7 +10177,7 @@ msgstr "" "Jumlah baris yang ditulis oleh INSERT DELAYED yang menyebabkan beberapa " "galat (kemungkinan karena kunci duplikat)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10142,30 +10185,30 @@ msgstr "" "Jumlah thread handler INSERT DELAYED yang dipakai. Setiap tabel berbeda yang " "menggunakan INSERT DELAYED mendapat satu thread sendiri." -#: server_status.php:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Jumlah baris INSERT DELAYED yang ditulis." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Jumlah perintah FLUSH yang dieksekusi." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Jumlah perintah COMMIT internal." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Berapa kali suatu baris dihapus dari suatu tabel." -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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, " @@ -10175,7 +10218,7 @@ msgstr "" "bahwa server melakukan banyak pemindaian indeks lengkap; sebagai contoh, " "SELECT col1 FROM foo, dengan asumsi bahwa col1 diindeks." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10184,7 +10227,7 @@ msgstr "" "tinggi merupakan indikasi bagus bahwa kueri dan tabel Anda diindeks dengan " "baik." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10194,7 +10237,7 @@ msgstr "" "bertambah jika Anda melakukan kueri terhadap kolom indeks dengan suatu " "rentang batasan atau jika Anda melakukan pemindaian indeks." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10202,7 +10245,7 @@ msgstr "" "Jumlah permintaan membaca baris sebelumnya dalam urutan kunci. Metode baca " "ini terutama digunakan untuk mengoptimalkan ORDER BY ... DESC." -#: server_status.php:1339 +#: 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 " @@ -10214,7 +10257,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:1340 +#: server_status.php:1339 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 " @@ -10226,42 +10269,42 @@ msgstr "" "bahwa tabel Anda tidak diindeks dengan baik atau bahwa kueri Anda tidak " "ditulis dengan memanfaatkan indeks yang Anda miliki." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Jumlah perintah ROLLBACK internal." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Jumlah permintaan untuk memperbarui baris dalam tabel." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Jumlah permintaan untuk menambah baris dalam tabel." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Jumlah halaman yang mengandung data (kotor atau bersih)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Jumlah halaman kotor saat ini." -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Jumlah halaman bebas." -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10269,33 +10312,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10304,244 +10347,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Jumlah operasi fsync() tunda saat ini." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Jumlah baca tunda saat ini." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Jumlah tulis tunda saat ini." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Jumlah data yang dibaca sampai saat ini, dalam bita." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Jumlah total baca data." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Jumlah total tulis data." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Jumlah halaman yang dibaca." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Jumlah halaman yang ditulis." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Jumlah baris yang dihapus dari tabel InnoDB." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Jumlah baris yang ditambahkan pada tabel InnoDB." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Jumlah baris yang dibaca dari tabel InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Jumlah baris yang diperbarui pada tabel InnoDB." -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, 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:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10549,99 +10592,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10649,18 +10692,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10668,63 +10711,63 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "Tingkat penggunaan singgahan thread %%" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Jalankan Pemantauan" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Petunjuk/Penyiapan" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Selesai mengatur ulang/mengedit bagan" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Tambahkan bagan" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Atur ulang/edit bagan" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Laju penyegaran" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Kolom bagan" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Pengaturan bagan" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Kembalikan nilai bawaan" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Instruksi Pemantauan" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10733,7 +10776,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10741,18 +10784,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10760,11 +10803,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Harap catat:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10772,194 +10815,194 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Bagan bawaan" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Variabel status" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Pilih seri:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Biasa dipantau" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "atau masukkan nama variabel:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Tampilkan sebagai nilai diferensial" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Terapkan pemisah" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Sertakan satuan kepada nilai data" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Tambahkan seri ini" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Bersihkan seri" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Seri pada Bagan:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Statistik log" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Rentang waktu pilihan:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Hanya sertakan perintah SELECT, INSERT, UPDATE, dan DELETE" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Penganalisis kueri" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d detik" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d menit" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Tidak dapat terhubung ke sumber" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Tidak dapat terhubung ke target" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Basis data '%s' tidak ditemukan." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Sinkronisasi Struktur" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Sinkronisasi Data" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "tidak ada" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Perbedaan Struktur" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Perbedaan data" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Tambahkan kolom" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Hapus kolom" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Ubah kolom" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Hapus indeks" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Terapkan indeks" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Perbarui baris" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Tambahkan baris" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Terapkan Perubahan Terpilih" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Sinkronisasi Basis Data" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Basis data target telah disinkronisasikan dengan basis data sumber" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Kueri tereksekusi" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Masukkan secara manual" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Koneksi sekarang" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Konfigurasi: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Soket" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10967,19 +11010,19 @@ msgstr "" "Basis data target akan disinkronisasikan secara lengkap dengan basis data " "sumber. Basis data sumber tetap tidak berubah." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Pengaturan variabel gagal" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Variabel dan pengaturan server" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Nilai sesi" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Nilai global" @@ -11267,167 +11310,167 @@ msgstr "Kunci harus terdiri dari huruf, angka, [em]dan[/em] karakter khusus." msgid "Wrong data" msgstr "Data salah" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Menggunakan markah \"%s\" sebagai kueri penjelajahan bawaan." -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Benarkah Anda ingin untuk " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Tampilkan sebagai kode PHP" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "SQL tervalidasi" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Hasil SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Diciptakan oleh" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Judul" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s berhasil diubah" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Sukses menghapus pengguna yang dipilih." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Bar" msgctxt "Chart type" msgid "Bar" msgstr "Batang" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Kolom" -#: tbl_chart.php:84 +#: tbl_chart.php:87 #, fuzzy #| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "Garis" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Spline" msgctxt "Chart type" msgid "Spline" msgstr "Spline" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "Pie" msgctxt "Chart type" msgid "Pie" msgstr "Pai" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Bertumpuk" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Judul bagan" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "Sumbu-X" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Seri:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Label Sumbu-X" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "Nilai X" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Label Sumbu-Y" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Nilai Y" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Tabel %s sudah ada!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Tabel %1$s telah dibuat." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Tampilkan Dump (Skema) dari tabel" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Tampilkan Visualisasi GIS" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Lebar" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Tinggi" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Kolom label" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Tidak ada --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Kolom spasial" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Gambar ulang" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Simpan dalam berkas" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Nama berkas" @@ -11443,32 +11486,32 @@ msgstr "Gagal ubah nama Indeks ke PRIMARY!" msgid "No index parts defined!" msgstr "Bagian indeks belum diberi definisin!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Tambahkan indeks" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Modus edit" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Nama indeks:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" harus menjadi nama dan hanya dipakai sebagai nama " "kunci primer!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Jenis indeks:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Tambahkan kolom  %s  pada indeks" @@ -11491,256 +11534,256 @@ msgstr "Tabel %s telah dipindahkan ke %s." msgid "Table %s has been copied to %s." msgstr "Tabel %s telah disalin ke %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Nama tabel kosong!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Urutkan tabel berdasarkan" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(unik)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Pindahkan tabel ke (basis data.tabel):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Pilihan untuk tabel" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Ubah nama tabel menjadi " -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Salin tabel ke (basis data.nama tabel):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Pindah ke tabel salinan" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Pemeliharaan tabel" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmentasikan tabel" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s telah dibersihkan" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Bersihkan tabel (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Hapus data atau tabel" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Kosongkan tabel (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Hapus tabel (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Pemeliharaan partisi" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partisi %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analisis" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Periksa" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimalkan" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Bangun ulang" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Perbaiki" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Hapus partisi" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Cek integriti referensial:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Menampilkan tabel" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Penggunaan ruang" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efektif" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Statistik Baris" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamis" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Panjang baris" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Besar baris " -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Indeks otomatis berikut" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Relasi internal" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Spasial" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Jelajahi nilai distingtif" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Tambahkan kunci primer" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Tambahkan indeks unik" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Tambahkan indeks SPATIAL" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Tambahkan indeks FULLTEXT" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Tidak ada" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Kolom %s telah dihapus" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Suatu kunci primer telah ditambahkan pada %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Suatu indeks telah ditambahkan pada %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Tampilkan tindakan lain" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Hapus kolom" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Tampilan edit" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Tampilan relasi" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Usulkan struktur tabel" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Tambah kolom" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Pada Akhir Tabel" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Pada Awal Tabel" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Setelah %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Buat indeks pada  %s  kolom" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -11896,70 +11939,38 @@ msgstr "Lacak manipulasi data dari pernyataan berikut:" msgid "Create version" msgstr "Buat versi" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Lakukan \"kueri dengan contoh\" (wildcard: \"%\") untuk dua kolom yang " -"berbeda" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Kriteria pencarian tambahan" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Cara pakai" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Reset" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Dapatkan tema lainnya" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Jenis MIME yang tersedia" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Jenis MIME yang dicetak dalam huruf miring tidak memiliki fungsi transformasi" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Transformasi yang tersedia" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Deskripsi" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Hak Akses Anda untuk melanjut tidak cukup!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profil telah diperbarui." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Nama VIEW" diff --git a/po/it.po b/po/it.po index 5edc12771f..2a2fb683c9 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-06-03 03:23+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: italian \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Mostra tutti" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Numero pagina:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "bloccando gli aggiornamenti fra finestre a causa di qualche impostazione di " "sicurezza." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Esegui" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Chiave" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Descrizione" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Usa questo valore" @@ -108,88 +108,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Il database %1$s è stato creato." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Commento del database: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Commenti alla tabella" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Campo" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Predefinito" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Collegamenti a" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Commenti" @@ -198,14 +199,14 @@ msgstr "Commenti" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "No" @@ -218,120 +219,120 @@ msgstr "No" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Sì" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Visualizza dump (schema) del database" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Non ci sono tabelle nel database." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Seleziona tutto" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Deseleziona tutto" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Il nome del database è vuoto!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Il database %1$s è stato rinominato come %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Il database %1$s è stato copiato come %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Rinomina il database come" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Elimina il database" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Il database %s è stato eliminato." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Cancella il database (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Copia il database come" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Solo struttura" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struttura e dati" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Solo dati" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prima di copiare" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Aggiungi %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Aggiungi valore AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Aggiungi vincoli" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Passa al database copiato" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Codifica caratteri" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -340,59 +341,59 @@ msgstr "" "Le opzioni di configurazione dello storage di phpMyAdmin sono state " "disabilitate. Per scoprire la ragione, clicca %squi%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Modifica o esporta schema relazionale" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabella" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Righe" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Dimensione" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "in uso" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Creazione" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Ultimo cambiamento" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Ultimo controllo" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -403,210 +404,210 @@ msgstr[1] "%s tabelle" msgid "You have to choose at least one column to display" msgstr "Devi scegliere almeno un campo da mostrare" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Passa a %svisual builder%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Ordinamento" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Crescente" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Decrescente" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Mostra" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Criterio" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Aggiungi" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "E" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Elimina" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Oppure" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Modifica" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Aggiungi/Cancella criterio di riga" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Aggiungi/Cancella campi" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Aggiorna Query" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Utilizza tabelle" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query sul database %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Invia Query" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Accesso negato" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "almeno una delle parole" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "tutte le parole" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "la frase esatta" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "come espressione regolare" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Cerca i risultati per \"%s\" %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totale: %s corrispondenza" msgstr[1] "Totale: %s corrispondenze" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Cerca nel database" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Parole o valori da cercare (carattere jolly: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Cerca:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Le parole sono separate da spazi (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Nelle tabelle:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "All'interno del campo:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Non ci sono tabelle nel database" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "sconosciuto" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "La tabella %s è stata svuotata" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "La vista %s è stata eliminata" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "La tabella %s è stata eliminata" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Il tracking è attivo." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Il tracking non è attivo." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -615,185 +616,186 @@ msgstr "" "Questa vista ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replicazione" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Totali" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Se selezionati:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Seleziona tutti" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Controllo addizionale" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esporta" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Visualizza per stampa" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Svuota" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Elimina" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Controlla tabella" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Ottimizza tabella" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Ripara tabella" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizza tabella" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Aggiungi prefisso alla tabella" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Sostituisci il prefisso della tabella" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copia tabella col prefisso" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dizionario dei dati" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Tabelle monitorate" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Database" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Ultima versione" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Creato" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Aggiornato" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Stato" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Azione" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Cancella dati di tracciamento per questa tabella" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "attivo" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "non attivo" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versioni" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Rapporto tracking" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Snapshot della struttura" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Tabelle non monitorate" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Controlla tabella" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Log database" @@ -806,16 +808,16 @@ msgid "Selected export type has to be saved in file!" msgstr "" "Il tipo di esportazione selezionato necessita di essere salvato in un file!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Parametri errati!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spazio insufficiente per salvare il file %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -823,12 +825,12 @@ msgstr "" "Il file %s esiste già sul server, prego, cambia il nome del file o seleziona " "l'opzione di sovrascriittura." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Il server web non possiede i privilegi per salvare il file %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Il dump è stato salvato nel file %s." @@ -837,86 +839,86 @@ msgstr "Il dump è stato salvato nel file %s." msgid "Invalid export type" msgstr "Tipo di esportazione non valido" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Valore per il campo \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Usa OpenStreetMaps come livello base" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Punto" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punto %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Aggiungi un punto" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Linestring" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Cerchio Esterno" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Cerchio Interno" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Aggiungi un linestring" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Aggiunge una cerchia interna" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Poligono" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Aggiungi un poligono" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Aggiungi una geometria" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Output" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -924,7 +926,7 @@ msgstr "" "Seleziona \"GeomFromText\" nella colonna \"Funzione\" ed incolla la stringa " "sottostante nel campo \"Valore\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -934,21 +936,21 @@ msgstr "" "Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare " "questo limite." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Visualizzazione segnalibri" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Il bookmark è stato cancellato." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Il file non può essere letto" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -958,7 +960,7 @@ msgstr "" "supportato. Il supporto per questo tipo di compressione potrebbe non essere " "ancora stato implementato oppure è disabilitato nella tua configurazioni." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -969,30 +971,30 @@ msgstr "" "configurazione di PHP per l'upload di un file. Vedi [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Impossibile convertire il set di caratteri del file in assenza di una " "libreria di conversione dei caratteri installata" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Non è stato possibile caricare i plugin di importazione, controlla la tua " "installazione!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Segnalibro %s creato" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importazione eseguita con successo, %d query eseguite." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1000,7 +1002,7 @@ msgstr "" "Superato il tempo limite per l'esecuzione dello script, se vuoi portare a " "termine l'importazione inoltra nuovamente il file ed il processo riprenderà." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1009,23 +1011,23 @@ msgstr "" "evidenzia che il limite di tempo impostato nella configurazione è troppo " "basso per consentire a phpMyAdmin di terminare l'operazione." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Indietro" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funziona meglio con browser che supportano i frames." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "I comandi \"DROP DATABASE\" sono disabilitati." @@ -1034,7 +1036,7 @@ msgstr "I comandi \"DROP DATABASE\" sono disabilitati." msgid "Do you really want to execute \"%s\"?" msgstr "Sei sicuro di voler eseguire \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Stai per DISTRUGGERE COMPLETAMENTE un intera base di dati!" @@ -1074,7 +1076,7 @@ msgstr "Aggiungi Indice" msgid "Edit Index" msgstr "Modifica Indice" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Aggiungi %d campo/i all'indice" @@ -1092,16 +1094,16 @@ msgstr "Il nome di host è vuoto!" msgid "The user name is empty!" msgstr "Il nome utente è vuoto!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "La password è vuota!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "La password non coincide!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Aggiungi utente" @@ -1118,23 +1120,24 @@ msgstr "Rimozione Utenti Selezionati" msgid "Close" msgstr "Chiudi" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Modifica" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Grafico del traffico in tempo reale" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Grafico delle connessioni e processi in tempo reale" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Grafico delle query in tempo reale" @@ -1144,24 +1147,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Totale" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Altre" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1181,7 +1184,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Processi" @@ -1199,7 +1202,7 @@ msgstr "Numero di 'questions' dall'ultimo aggiornamento" msgid "Questions (executed statements by the server)" msgstr "Questions (instruzioni eseguiti dal server)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Statistiche query" @@ -1245,14 +1248,14 @@ msgid "System swap" msgstr "Swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1304,32 +1307,32 @@ msgstr "Byte inviati" msgid "Bytes received" msgstr "Byte ricevuti" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Connessioni" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1343,11 +1346,11 @@ msgstr "%d tabella/e" msgid "Questions" msgstr "Domande" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Traffico" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Impostazioni" @@ -1367,11 +1370,11 @@ msgstr "Aggiungi diagramma alla griglia" msgid "Please add at least one variable to the series" msgstr "Aggiungi almeno una variabile alla serie" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Nessuno" @@ -1471,7 +1474,7 @@ msgstr "Modifica impostazioni" msgid "Current settings" msgstr "Impostazioni attuali" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Titolo del diagramma" @@ -1561,7 +1564,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Tempo" @@ -1658,10 +1661,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:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importa" @@ -1713,9 +1716,9 @@ msgstr "Variabile / formula utilizzata" msgid "Test" msgstr "Prova" -#: 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 +#: 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 msgid "Cancel" msgstr "Annulla" @@ -1727,11 +1730,11 @@ msgstr "Caricamento" msgid "Processing Request" msgstr "Elaborazione Richiesta" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Errore nel processare la richiesta" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Nessun database selezionato." @@ -1743,9 +1746,9 @@ msgstr "Eliminazione Campo" msgid "Adding Primary Key" msgstr "Creazione chiave primaria" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1785,17 +1788,17 @@ msgstr "Nascondi gli indici" msgid "Show indexes" msgstr "Mostra gli indici" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Controllo delle chiavi straniere:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Abilitato)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Disabilitato)" @@ -1825,7 +1828,7 @@ msgstr "" "La definizione delle funzioni memorizzate deve contenere un istruzione " "RETURN!" -#: js/messages.php:272 libraries/rte/rte_routines.lib.php:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "Editor di ENUM/SET" @@ -1866,8 +1869,8 @@ msgstr "Mostra riquadro query SQL" msgid "No rows selected" msgstr "Nessuna riga selezionata" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Modifica" @@ -1875,18 +1878,18 @@ msgstr "Modifica" msgid "Query execution time" msgstr "Tempo di esecuzione della query" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Salva" @@ -1898,7 +1901,7 @@ msgstr "Nascondi criteri di ricerca" msgid "Show search criteria" msgstr "Mostra criteri di ricerca" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Ricerca Zoom" @@ -1948,12 +1951,12 @@ msgstr "Risultati della query" msgid "Data point content" msgstr "Contenuto del punto" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Copia" @@ -1973,7 +1976,7 @@ msgstr "Seleziona Foreign Key" msgid "Please select the primary key or a unique key" msgstr "Seleziona la chiave primaria o una chiave univoca" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Scegli il campo da mostrare" @@ -2068,7 +2071,7 @@ msgstr "Genera" msgid "Change Password" msgstr "Cambia password" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Più" @@ -2159,63 +2162,63 @@ msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Lug" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Ott" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dic" @@ -2253,32 +2256,32 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sab" @@ -2392,16 +2395,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "al secondo" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "al minuto" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "all'ora" @@ -2424,46 +2427,232 @@ msgstr "" msgid "Font size" msgstr "Dimensione font" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Salva i dati modificati" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Ripristina l'ordine dei campi" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Inizio" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Precedente" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Prossima" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Ultima" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Riga iniziale" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Numero di righe" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Modalità" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "orizzontale" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "orizzontale (headers ruotati)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "verticale" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "Intestazioni ogni %s righe" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Ordina per chiave" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Opzioni" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Testi parziali" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Testi completi" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Chiave relazionale" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Campo di visualizzazione relazionale" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Mostra contenuti binari" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Mostra contenuti BLOB" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Mostra contenuti binari come esadecimali" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Nascondi le trasformazioni del browser" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Well Known Text" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Well Known Binary" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Rimuovi" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Può essere approssimato. Vedi [a@./Documentation.html#faq3_11@Documentation]" +"FAQ 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "nella query" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Mostrando le righe" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "totale" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "La query ha impiegato %01.4f sec" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operazioni sui risultati della query" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Vista stampa (con full text)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Mostra diagramma" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Visualizzare dati GIS" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Crea vista" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Link non trovato" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Troppi errori, alcuni messaggi non verranno visualizzati." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Il file non era un file caricato." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Il file caricato eccede il parametro upload_max_filesize in php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "Il file caricato eccede il parametro MAX_FILE_SIZE specificato nel form HTML." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Il file è stato solo parzialmente caricato." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Non trovo la cartella temporanea." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Non riesco a scrivere il file su disco." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Caricamento del file interrotto per estensione errata." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Si é verificato un errore sconosciuto durante il caricamento del file." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2471,26 +2660,39 @@ msgstr "" "Errore nello spostare il file caricato, vedi [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Si é verificato un errore durante lo spostamento del file." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Impossibile leggere dal file (dopo lo spostamento) caricato." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Apri una nuova finestra di PhpMyAdmin" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Da questo punto in poi, i cookie devono essere abilitati." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indici" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unica" @@ -2503,8 +2705,8 @@ msgstr "Compresso" msgid "Cardinality" msgstr "Cardinalità" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Commenti" @@ -2527,128 +2729,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Database" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struttura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Inserisci" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operazioni" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Tracking" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "La tabella sembra essere vuota!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Il database sembra essere vuoto!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Query da esempio" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilegi" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Routines" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Eventi" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Utenti" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sincronizza" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Log binario" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variabili" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Set di caratteri" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Plugin" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Motori" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Errore" @@ -2673,7 +2875,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d riga inserita." msgstr[1] "%1$d righe inserite." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Si é verificato un errore durante la creazione del PDF:" @@ -2768,17 +2970,100 @@ 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 +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 +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 +msgid "Value" +msgstr "Valore" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Ricerca nella Tabella" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Modifica/Inserisci" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Seleziona campi (almeno uno):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Aggiungi condizioni di ricerca (corpo della clausola \"where\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Numero di righe per pagina" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Ordine di visualizzazione:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Usate questo campo per etichettare ogni punto" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Massimo numero di righe da visualizzare" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Naviga tra i valori esterni" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Ulteriori criteri di ricerca" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Esegui \"query da esempio\" (carattere jolly: \"%\") per due campi differenti" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Esegui \"query da esempio\" (carattere jolly: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Esplora/Modifica i punti" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Come usare" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Riavvia" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" "Non è stato trovato nessun percorso per l'immagine valido per il tema %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Nessuna anteprima disponibile." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "prendilo" @@ -2797,7 +3082,7 @@ msgstr "Tema %s non trovato!" msgid "Theme path not found for theme %s!" msgstr "Percorso per il tema non trovato %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Tema" @@ -3094,13 +3379,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Impossibile connettersi: impostazioni non valide." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Benvenuto in %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3109,7 +3394,7 @@ 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." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3125,61 +3410,57 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Non riesco ad utilizzare Blowfish da mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Da questo punto in poi, JavaScript deve essere abilitato" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Connetti" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Puoi inserire l'Indirizzo IP/hostname e la porta, separati da uno spazio." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Nome utente:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Password:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Scelta del server" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Da questo punto in poi, i cookie devono essere abilitati." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Login senza password è vietato dalla configurazione (vedi AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Nessuna attività da %s secondi o più, si prega di autenticarsi nuovamente" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Impossibile eseguire il login nel server MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Nome utente o password errati. Accesso negato." @@ -3211,7 +3492,7 @@ msgstr "condiviso" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabelle" @@ -3223,13 +3504,13 @@ msgstr "Tabelle" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Dati" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Overhead" @@ -3254,19 +3535,11 @@ msgstr "Controlla i privilegi per il database "%s"." msgid "Check Privileges" msgstr "Controlla i privilegi" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "possibile exploit" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "chiave numerica rilevata" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Lettura del file di configurazione fallita" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3274,12 +3547,12 @@ msgstr "" "Questo di solito significa che vi è un errore di sintassi in esso, verifica " "eventuali errori riportati in basso." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Non posso caricare la configurazione predefinita da: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3287,205 +3560,191 @@ msgstr "" "La direttiva [code]$cfg['PmaAbsoluteUri'][/code] DEVE essere impostata nel " "file di configurazione!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Indice server non valido: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome host per il server %1$s non valido. Controlla la tua configurazione." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Metodo di autenticazione impostato nella configurazione non valido:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "Tentativo di sovrascrivere GLOBALS" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "possibile exploit" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "chiave numerica rilevata" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Dimensione massima: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Documentazione" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "Query SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "Messaggio di MySQL: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Non sono riuscito a connettermi all'SQL Validator!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Spiega SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Non Spiegare SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Senza codice PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Crea il codice PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Aggiorna" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Non Validare SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valida SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Modifica inline di questa query" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profiling" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y alle %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s giorni, %s ore, %s minuti e %s secondi" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Parametro mancante:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Inizio" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Precedente" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Prossima" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Ultima" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Passa al database "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La %s funzionalità è affetta da un bug noto, vedi %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Clicca per alternare" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Cerca sul tuo computer:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selezionare dalla cartella di upload del server web %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "La directory impostata per l'upload non può essere trovata" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Nessun file da caricare" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Esegui" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Stampa" @@ -3515,8 +3774,8 @@ msgid "Closed" msgstr "Chiuso" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Disabilitata" @@ -3659,9 +3918,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Riavvia" @@ -3888,10 +4147,6 @@ msgstr "Proponi la struttura della tabella" msgid "Show binary contents as HEX by default" msgstr "Mostra sempre contenuti binari come esadecimali" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Mostra contenuti binari come esadecimali" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Mostra i database come una lista invece di un menu a tendina" @@ -3949,7 +4204,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Massimo tempo di esecuzione" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Salva con nome" @@ -3958,7 +4213,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formato" @@ -4062,7 +4317,7 @@ msgid "MIME type" msgstr "Tipo MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relazioni" @@ -5695,9 +5950,9 @@ msgstr "Richiede l'abilitazione del validatore SQL" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Password" @@ -5995,14 +6250,6 @@ msgstr "Controllate i privilegi della cartella che contiene il database." msgid "Details..." msgstr "Dettagli..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Può essere approssimato. Vedi [a@./Documentation.html#faq3_11@Documentation]" -"FAQ 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6010,18 +6257,18 @@ msgstr "" "Connessione per controluser come definito nella configurazione fallita." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Cambia password" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Nessuna Password" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Reinserisci" @@ -6042,22 +6289,22 @@ msgstr "Crea un nuovo database" msgid "Create" msgstr "Crea" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Nessun Privilegio" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nome" @@ -6216,26 +6463,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Conversione di Codifica:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "committed on %1$s by %2$s" msgstr "Crea versione %1$s di %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %1$s of %2$s" msgid "authored on %1$s by %2$s" @@ -6358,173 +6605,27 @@ msgstr "Opzioni specifisce al formato:" msgid "Language" msgstr "Lingua" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Salva i dati modificati" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Ripristina l'ordine dei campi" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Riga iniziale" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Numero di righe" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Modalità" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "orizzontale" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "orizzontale (headers ruotati)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "verticale" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Intestazioni ogni %s righe" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Ordina per chiave" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Opzioni" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Testi parziali" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Testi completi" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Chiave relazionale" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Campo di visualizzazione relazionale" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Mostra contenuti binari" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Mostra contenuti BLOB" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Nascondi le trasformazioni del browser" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Well Known Text" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Well Known Binary" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "La riga è stata cancellata" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Rimuovi" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "nella query" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Mostrando le righe" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "totale" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "La query ha impiegato %01.4f sec" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operazioni sui risultati della query" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Vista stampa (con full text)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Mostra diagramma" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Visualizzare dati GIS" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Crea vista" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Link non trovato" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Informazioni sulla versione" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Home directory dei dati" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "La parte comune del path della directory per tutti i file dati InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "File dati" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Incremento autoextend" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6532,11 +6633,11 @@ msgstr "" "La dimensione di incremento per aumentare la dimensione di una tabella " "autoextending quando diventa piena." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Dimensione del buffer per pool" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6544,79 +6645,79 @@ msgstr "" "La dimensione del buffer di memoria InnoDB memorizza dati e indici delle " "proprie tabelle." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Stato InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Utilizzo del Buffer Pool" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "pagine" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Pagine libere" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Pagine sporche" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Pagine contenenti dati" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Pagine che devono essere mandate in flush" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Pagine occupate" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Attività del Buffer Pool" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Richieste di lettura" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Richieste di scrittura" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Non letto" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "In attesa di scrittura" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Non letto in %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "In attesa di scrittura in %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Domensione del puntatore dati" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6625,11 +6726,11 @@ msgstr "" "CREATE TABLE per le tabelle MyISAM quando non è stata specificata l'opzione " "MAX_ROWS." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Modalità di ripristino automatico" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6637,11 +6738,11 @@ msgstr "" "La modalità di irppristino automatico di tabelle MyISAM corrotte, come " "impostato tramite l'opzione di lan cio del server --myisam-recover." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Dimensione massima dei file temporanei di ordinamento" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6651,11 +6752,11 @@ msgstr "" "rigenerazione di un indice MyISAM (durante un REPAIR TABLE, ALTER TABLE, o " "LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Dimensione massima per i file temporanei nella creazione di un indice" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6665,11 +6766,11 @@ msgstr "" "occuperebbe più spazio dell'utilizzo del metodo key cache con la quantità " "ivi specificata: perciò si deve prediligere il metodo key cache." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Thread di riparazione" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6678,11 +6779,11 @@ msgstr "" "creati in parallelo (ogni indice nel suo thread) durante il processo di " "ordinamento Repair by." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Ordina la dimensione del buffer" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6690,11 +6791,11 @@ msgstr "" "Il buffer che viene allocato nell'ordinamento degli indici MyISAM durante un " "REPAIR TABLE o nella creazione degli indici con CREATE INDEX o ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Dimensione cache degli indici" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6703,11 +6804,11 @@ msgstr "" "default è 32MB. La memoria allocata qui è usata solo per la cache delle " "pagine di indice." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Dimensione cache dei record" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6717,11 +6818,11 @@ msgstr "" "cache dei dati della tabella. The default value is 32MB. This memory is used " "to cache changes to the handle data (.xtd) and row pointer (.xtr) files." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Dimensione cache dei log" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6729,11 +6830,11 @@ msgstr "" "L'ammontare di memoria allocata per la cache del log delle trasazioni. Il " "valore di default è 16MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Soglia dei file di log" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6741,11 +6842,11 @@ msgstr "" "La dimensione del log delle trasazioni prima di un rollover, quando viene " "creato un nuovo file. Il valore di default è 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Dimensione buffer delle transazioni" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6753,11 +6854,11 @@ msgstr "" "La dimensione del buffer globale dei log di trasazione (il motore alloca 2 " "buffer di questa dimensione). Il valore di default è 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Frequheckpoint" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6765,11 +6866,11 @@ msgstr "" "L'ammontare dei dati scritti sul log delle trasazioni, prima che sia " "eseguito un checkpoint. Il valore di default è 24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Dimensione del log dei dati" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6782,11 +6883,11 @@ msgstr "" "massima dei dati che possono essere memorizzati complessivamente nel " "database." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Dimensione del cestino" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6795,11 +6896,11 @@ msgstr "" "debba essere compattato. Il valore deve essere compreso tra 1 e 99. Il " "valore di default è 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Dimensione del buffer dei log" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6809,28 +6910,28 @@ msgstr "" "di default è 256MB. Il motore allora un buffer per ciascun thread, ma solo " "se è necessario scrivere un log dei dati." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Dimensione incremento del file dei dati" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Dimensione dell'incremento dei handle data file (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Dimensione incremento del file delle righe" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" "Dimensione dell'incremento del file (.xtr) con i puntatori delle righe." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Numero dei file di log" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6842,7 +6943,7 @@ msgstr "" "cancellati, altrimenti vengono rinominati e gli viene assegnato il numero " "più alto." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6851,11 +6952,11 @@ msgstr "" "La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile " "su %sPrimeBase XT Home Page%s." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Collegamenti Associati" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "Il Blog The PrimeBase XT Blog di Paul McCullagh" @@ -6904,14 +7005,14 @@ msgstr "Dump dei dati per la tabella" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Evento" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definizione" @@ -6969,14 +7070,14 @@ msgstr "Mostra tipi MIME" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Host" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Generato il" @@ -7188,21 +7289,12 @@ msgstr "Viste" msgid "Export contents" msgstr "Esporta contenuti" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Apri una nuova finestra di PhpMyAdmin" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Nessun data trovato per la visualizzazione GIS." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "Tentativo di sovrascrivere GLOBALS" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7303,12 +7395,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Nome tabella" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Nomi dei campi" @@ -7380,94 +7472,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funzione" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Nascondi" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binario" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Dato binario - non modificare" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "directory di upload del web-server" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Modifica/Inserisci" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Riprendi inserimento con %s righe" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "e quindi" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Inserisci come nuova riga" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Inserisci come nuova riga e ignora gli errori" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Mostra la insert query" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Indietro" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Inserisci un nuovo record" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Torna a questa pagina" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Modifica il record successivo" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Valore" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Visualizzo la query SQL" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" @@ -7482,32 +7558,32 @@ msgstr "Nessuno" msgid "Convert to Kana" msgstr "Converti a Kana" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Da" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "A" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Invia" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Aggiungi un prefisso alla tabella" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Aggiungi prefisso" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "Sei sicuro di voler eseguire la seguente query?" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Nessun cambiamento" @@ -7717,81 +7793,81 @@ msgstr "Ricarica la frame di navigazione" msgid "This format has no options" msgstr "Questo formato non ha opzioni" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "non OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Abilitata" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Caratteristiche generali di relazioni" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Mostra Caratteristiche" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Creazione di PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Visualizzazione Commenti dei Campi" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Trasformazione del browser" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Prego vedi la documentazione su come aggiornare la tabella column_comments" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Query SQL aggiunte ai preferiti" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Storico dell'SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Tabelle persistenti utilizzate di recente" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Preferenze UI delle tabelle persistenti" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Impostazioni utente" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Passi veloci per l'installazione delle funzionalità avanzate:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "Crea le tabelle necessarie examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Crea l'utente pma e dagli accesso a queste tabelle." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7799,13 +7875,13 @@ msgstr "" "Attiva funzionalità avanzate nel file di configuratione (config.inc." "php), per esempio partendo da config.sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Rieffettua il login in phpMyAdmin per caricare il file della configurazione " "aggiornato." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "nessuna descrizione" @@ -7813,7 +7889,7 @@ msgstr "nessuna descrizione" msgid "Slave configuration" msgstr "Configurazione slave" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Modifica o riconfigura il server master" @@ -7827,13 +7903,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Nome utente" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Porta" @@ -7846,7 +7922,7 @@ msgid "Slave status" msgstr "Stato slave" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variabile" @@ -7862,38 +7938,38 @@ msgstr "" "Solo i slave eseguiti con l'opzione --report-host=host_name sono visibili in " "questa lista." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Aggiungi un utente per replicazione slave" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Qualsiasi utente" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Utilizza campo text" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Qualsiasi host" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Locale" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Questo Host" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Utilizza la Tabella dell'Host" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7909,7 +7985,7 @@ msgstr "Genera Password" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7943,88 +8019,89 @@ msgstr "" "Si sono verificati uno o piú errori durante l'esecuzione della tua " "richiesta:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Modifica evento" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Errore nel processare la richiesta" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Dettagli" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Nome dell'evento" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Tipo di evento" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Cambia a %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Esegui il" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Esegui ogni" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Inizio" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Fine" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Conserva dopo il completamento" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Definer" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: 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\"" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "È necessario fornire il nome dell'evento" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "È necessario fornire un intervallo valido per l'evento." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "È necessario fornire una data valida per l'esecuzione dell'evento." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "È necessario fornire un valido tipo per l'evento." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 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:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Nuovo" @@ -8057,7 +8134,7 @@ msgstr "" "per evitare eventuali problemi." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo di routine non valido: \"%s\"" @@ -8078,69 +8155,69 @@ msgstr "La routine %1$s é stata modificata." msgid "Routine %1$s has been created." msgstr "La routine %1$s é stata creata." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Modifica routine" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Nome della routine" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parametri" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Direzione" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Lunghezza/Valori" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Aggiungi parametro" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Rimuovi l'ultimo parametro" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Tipo di risultato" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Lunghezza/valori del risultato" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Opzioni del risultato" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "É deterministica" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Tipo di sicurezza" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "Tipo di accesso dati SQL" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "È necessario fornire il nome della routine" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Direzione invalida \"%s\" é stata fornita per un parametro." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8148,20 +8225,20 @@ msgstr "" "È necessario fornire lunghezza o valori per parameteri della routine del " "tipo ENUM, SET, VARCHAR e VARBINARY." -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "È necessario fornire una definizione per la routine." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8172,18 +8249,18 @@ msgstr[1] "" "%d righe influenzate dall'ultima istruzione eseguita all'interno della " "procedura" -#: libraries/rte/rte_routines.lib.php:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Risultato di esecuzione della routine %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Esegui routine" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Parametri della routine" @@ -8203,36 +8280,36 @@ msgstr "Il trigger %1$s é stato modificato." msgid "Trigger %1$s has been created." msgstr "Il trigger %1$s é stato creato." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Modifica trigger" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Nome del trigger" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Tempo" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "È necessario fornire il nome del trigger" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "È necessario fornire un timing valido per il trigger" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "È necessario fornire un valido evento per il trigger" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "È necessario fornire un valido nome di tabella" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "È necessario fornire una definizione per il trigger." @@ -8316,7 +8393,7 @@ msgstr "Non ci sono eventi da visualizzare." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8325,7 +8402,7 @@ msgstr "La tabella %s non esiste!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8333,7 +8410,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Prego, configurare le coordinate per la tabella %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8344,27 +8421,27 @@ msgstr "Schema del database %s - Pagina %s" msgid "This page does not contain any tables!" msgstr "Questa pagina non contiene alcuna tabella!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "SCHEMA ERROR: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Schema relazionale" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Tabella dei contenuti" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Attributi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8472,7 +8549,7 @@ msgstr "Lingua non conosciuta : %1$s." msgid "Current Server" msgstr "Server corrente" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Database di origine" @@ -8490,7 +8567,7 @@ msgstr "Server remoto" msgid "Difference" msgstr "Differenza" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Database di destinazione" @@ -8509,7 +8586,7 @@ msgstr "Eseguendo query SQL sul server %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Cancella" @@ -8518,11 +8595,11 @@ msgstr "Cancella" msgid "Columns" msgstr "Campi" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Permetti ad ogni utente di accedere a questo bookmark" @@ -8620,7 +8697,7 @@ msgstr "" "installato le estensioni php necessarie come descritto nella %sdocumentazione" "%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "Monitoraggio di %s é attivo." @@ -8646,8 +8723,8 @@ msgstr "" "escaping o virgolette, utilizzando questo formato: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indice" @@ -8699,13 +8776,13 @@ msgstr "Nessuno" msgid "As defined:" msgstr "Come definito:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primaria" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Testo completo" @@ -8718,17 +8795,17 @@ msgstr "" msgid "after %s" msgstr "dopo %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Aggiungi %s campo/i" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Devi aggiungere almeno un campo." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Motore di Memorizzazione" @@ -8736,41 +8813,6 @@ msgstr "Motore di Memorizzazione" msgid "PARTITION definition" msgstr "Definizione PARTITION" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Ricerca nella Tabella" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Seleziona campi (almeno uno):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Aggiungi condizioni di ricerca (corpo della clausola \"where\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Numero di righe per pagina" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Ordine di visualizzazione:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Naviga tra i valori esterni" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Esegui \"query da esempio\" (carattere jolly: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8926,11 +8968,11 @@ msgstr "" msgid "Manage your settings" msgstr "Gestisci le tue impostazioni" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "La configurazione é stata salvata" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8944,7 +8986,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Impossibile salvare la configurazione" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8973,7 +9015,7 @@ msgstr "Collation della connessione del server" msgid "Appearance Settings" msgstr "Impostazioni di Presentazione" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Ulteriori impostazioni" @@ -8993,9 +9035,9 @@ msgstr "Versione software" msgid "Protocol version" msgstr "Versione protocollo" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Utente" @@ -9134,128 +9176,128 @@ msgstr "" "Sul server è in esecuzione Suhosin. Controlla la documentazione: " "%sdocumentation%s per possibili problemi." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Nessun database" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Filtra tabelle in base al nome" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Filtra tabelle in base al nome" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Crea tabella" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Prego, selezionare un database" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Mostra/nascondi il menù di sinistra" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Salva la posizione" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Crea relazioni" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Ricarica" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Aiuto" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Link angolari" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Link diretti" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Calamita alla griglia" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Espandi/Contrai" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Contrai/Espandi" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Attiva le linee della relazione" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Importa/esporta le coordinate per PDF schema" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Crea Query" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Muovi menù" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Mostra/nascondi tutto" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Mostra/nascondi tabella senza relazioni" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Numero di tabelle" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Elimina relazione" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Operatore relazionario" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Eccetto" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "subquery" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Rinomina a" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Nuovo nome" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Globale" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Opzioni attive" @@ -9267,51 +9309,51 @@ msgstr "La pagina è stata creata" msgid "Page creation failed" msgstr "Creazione della pagina fallita" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Pagina" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Importa dalla pagina selezionata" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Esporta alla pagina selezionata" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Crea una nuova pagina ed esportala" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Nome per la nuova pagina: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Importa/esporta alla dimensione" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "raccomandato" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Errore: relazione già esistente." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Errore: relazione non aggiunta." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Relazione FOREIGN KEY aggiunta" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Aggiunte relazioni internet" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relazione cancellata" @@ -9323,52 +9365,52 @@ msgstr "Errore nel salvare le coordinate per il Designer." msgid "Modifications have been saved" msgstr "Le modifiche sono state salvate" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Impossibile salvare le impostazioni, il form conteneva degli errori" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Non é stato possibile caricare la configurazione" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "LA configurazione contiene dei dati incorretti in alcuni campi." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Vuoi importare le impostazioni rimanenti?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Salvato il: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importa dal file" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Importa dalla memoria del browser" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" "Le impostazioni verranno importate dalla memoria locale del tuo browser." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Non hai alcuna impostazione salvata!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Questa funzionalitá non é supportata dal tuo browser" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Unisci con la configurazione corrente" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9377,38 +9419,38 @@ msgstr "" "Puoi impostare ulteriori impostazioni modificando config.inc.php, ad esempio " "via %sGli script di setup%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Salva nella memoria del browser" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Le impostazioni verranno salvate nella memoria locale del tuo browser." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "La impostazioni esistenti verranno sovrascritte!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Puoi reimpostare tutte le tue configurazioni e ripristinarle ai valori " "predefiniti." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importa file" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Tutti" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabella non trovata o non settata in %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Il file non esiste" @@ -9416,17 +9458,17 @@ msgstr "Il file non esiste" msgid "Select binary log to view" msgstr "Selezionare il log binario da visualizzare" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "File" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Tronca le Query Mostrate" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Mostra query complete" @@ -9442,7 +9484,7 @@ msgstr "Posizione" msgid "Original position" msgstr "Posizione originale" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informazioni" @@ -9450,31 +9492,31 @@ msgstr "Informazioni" msgid "Character Sets and Collations" msgstr "Set di Caratteri e Collation" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d database é stato eliminato correttamente." msgstr[1] "%1$d databasi sono stati eliminati correttamente." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statistiche dei databases" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Replicazione master" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Replicazione slave" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Abilita le Statistiche" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9486,155 +9528,155 @@ msgstr "" msgid "Storage Engines" msgstr "Motori di Memorizzazione" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Visualizza il dump (schema) dei databases" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Moduli" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Inizio" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Plugin" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Modulo" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Libreria" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Versione" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Autore" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Licenza" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "disabilitato" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Comprende tutti i privilegi tranne GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Permette di alterare la struttura di tabelle esistenti." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Permette l'alterazione e l'eliminazione di routines memorizzate." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Permette di creare nuove tabelle e nuovi databases." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Permette la creazione di routines memorizzate." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Permette di creare nuove tabelle." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Permette di creare tabelle temporanee." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permette di creare, cancellare e rinominare gli account utente." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Permette la creazione di nuove viste." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Permette di cancellare dati." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Permette di eliminare databases e tabelle." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Permette di eliminare tabelle." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Permette di impostare gli eventi per lo scheduler" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Permette l'esecuzione di routines memorizzate." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Permette di importare dati da e esportare dati in file." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permette di aggiungere utenti e privilegi senza ricaricare le tabelle dei " "privilegi." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Permette di creare ed eliminare gli indici." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Permette di inserire e sovrascrivere dati." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Permette di bloccare le tabelle per il thread corrente." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limita il numero di nuove connessioni che un utente può aprire in un'ora." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limita il numero di query che un utente può mandare al server in un'ora." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9642,60 +9684,60 @@ msgstr "" "Limita il numero di comandi che possono cambiare una tabella o un database " "che un utente può eseguire in un'ora." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limite di connessioni simultanee che un utente può fare." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Permette di vedere i processi di tutti gli utenti" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Non ha alcun effetto in questa versione di MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permette di ricaricare i parametri del server e di resettare la cache del " "server." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Consente ad un utente di domandare dove sono i master / slave." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Necessario per la replicazione degli slaves." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Permette di leggere i dati." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Accorda l'accesso alla lista completa dei databases." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permette di effettuare query del tipo SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Permette di chiudere il server." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9706,161 +9748,161 @@ msgstr "" "settaggio di variabili globali o la cancellazione dei threads di altri " "utenti." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Permette di creare e di eliminare i triggers" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Permette di cambiare i dati." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Nessun privilegio." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Nessun" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Privilegi relativi alle tabelle" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: i nomi dei privilegi di MySQL sono in Inglese" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Amministrazione" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Privilegi globali" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Privilegi specifici al database" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Limiti di risorse" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "N.B.: 0 (zero) significa nessun limite." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Informazioni di Login" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Non cambiare la password" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Nessun utente trovato." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "L'utente %s esiste già!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Hai aggiunto un nuovo utente." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Hai aggiornato i permessi per %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Hai revocato i privilegi per %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "La password per l'utente %s è cambiata con successo." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Cancellazione in corso di %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Nessun utente selezionato per la cancellazione!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Caricamento dei privilegi in corso" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Gli utenti selezionati sono stati cancellati con successo." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "I privilegi sono stati ricaricati con successo." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Modifica Privilegi" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Revoca" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Esporta tutto" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Qualsiasi" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Privilegi per tutti gli utenti" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Privilegi per %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Vista d'insieme degli utenti" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Rimuove gli utenti selezionati" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Elimina i databases gli stessi nomi degli utenti." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9873,52 +9915,52 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Privilegi relativi ai campi" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Aggiungi privilegi sul seguente database" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Aggiungi privilegi sulla seguente tabella" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Cambia le Informazioni di Login / Copia Utente" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nuovo utente con gli stessi privilegi e ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... mantieni quello vecchio." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... cancella quello vecchio dalla tabella degli utenti." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9926,83 +9968,83 @@ msgstr "" "... cancella quello vecchio dalla tabella degli utenti e in seguito ricarica " "i privilegi." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Database per l'utente" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Garantisci tutti i privilegi per il database "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Utenti che hanno accesso a "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "globale" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "specifico del database" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "L'utente é stato aggiunto." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Errore sconosciuto" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Impossibile stabilire la connessione al master %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Impossibile leggere il log posizionale del master. É possibile che ci siano " "dei problemi di permessi sul master." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Impossibile modificare il master" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Il server master modificato con successo a %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" "Questo server é configurato come master in un processo di replicazione." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Mostra lo stato del master" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Mostra i slave connessi" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10011,11 +10053,11 @@ msgstr "" "Questo server non é configurato come master in un processo di replicazione. " "Vorresti configurarlo ora?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Configurazione del master" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10029,19 +10071,19 @@ msgstr "" "scegliere di ignorare tutti i database normalmente e consentire solo a certi " "database di essere replicati. Prego, scegli una modalitá:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Replica tutti i database; Ignora:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Ignora tutti i database; Replica:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Prego seleziona i database:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10049,7 +10091,7 @@ msgstr "" "Ora, aggiungi le linee seguenti alla fine della sezione [mysqld] nel tuo " "file my.cnf e dopo riavvia is server MySQL." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10059,82 +10101,82 @@ msgstr "" "quindi vedere un messaggio che ti informerá che questo server é " "configurato come master" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Thread slave SQL non é in esecuzione!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Thread slave IO non é in esecuzione!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Il server é configurato come slave in un processo di replicazione. Vuoi:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Vedi la tabella di stato dello slave" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Sincronizza i database con il master" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Controlla slave:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Pieno avvio" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Pieno spegnimento" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Reimposta lo slave" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Avvia solo il thread SQL" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Arresta solo il thread SQL" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Avvia solo il thread IO" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Arresta solo il thread IO" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Gestione degli errori:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Ignorare gli errori potrebbe far mandare il master e slave fuori sincronia!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Salta l'errore corrente" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Salta il prossimo" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "errori." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10143,12 +10185,12 @@ msgstr "" "Questo server non é configurato come slave in un processo di replicazione. " "Vorresti configurarlo ora?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Il thread %s è stato terminato con successo." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10156,115 +10198,115 @@ msgstr "" "phpMyAdmin non è in grado di terminare il thread %s. Probabilmente è già " "stato terminato." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Handler" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Cache delle query" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Processi" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Dati temporanei" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Inserimento ritardato" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Key cache" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Joins" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Ordinando" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Coordinatore delle transazioni" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Rinfresca (chiudi) tutte le tabelle" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Mostra le tabelle aperte" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Mostra gli hosts slave" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Mostra lo stato degli slave" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Rinfresca la cache delle query" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Informazioni di Runtime" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Tutte le variabili di stato" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Monitoraggio" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Advisor" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Ritmo dell'aggiornamento: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filtri" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Contenente la parola:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Mostra solo i valori di allarme" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filtra per categoria..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Mostra i valore non formattati" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Collegamenti associati:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Lancia l'analyzer" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Introduzioni" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10272,7 +10314,7 @@ msgstr "" "Il sistema Advisor può fornire raccomandazioni sulle variabili del server " "analizzando le variabili di stato del server." -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10282,7 +10324,7 @@ msgstr "" "semplici calcoli e regole pratiche che non necessariamente si possono " "applicare al vostro sistema." -#: server_status.php:920 +#: server_status.php:919 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 " @@ -10293,7 +10335,7 @@ msgstr "" "cambiamento. Una regolazione sbagliata può avere effetti negativi sulle " "prestazioni." -#: server_status.php:922 +#: server_status.php:921 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 " @@ -10305,31 +10347,31 @@ msgstr "" "misurabile." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Questions eseguiti dall'avvio: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Istruzioni" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Traffico rete dall'avvio: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10337,19 +10379,19 @@ msgstr "" "Questo server MySQL funziona come un master e slave nel " "processo di replicazione." -#: server_status.php:1078 +#: server_status.php:1077 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:1080 +#: server_status.php:1079 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:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10357,11 +10399,11 @@ msgstr "" "Per ulteriori informazioni a riguardo lo stato di replicazione su questo " "server, vedi la seztione sulla replicazione." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Stato di replicazione" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10370,35 +10412,35 @@ msgstr "" "dismisura e per questa ragione le statistiche riportate dal server MySQL " "potrebbero non essere corrette." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Ricevuti" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Spediti" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "max. connessioni contemporanee" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Tentativi falliti" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Fallito" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Comando" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10406,11 +10448,11 @@ msgstr "" "Il numero di connessioni fallite perché il cliente é morto senza chiudere la " "connessione correttemente." -#: server_status.php:1321 +#: server_status.php:1320 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:1322 +#: server_status.php:1321 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 " @@ -10420,19 +10462,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:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 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:1325 +#: server_status.php:1324 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 " @@ -10444,11 +10486,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Numero di file temporanei che mysqld ha creato." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10456,7 +10498,7 @@ msgstr "" "Il numero di tabelle temporanee create automaticamente in memoria dal server " "durante l'esecuzione dei comandi." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10464,7 +10506,7 @@ msgstr "" "Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori " "(probabilmete chiave dublicata)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10472,23 +10514,23 @@ msgstr "" "Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato " "INSERT DELAYED occupa un thread." -#: server_status.php:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Il numero di righe INSERT DELAYED scritte." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Il numero di comandi FLUSH eseguiti." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Il numero di comandi interni COMMIT eseguiti." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10498,7 +10540,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:1335 +#: 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, " @@ -10509,7 +10551,7 @@ msgstr "" "degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia " "indicizzata." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10518,7 +10560,7 @@ msgstr "" "alta, è un buon indice che le tue query e le tue tabelle sono correttamente " "indicizzate." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10529,7 +10571,7 @@ msgstr "" "indice con un range costante, oppure se stai facendo una scansione degli " "indici." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10538,7 +10580,7 @@ msgstr "" "chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare " "ORDER BY ... DESC." -#: server_status.php:1339 +#: 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 " @@ -10551,7 +10593,7 @@ msgstr "" "MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano le " "chiavi correttamente." -#: server_status.php:1340 +#: server_status.php:1339 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,37 +10606,37 @@ msgstr "" "indicizzate, o che le query non sono state scritte per trarre vantaggi dagli " "indici che hai." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Il numero di comandi ROLLBACK interni." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Il numero di pagine che contengono dati (sporchi o puliti)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Il numero di pagine attualmente sporche." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Il numero di pagine libere." -#: server_status.php:1348 +#: 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 " @@ -10604,7 +10646,7 @@ msgstr "" "attualmente in lettura o in scittura e non possono essere aggiornate o " "rimosse per altre ragioni." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10616,11 +10658,11 @@ msgstr "" "come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Il numero totale di buffer pool, in pagine." -#: server_status.php:1351 +#: 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." @@ -10628,7 +10670,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:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10636,11 +10678,11 @@ msgstr "" "Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB " "esegue una scansione completa sequenziale di una tabella." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Il numero di richieste logiche che InnoDb ha fatto." -#: server_status.php:1354 +#: 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." @@ -10648,7 +10690,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:1355 +#: server_status.php:1354 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 " @@ -10663,55 +10705,55 @@ msgstr "" "dimesione del buffer pool è stata settata correttamente questo valore " "dovrebbe essere basso." -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Il numero di scritture effettuate nel buffer pool InnoDB." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Il numero delle operazioni fsync() fino ad ora." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Il numero di operazioni fsync() in attesa." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Il numero di letture in attesa." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Il numero di scritture in attesa." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "La quantità di dati letti fino ad ora, in bytes." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Il numero totale di dati letti." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Il numero totale di dati scritti." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "La quantità di dati scritti fino ad ora, in bytes." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -10719,35 +10761,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Il numero di richieste di scrittura dei log." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Il numero scritture fisiche del log file." -#: server_status.php:1370 +#: server_status.php:1369 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Il numero degli fsyncs in sospeso sul log file." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Il numero di scritture in sospeso sul log file." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Il numero di bytes scritti sul log file." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Il numero di pagine create." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10756,51 +10798,51 @@ msgstr "" "valori sono conteggiati nelle pagine; la dimesione delle pagine permette di " "convertirli facilmente in bytes." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Il numero di pagine lette." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Il numero di pagine scritte." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Il numero di row locks attualmente in attesa." -#: server_status.php:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Il numero di righe cancellate da una tabella InnoDB." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Il numero di righe inserite da una tabella InnoDB." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Il numero di righe lette da una tabella InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Il numero di righe aggiornate da una tabella InnoDB." -#: server_status.php:1387 +#: 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." @@ -10809,7 +10851,7 @@ msgstr "" "cambiati, ma che non sono stai aggiornati su disco. É conosciuto con il nome " "di Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -10817,7 +10859,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:1389 +#: server_status.php:1388 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 " @@ -10827,15 +10869,15 @@ msgstr "" "segnale che indica il numero massimo di blocchi che sono stati in uso " "contemporaneamente." -#: server_status.php:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "Percentuale di cache delle chiavi utilizzata (valore calcolato)" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10846,26 +10888,26 @@ msgstr "" "rapporto di cache miss rate può essere calcolato come Key_reads/" "Key_read_requests." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -10876,7 +10918,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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10884,12 +10926,12 @@ msgstr "" "Il massimo numero di connessioni che sono state utilizzate " "contemporaneamente dall'avvio del server." -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10897,20 +10939,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Il numero di file che sono aperti." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Il numero di tabelle che sono aperte." -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10920,19 +10962,19 @@ msgstr "" "potrebbero indicare problemi di fragmentazione che possono essere risolti " "con l'esecuzione dell'istruzione FLUSH QUERY CACHE." -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "L'ammontare di memoria libera nella cache delle query." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Il numero di cache hits." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Il numero di query aggiunte alla cache." -#: server_status.php:1408 +#: 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 " @@ -10945,7 +10987,7 @@ msgstr "" "una strategia di \"meno usate recentemente\" (LRU - least recently used) per " "decidere quali query rimuovere dalla cache." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10953,19 +10995,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:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Il numero di query registrate nella cache." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Il numero totale di blocchi nella cache delle query." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Lo sato delle repliche failsafe (non ancora implementato)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10973,13 +11015,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10988,7 +11030,7 @@ msgstr "" "ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli " "indici delle tue tabelle.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10996,17 +11038,17 @@ msgstr "" "Il numero di joins che usano un range sulla prima tabella. (Non è, " "solitamente, un valore critico anche se è grande.)" -#: server_status.php:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11014,12 +11056,12 @@ msgstr "" "Numero totale di volte (dalla partenza) in cui la replica slave SQL ha " "ritentato una transazione." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11027,12 +11069,12 @@ msgstr "" "Numero di processi che hanno impiegato più di slow_launch_time secondi per " "partire." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11042,23 +11084,23 @@ msgstr "" "fatte. Se questo valore è grande, dovresti incrementare la variabile di " "sistema sort_buffer_size." -#: server_status.php:1424 +#: server_status.php:1423 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:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Il numero di righe ordinate." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -11070,7 +11112,7 @@ msgstr "" "performance, dovresti prima ottimizzare le query, oppure sia utilizzare le " "repliche, sia dividere le tabelle." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11080,11 +11122,11 @@ msgstr "" "essere calcolato come processi_creati/connessioni. Se questo valore è rosso " "devi aumentare la tua thread_cache_size." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Il numero di connessioni correntemente aperte." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11096,49 +11138,49 @@ msgstr "" "(Normalmente questo non fornisce un significatico incremento delle " "performace se hai una buona implementazione dei processi.)" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "Percentuale hit nella cache del thread" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Il numero di processi non in attesa." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Avvia monitoraggio" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Istruzioni/Configurazione" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Ho finito di modificare/muovere i grafici" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Aggiungi grafico" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Muovi/modifica i grafici" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Ritmo di aggiornamenti" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Numero di grafici per rigo" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Disposizione dei grafici" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -11146,15 +11188,15 @@ msgstr "" "La configurazione dei grafici è memorizzata nella memoria locale dei " "browser. Potreste voler esportarla se avete una configurazione complicata." -#: server_status.php:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Ripristina i valori predefiniti" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Istruzioni per monitoraggio" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11168,7 +11210,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:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11181,11 +11223,11 @@ msgstr "" "potete ancora utilizzare le funzionalità di generazione dei grafici del " "server." -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Utilizzo del monitor:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11196,7 +11238,7 @@ msgstr "" "sotto 'Impostazioni' oppure rimuovere alcuni grafici usando l'icona " "dentellata su ogni grafico." -#: server_status.php:1655 +#: server_status.php:1654 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 +11251,11 @@ msgstr "" "raggruppate nella quale potete cliccare su ogni comando SELECT che appare " "per l'analisi successiva." -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Nota:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11225,202 +11267,202 @@ 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:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Valori predefiniti del grafico" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Variabili di stato" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Seleziona serie:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Monitorate di solito" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "or scrivi il nome di una variabile:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Visualizzare come valore differenziale" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Applica un divisore" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Aggiungi un unitá ai valori dei dati" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Aggiungi questa serie" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Cancella la serie" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Serie del grafico:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Registra statistiche" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Intervallo di tempo selezionato:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Recupera solamente comandi SELECT,INSERT,UPDATE e DELETE" -#: server_status.php:1747 +#: server_status.php:1746 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:1752 +#: server_status.php:1751 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:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "I risultati verranno raggruppati secondo il testo di query." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Analyzer della query" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d secondo" msgstr[1] "%d secondi" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minuto" msgstr[1] "%d minuti" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Impossibile connettersi all'origine" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Impossibile connettersi alla destinazione" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Database '%s' non esiste." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Sincronizzazzione delle strutture" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Sincronizzazione dati" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "non presente" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Differenza delle Strutture" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Differenze dei dati" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Aggiungi campo/i" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Rimuovi campo/i" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Modifica campo/i" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Rimuovi indice/i" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Applica indice/i" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Aggiorna riga/righe" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Inserisci riga/righe" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" "Vorresti rimuovere tutte le righe precedenti dalle tabelle di destinazione?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Applica i cambiamenti selezionati" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Sincronizzare i database" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Le tabelle di destinazione selezionate sono state sincronizzate con le " "tabelle di origine." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" "Il database di destinazione é stato sincronizzato con il database di origine" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Query eseguite" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Inserisci manualmente" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Connessione corrente" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Configurazione: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11428,19 +11470,19 @@ msgstr "" "Il database di destinazione verrà completamente sincronizzato con il " "database di origine. Il database di origine non verrá modificato." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "L'impostazione della variablile è fallita" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Variabili e impostazioni del server" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Valore sessione" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Valore globale" @@ -11785,155 +11827,155 @@ msgstr "" msgid "Wrong data" msgstr "Dati errati" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usa il segnalibro \"%s\" come la query di navigazione predefinita." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Sei sicuro di voler eseguire la seguente query?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Visualizzo comel codice PHP" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "SQL Validato" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Risultato SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Generato da" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi con gli indici della tabella `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Etichetta" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "La tabella %1$s è già stata modificata con successo" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Gli utenti selezionati sono stati cancellati con successo." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Barre" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Campo" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Linea" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Spline" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "A torta" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Sovrapposti" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Titolo del grafico" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "Asse X:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Serie:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Etichetta per l'asse X:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "Valori per asse X" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Etichetta per l'asse Y:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Valori per asse Y" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "La tabella %s esiste già!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "La tabella %1$s è stata creata." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Visualizza dump (schema) della tabella" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Mostra la visualizzazione GIS" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Larghezza" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Altezza" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Etichetta del campo" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Nessuno --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Campo Spatial" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Ridisegna" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Salva nel file" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Nome del file" @@ -11949,29 +11991,29 @@ msgstr "Impossibile rinominare l'indice a PRIMARIO!" msgid "No index parts defined!" msgstr "Nessuna parte di indice definita!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Aggiungi indice" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Modifica l'indice" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Nome dell'indice:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" puó essere solo il nome di una chiave primaria!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Tipo di indice:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Aggiungi  %s  campo/i all'indice" @@ -11994,150 +12036,150 @@ msgstr "La tabella %s è stata spostata in %s." msgid "Table %s has been copied to %s." msgstr "La tabella %s è stata copiata su %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Il nome della tabella è vuoto!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Altera tabella ordinata per" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(singolarmente)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Sposta la tabella nel (database.tabella):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Opzioni della tabella" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Rinomina la tabella in" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Copia la tabella nel (database.tabella):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Passa alla tabella copiata" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Amministrazione tabella" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Deframmenta la tabella" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "La tabella %s è stata inizializzata" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Ricarica la tabella (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Rimouvi la tabella o i dati" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Svuota la tabella (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Elimina la tabella (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Manutenzione partizione" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partizione %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analizza" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Controlla" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Ottimizza" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Ricrea" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Ripara" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Rimuove partizionamento" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Controlla l'integrità delle referenze:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Mostra le tabelle" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Spazio utilizzato" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Effettivo" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Statistiche righe" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "statico" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamico" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Lunghezza riga" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Dimensione riga" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Prossimo autoindex" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Errore nel creare una foreign key su %1$s (controlla il tipo di dati)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Relazioni interne" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12145,105 +12187,105 @@ msgstr "" "Una relazione interna non %è necessaria, quando una corrispondente relazione " "FOREIGN KEY esiste." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Vincolo della chiave esterna" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Spatial" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Valori distinti" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Aggiungi chiave primaria" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Aggiungi un indice unico" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Aggiungi indice SPATIAL" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Aggiungi indice FULLTEXT" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Nessuno" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Il campo %s è stato eliminato" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Una chiave primaria è stata aggiunta in %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Un indice è stato aggiunto in %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Mostra piú azioni" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Rimuovi campo/i" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Modifica la vista" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Vedi relazioni" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Proponi la struttura della tabella" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Aggiungi campo" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Alla fine della tabella" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "All'inizio della tabella" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Dopo %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Crea un indice su  %s campi" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "partizionato" @@ -12394,70 +12436,39 @@ msgstr "Monitora le istruzioni di manipolazione dei dati:" msgid "Create version" msgstr "Crea versione" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Esegui \"query da esempio\" (carattere jolly: \"%\") per due campi differenti" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Ulteriori criteri di ricerca" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Usate questo campo per etichettare ogni punto" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Massimo numero di righe da visualizzare" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Esplora/Modifica i punti" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Come usare" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Riavvia" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Scarica altri temi!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Tipi-MIME disponibili" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Tipi-MIME stampati in italics non hanno una funzione di trasformazione " "separata" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Trasformazioni disponibili" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Descrizione" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Non hai i permessi per effettuare questa operazione!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Il profilo è stato aggiornato." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Nome VISTA" diff --git a/po/ja.po b/po/ja.po index 1867ee15e3..db935929f3 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-06-02 11:09+0200\n" "Last-Translator: Yuichiro Takahashi \n" "Language-Team: japanese \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "すべて表示" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "ページ番号:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "たか、ブラウザのセキュリティ設定でクロスウィンドウの更新をブロックしているも" "のと思われます。" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "実行" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "キー名" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "説明" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "この値を利用する" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "データベース %1$s を作成しました。" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "データベースのコメント: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "テーブルのコメント" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "カラム" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "NULL" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "デフォルト値" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "リンク先" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "コメント" @@ -197,14 +198,14 @@ msgstr "コメント" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "いいえ" @@ -217,120 +218,120 @@ msgstr "いいえ" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "はい" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "データベースのダンプ (スキーマ) 表示" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "このデータベースにはテーブルがありません。" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "全選択" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "全選択解除" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "データベース名が空です!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "データベース %1$s の名称を %2$s に変更しました" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "データベース %1$s を %2$s にコピーしました" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "データベース名の変更" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "データベースの削除" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "データベース %s を削除しました。" -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "データベースを削除する (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "データベースのコピー先" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "構造のみ" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "構造とデータ" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "データのみ" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "コピーの前に CREATE DATABASE する" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "%s を追加する" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 値を追加する" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "制約を追加する" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "コピーしたデータベースに切り替える" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "照合順序" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -339,59 +340,59 @@ msgstr "" "phpMyAdmin 環境保管領域が無効になっています。理由については%sこちら%sをご覧く" "ださい。" -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "リレーショナルスキーマを編集またはエクスポートする" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "テーブル" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "行" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "サイズ" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "使用中" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "作成日時" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "最終更新" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "最終検査" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -401,393 +402,394 @@ msgstr[0] "%s テーブル" msgid "You have to choose at least one column to display" msgstr "最低 1 つは表示するカラムを選択してください" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sビジュアル・クエリ・ビルダ%sに切り替える" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "ソート" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "昇順" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "降順" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "表示" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "条件" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "挿入" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "および" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "削除" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "または" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "修正" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "条件行を追加・削除する" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "カラムを追加・削除する" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "クエリを更新する" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "利用するテーブル" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "データベース %s のSQL:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "クエリを実行する" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "アクセスは拒否されました" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "いずれかの単語を含む" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "すべての単語を含む" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "完全一致" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "正規表現" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" の検索結果 %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "テーブル %s に対して条件に一致したものを削除しますか?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "合計: %s 件" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "データベース内検索" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "検索する単語や値 (ワイルドカード: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "検索条件:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "各単語は空白文字 (\" \") で区切ってください。" -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "検索するテーブル:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "検索するカラム:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "このデータベースにはテーブルがありません" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "不明" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "テーブル %s を空にしました" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "ビュー %s を破棄しました" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "テーブル %s を削除しました" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "SQL コマンドの追跡はアクティブです。" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "SQL コマンドの追跡は非アクティブです。" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "レプリケーション" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "合計" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです。" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "チェックしたものを:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "すべてチェックする" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認する" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "エクスポート" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "印刷用画面" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "空にする" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "削除" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "テーブルをチェックする" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "テーブルを最適化する" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "テーブルを修復する" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "テーブルを分析する" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "接頭辞をテーブル名に追加する" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "テーブル名の接頭辞を付け替える" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "接頭辞を付け替えてテーブルをコピーする" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "データ辞書" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "SQL コマンドを追跡しているテーブル" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "データベース" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "最後の世代" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "作成日時" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "更新日時" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "状態" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "操作" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "このテーブルに対しての追跡データを削除する" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "アクティブ" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "非アクティブ" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "世代" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "追跡レポート" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "構造のスナップショット" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "SQL コマンドを追跡していないテーブル" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "テーブルを追跡する" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "データベースのログです" @@ -799,16 +801,16 @@ msgstr "エクスポート形式が正しくありません!" msgid "Selected export type has to be saved in file!" msgstr "この形式のエクスポートはファイルに保存する必要があります!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "パラメータが正しくありません!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "空き容量不足でファイル %s を保存できません。" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -816,12 +818,12 @@ msgstr "" "サーバ上に既存のファイル %s があります。ファイル名を変更するか、上書きオプ" "ションを有効にしてください。" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "このウェブサーバにはファイル %s を保存する権限がありません。" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "ダンプをファイル %s に保存しました。" @@ -830,86 +832,86 @@ msgstr "ダンプをファイル %s に保存しました。" msgid "Invalid export type" msgstr "無効なエクスポート形式" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "カラム \"%s\" に対しての値" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "ベースレイヤーに OpenStreetMap を使用する" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "空間参照識別子" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "幾何データ" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "座標" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "座標 %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "座標を追加する" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "線分" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "外輪" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "内輪" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "線分を追加する" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "内輪を追加する" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "ポリゴン" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "ポリゴンを追加する" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "幾何データを追加する" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "成形結果" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -917,7 +919,7 @@ msgstr "" "「関数」の項目で「GeomFromText」を選択して、下の文字列を「値」の項目に貼り付" "けてください" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -926,21 +928,21 @@ msgstr "" "アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ" "メント%s をご覧ください。" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "表示中のブックマーク" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "ブックマークを削除しました。" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "ファイルを読み込めませんでした" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -949,7 +951,7 @@ msgstr "" "サポートされていない圧縮形式 (%s) のファイルを読み込もうとしました。この形式" "はサポートされていないか設定で無効にされています。" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -959,29 +961,29 @@ msgstr "" "ファイルサイズが PHP の設定で許可された最大値を超えています。[a@./" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a] をご覧ください。" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "文字セット変換ライブラリがないので、ファイルの文字セットが変換できません" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "インポートプラグインが読み込めません。正しくインストールされているか確認して" "ください!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "ブックマーク %s を作成しました" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "インポートは正常に終了しました。%d 個のクエリを実行しました。" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -989,7 +991,7 @@ msgstr "" "スクリプトがタイムアウトしました。インポートを完了させたいのであれば同じファ" "イルを再送信すればインポートが再開されます。" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -997,23 +999,23 @@ msgstr "" "ただし、最後に実行したときはまったくデータを解析できませんでした。通常、PHP " "の時間制限を伸ばさない限りこのデータのインポートはできません。" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "戻る" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin はフレーム対応ブラウザでの利用をお勧めします。" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "DROP DATABASE 文は無効にされています。" @@ -1022,7 +1024,7 @@ msgstr "DROP DATABASE 文は無効にされています。" msgid "Do you really want to execute \"%s\"?" msgstr "「%s」を本当に実行しますか?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "データベースを完全に削除しようとしています!" @@ -1062,7 +1064,7 @@ msgstr "インデックスを追加する" msgid "Edit Index" msgstr "インデックスを編集する" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "インデックスに %d 個のカラムを追加する" @@ -1080,16 +1082,16 @@ msgstr "ホスト名が空です!" msgid "The user name is empty!" msgstr "ユーザ名が空です!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "パスワードが空です!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "パスワードが異なっています!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "ユーザを追加する" @@ -1106,23 +1108,24 @@ msgstr "選択したユーザを削除する" msgid "Close" msgstr "閉じる" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "編集" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "リアルタイムでのトラフィックグラフ" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "リアルタイムでの接続/プロセスグラフ" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "リアルタイムでのクエリグラフ" @@ -1132,24 +1135,24 @@ msgstr "統計データ" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "合計" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "その他" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1169,7 +1172,7 @@ msgstr "サーバのトラフィック (単位:KiB)" msgid "Connections since last refresh" msgstr "更新間隔中の接続数" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "プロセス" @@ -1187,7 +1190,7 @@ msgstr "更新間隔中の問い合わせ数" msgid "Questions (executed statements by the server)" msgstr "問い合わせ数 (サーバで実行された命令文)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "クエリの統計" @@ -1231,14 +1234,14 @@ msgid "System swap" msgstr "システムスワップ" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1290,32 +1293,32 @@ msgstr "送信" msgid "Bytes received" msgstr "受信" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "接続" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "バイト" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1329,11 +1332,11 @@ msgstr "%d テーブル" msgid "Questions" msgstr "問い合わせ" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "トラフィック" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "設定" @@ -1353,11 +1356,11 @@ msgstr "モニタリンググラフを追加する" msgid "Please add at least one variable to the series" msgstr "少なくとも1つの系列を追加してください" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "なし" @@ -1457,7 +1460,7 @@ msgstr "設定の変更" msgid "Current settings" msgstr "現在の設定" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "グラフの題名" @@ -1542,7 +1545,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "時間" @@ -1637,10 +1640,10 @@ msgstr "" "インポートした設定でのグラフの配置に失敗しました。設定をデフォルトに戻しま" "す..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "インポート" @@ -1688,9 +1691,9 @@ msgstr "判断値の算出方法" msgid "Test" msgstr "判断基準" -#: 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 +#: 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 msgid "Cancel" msgstr "キャンセル" @@ -1702,11 +1705,11 @@ msgstr "読み込んでいます" msgid "Processing Request" msgstr "要求を処理しています" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "要求処理中でのエラー" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "データベースが選択されていません。" @@ -1718,9 +1721,9 @@ msgstr "カラムを削除しています" msgid "Adding Primary Key" msgstr "主キーを追加しています" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1760,15 +1763,15 @@ msgstr "インデックスを隠す" msgid "Show indexes" msgstr "インデックスを表示する" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "外部キーのチェック:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(有効)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(無効)" @@ -1796,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET エディタ" @@ -1837,8 +1840,8 @@ msgstr "クエリボックスを表示" msgid "No rows selected" msgstr "行が選択されていません" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "変更" @@ -1846,18 +1849,18 @@ msgstr "変更" msgid "Query execution time" msgstr "クエリの実行時間" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "%d は不正な行番号です。" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "保存する" @@ -1869,7 +1872,7 @@ msgstr "検索条件を隠す" msgid "Show search criteria" msgstr "検索条件を表示する" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "検索プロット" @@ -1915,12 +1918,12 @@ msgstr "クエリの結果" msgid "Data point content" msgstr "プロット点におけるデータ内容" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "無視" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "コピー" @@ -1940,7 +1943,7 @@ msgstr "外部キーを選択してください" msgid "Please select the primary key or a unique key" msgstr "主キーまたはユニークキーを選択してください" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "表示するカラムの選択" @@ -2032,7 +2035,7 @@ msgstr "生成する" msgid "Change Password" msgstr "パスワードを変更する" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "その他" @@ -2123,63 +2126,63 @@ msgid "December" msgstr "12 月" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "1 月" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "2 月" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "3 月" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "4 月" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "5 月" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "6 月" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "12 月" @@ -2217,32 +2220,32 @@ msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "土" @@ -2356,16 +2359,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "/ 秒" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "/ 分" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "/ 時" @@ -2388,21 +2391,205 @@ msgstr "" msgid "Font size" msgstr "フォントサイズ" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "変更したデータを保存する" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "カラムの順番を元に戻す" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "先頭" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "前へ" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "次へ" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "最後" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "開始行" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "表示行数" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "モード" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "水平" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "水平 (縦ヘッダ)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "垂直" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "%s 行毎にヘッダを表示" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "キーでソート" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "オプション" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "部分テキスト" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "全文" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "リレーションキー" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "リレーション表示カラム" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "バイナリの内容を表示する" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "BLOB の内容を表示する" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "バイナリの内容を 16 進数で表示する" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "ブラウザ変換機能を隠す" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "空間データをテキストで表示" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "空間データをバイナリで表示" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "行を削除しました" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "停止" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "正確な数字とは限りません。FAQ 3.11 をご覧ください" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "行/クエリ" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "行の表示" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "合計" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "クエリの実行時間 %01.4f 秒" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "クエリ結果操作" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "印刷用画面 (全テキストを含む)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "グラフで表示する" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "空間情報のデータを視覚化する" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "ビューを作成する" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "リンク先が見つかりません" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "エラーメッセージが多すぎます。いくつかは表示されません。" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "アップロードされたファイルではありません。" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "アップロードしたファイルは php.ini に指定されている設定項目 " "upload_max_filesize の値を超えています。" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2410,27 +2597,27 @@ msgstr "" "アップロードしたファイルは HTML フォームに指定されている設定項目 " "MAX_FILE_SIZE の値を超えています。" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "一時フォルダが見つかりません。" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "ファイルをディスクに書き込めません。" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "拡張によりファイルのアップロードが中断されました。" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "ファイルのアップロード中に予期しないエラーが発生しました。" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2438,26 +2625,39 @@ msgstr "" "アップロードされたファイルの移動に失敗しました。[a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a] をご覧ください。" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "アップロードされたファイルを移動中にエラーが発生しました。" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "アップロードされ(移動し)たファイルが読み込めません。" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "別ウィンドウで開く" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "クッキーを有効にしてください。" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "Javascript を有効にしてください" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "インデックス" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "ユニーク" @@ -2470,8 +2670,8 @@ msgstr "圧縮" msgid "Cardinality" msgstr "一意な値の数" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "コメント" @@ -2494,128 +2694,128 @@ msgstr "" "インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし" "れません。" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "データベース" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "サーバ" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "構造" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "挿入" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "操作" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "SQL コマンドの追跡" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "テーブルが空のようです!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "データベースが空のようです!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "クエリ" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "特権" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "ルーチン" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "イベント" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "デザイナ" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "ユーザ" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "同期" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "バイナリログ" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "変数" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "文字セット" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "プラグイン" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "エンジン" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "エラー" @@ -2637,7 +2837,7 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "%1$d 行挿入しました。" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "PDF を作成中にエラーが発生しました:" @@ -2728,16 +2928,96 @@ 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 +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 +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 +msgid "Value" +msgstr "値" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "テーブル検索" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "編集/挿入" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "表示するカラム (最低 1 つ):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "検索条件 (WHERE 節の全内容):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "ページあたりの行数" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "表示順:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "各点のラベルとして使われるカラム" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "プロットする結果の最大数" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "参照されている値を表示する" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "更なる検索条件" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "異なる 2 つのカラムによる定型問い合わせ (ワイルドカード: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "定型問い合わせ (ワイルドカード: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "結果表示/プロット点の編集" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "使い方" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "ズームを戻す" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "テーマ %s の画像パスが無効です!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "プレビューは利用できません。" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "これにする" @@ -2756,7 +3036,7 @@ msgstr "テーマ %s が見つかりません!" msgid "Theme path not found for theme %s!" msgstr "テーマ %s のテーマパスが見つかりません!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "テーマ" @@ -3096,13 +3376,13 @@ msgstr "列挙型、定義しておいた列挙リストより値を取ること msgid "Cannot connect: invalid settings." msgstr "接続できません。設定が無効です。" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%s へようこそ" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3111,7 +3391,7 @@ msgstr "" "設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ" "ト%2$s を利用して設定ファイルを作成してください。" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3126,60 +3406,56 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "mcrypt から Blowfish を使おうとして失敗しました!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Javascript を有効にしてください" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "ログイン" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "「ホスト名/IP アドレス」と「ポート」を空白で区切って入力することができます。" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "サーバ:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "ユーザ名:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "パスワード:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "サーバの選択" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "クッキーを有効にしてください。" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "パスワードなしログインは設定 (AllowNoPassword 参照) によって禁止されています" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s 秒以上操作をしませんでした。ログインし直してください。" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL サーバにログインできません" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "" "ユーザ名ないしパスワードが間違っています。
    アクセスは拒否されました。" @@ -3212,7 +3488,7 @@ msgstr "共有" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "テーブル" @@ -3224,13 +3500,13 @@ msgstr "テーブル" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "データ" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "オーバーヘッド" @@ -3255,19 +3531,11 @@ msgstr "データベース「%s」の特権を確認します。" msgid "Check Privileges" msgstr "特権をチェックする" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "なんらかの攻撃をされている可能性があります" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "グローバル変数から数値キーが検出されました" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "設定ファイルの読み込みに失敗しました" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3275,12 +3543,12 @@ msgstr "" "通常、これは構文エラーがあることを意味します。以下に示す全てのエラーを確認し" "てください。" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "デフォルトの設定を読み込めませんでした: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3288,204 +3556,190 @@ msgstr "" "[code]$cfg['PmaAbsoluteUri'][/code] は必ず設定ファイルに設定しなければ" "なりません!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "サーバのインデックスが不正です: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください。" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "設定ファイルに無効な認証方法が指定されています:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s を %s 以降にアップグレードしてください。" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "GLOBALS 変数が書き換えられている可能性があります" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "なんらかの攻撃をされている可能性があります" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "グローバル変数から数値キーが検出されました" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "最長: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "ドキュメント" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "ja" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "実行した SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL のメッセージ: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "SQL 検証への接続に失敗しました!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "EXPLAIN で確認" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "SQL の EXPLAIN 解析をスキップ" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP コードを省略" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP コードの作成" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "再描画" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL の検証をスキップ" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL の検証" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "このクエリをインラインで編集します" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "インライン" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "プロファイリング" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "日" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %B %d 日 %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日 %s 時間 %s 分 %s 秒" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "パラメータがありません:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "先頭" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "前へ" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "次へ" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "最後" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "データベース「%s」に移動します。" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s の機能には既知のバグがあります。%s をご覧ください" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "クリックでオン/オフ切り替え" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "アップロードファイル:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "指定したアップロードディレクトリが利用できません" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "アップロードファイルがありません" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "実行" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "印刷" @@ -3515,8 +3769,8 @@ msgid "Closed" msgstr "閉じておく" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "無効" @@ -3657,9 +3911,9 @@ msgstr "デフォルト値に戻す" msgid "Allow users to customize this value" msgstr "この値の変更をユーザに許可する" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "リセット" @@ -3879,10 +4133,6 @@ msgstr "テーブル構造の操作欄を折り畳む" msgid "Show binary contents as HEX by default" msgstr "デフォルトではバイナリの内容を 16 進数で表示します。" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "バイナリの内容を 16 進数で表示する" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "データベースの一覧をドロップダウンの代わりにリストで表示します。" @@ -3938,7 +4188,7 @@ msgstr "" msgid "Maximum execution time" msgstr "最大実行時間" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "ファイルに保存する" @@ -3947,7 +4197,7 @@ msgid "Character set of the file" msgstr "ファイルの文字セット" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "フォーマット" @@ -4051,7 +4301,7 @@ msgid "MIME type" msgstr "MIME タイプ" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "リレーション" @@ -5633,9 +5883,9 @@ msgstr "SQL 検証を有効にするには必要です。" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "パスワード" @@ -5924,12 +6174,6 @@ msgstr "" msgid "Details..." msgstr "詳細..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "正確な数字とは限りません。FAQ 3.11 をご覧ください" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -5937,18 +6181,18 @@ msgstr "" "設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました。" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "パスワードを変更する" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "パスワード無し" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "もう一度入力してください" @@ -5969,22 +6213,22 @@ msgstr "データベースを作成する" msgid "Create" msgstr "作成" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "特権なし" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "名前" @@ -6143,25 +6387,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "エンコーディングへの変換:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s (%2$s ブランチ)" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "ブランチ無し" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Git のリビジョン" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "最終コミット: %1$s、%2$s により" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "パッチ作成: %1$s、%2$s により" @@ -6280,173 +6524,27 @@ msgstr "フォーマット特有のオプション:" msgid "Language" msgstr "言語" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "変更したデータを保存する" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "カラムの順番を元に戻す" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "開始行" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "表示行数" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "モード" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "水平" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "水平 (縦ヘッダ)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "垂直" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "%s 行毎にヘッダを表示" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "キーでソート" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "オプション" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "部分テキスト" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "全文" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "リレーションキー" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "リレーション表示カラム" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "バイナリの内容を表示する" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "BLOB の内容を表示する" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "ブラウザ変換機能を隠す" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "空間データをテキストで表示" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "空間データをバイナリで表示" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "行を削除しました" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "停止" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "行/クエリ" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "行の表示" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "合計" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "クエリの実行時間 %01.4f 秒" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "クエリ結果操作" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "印刷用画面 (全テキストを含む)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "グラフで表示する" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "空間情報のデータを視覚化する" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "ビューを作成する" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "リンク先が見つかりません" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "バージョン情報" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "データのホームディレクトリ" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "すべての InnoDB データファイルに共通するディレクトリパス。" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "データファイル" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "自動拡張時に追加されるテーブルの大きさ" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6454,11 +6552,11 @@ msgstr "" "スペースがいっぱいになったときに自動的にテーブルを拡張する場合に追加される" "テーブルの大きさ。" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "バッファプールの大きさ" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6466,79 +6564,79 @@ msgstr "" "InnoDB がテーブルのデータやインデックスをキャッシュするのに使うメモリバッファ" "量。" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "バッファプール" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB ステータス" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "バッファプールの使用量" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "ページ" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "フリーページ数" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "ダーティページ" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "データが含まれているページ数" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "フラッシュ待ちページ数" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "ビジーなページ数" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "ラッチされているページ" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "バッファプールの利用状況" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "読み込みリクエスト数" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "書き込みリクエスト数" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "読み込みミス" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "書き込み待ち" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "読み込みミス (%)" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "書き込み待ち (%)" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "データポインタのサイズ" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6546,11 +6644,11 @@ msgstr "" "MAX_ROWS オプションを指定せずに MyISAM テーブルを作成するときに CREATE TABLE " "が使用するデフォルトのポインタサイズ (バイト単位)。" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "自動修復モード" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6558,11 +6656,11 @@ msgstr "" "クラッシュした MyISAM テーブルを自動修復するときのモード (サーバ起動オプショ" "ン --myisam-recover で設定されるもの)。" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "ソート用の一時ファイルの最大サイズ" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6571,11 +6669,11 @@ msgstr "" "MyISAM インデックスを再作成するとき (REPAIR TABLE や ALTER TABLE、LOAD DATA " "INFILE の最中) に利用できる一時ファイルの最大サイズ。" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "インデックス作成時に利用する一時ファイルの最大サイズ" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6585,11 +6683,11 @@ msgstr "" "シュの差がここで指定した値以上に大きくなる場合は、キーキャッシュ法が使われま" "す。" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "スレッドの修復" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6597,11 +6695,11 @@ msgstr "" "この値が 1 より大きい場合は MyISAM テーブルのインデックスも修復中にソートプロ" "セスによって (スレッドごとに) 同時作成されます。" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "ソートバッファのサイズ" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6609,11 +6707,11 @@ msgstr "" "REPAIR TABLE の最中に MyISAM のインデックスをソートするとき、あるいは CREATE " "INDEX や ALTER TABLE でインデックスを作成するときに割り当てられるバッファ。" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "インデックスキャッシュの大きさ" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6621,11 +6719,11 @@ msgstr "" "インデックスキャッシュに割り当てるメモリ量。デフォルト値は 32MB です。ここで" "割り当てたメモリはインデックスページのキャッシュにのみ利用されます。" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "レコードキャッシュの大きさ" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6635,11 +6733,11 @@ msgstr "" "量。デフォルト値は 32MB です。このメモリはハンドルデータファイル (.xtd) や行" "ポインタファイル (.xtr) の変更をキャッシュするのに利用されます。" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "ログキャッシュの大きさ" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6647,11 +6745,11 @@ msgstr "" "トランザクションログデータをキャッシュするのに使うトランザクションログキャッ" "シュに割り当てるメモリ量。デフォルトは 16MB です。" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "ログファイルの閾値" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6659,11 +6757,11 @@ msgstr "" "トランザクションログがどこまで増えたらロールオーバーして新しいログを作成する" "か。デフォルト値は 16MB です。" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "トランザクションバッファの大きさ" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6671,11 +6769,11 @@ msgstr "" "グローバルトランザクションログバッファの大きさ(このエンジンはこの大きさのバッ" "ファを2つ割り当てます)。デフォルトは 1MB です。" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "チェックポイント頻度" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6683,11 +6781,11 @@ msgstr "" "チェックポイントを実行する前にトランザクションログに書き込むデータ量。デフォ" "ルト値は 24MB です。" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "データログの閾値" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6699,11 +6797,11 @@ msgstr "" "で、この変数の値を大きくするとデータベースに保存できるデータの総数を増やすこ" "とができます。" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "ガベージ閾値" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6711,11 +6809,11 @@ msgstr "" "データログファイルのガベージが何%になったら圧縮するか。1 から 99 までの値を" "とります。デフォルトは 50 です。" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "ログバッファの大きさ" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6725,27 +6823,27 @@ msgstr "" "エンジンはスレッドごとにバッファをひとつ割り当てます(そのスレッドがデータログ" "を書き出す必要がある場合のみ)。" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "データファイルの増分" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "ハンドルデータファイル (.xtd) の増分。" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "行ファイルの増分" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "行ポインタファイル (.xtr) の増分。" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "ログファイル数" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6756,7 +6854,7 @@ msgstr "" "ログの数がそれ以上になると古いログが削除されます。それができない場合は、ログ" "ファイル名の変更が行われ、最大番号の 1 つ次の番号が付けられます。" -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6765,11 +6863,11 @@ msgstr "" "PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ" "ト%sにあります。" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "関連リンク" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "Paul McCullagh 氏による PrimeBase XT ブログ" @@ -6816,14 +6914,14 @@ msgstr "テーブルのデータのダンプ" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "イベント" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "定義" @@ -6881,14 +6979,14 @@ msgstr "MIME タイプを表示する" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "ホスト" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "生成日時" @@ -7088,21 +7186,12 @@ msgstr "ビュー" msgid "Export contents" msgstr "内容をエクスポートする" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "別ウィンドウで開く" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "視覚化できる空間情報がありません。" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "GLOBALS 変数が書き換えられている可能性があります" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした (行数 0)。" @@ -7203,12 +7292,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "テーブル名" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "カラム名" @@ -7278,93 +7367,77 @@ msgstr "SQL 互換モード:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "関数" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "隠す" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "バイナリ" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "長さによってはこのカラムを
    編集できなくなる場合もあります。" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "バイナリ - 編集不可" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "ウェブサーバ上のアップロードディレクトリ" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "編集/挿入" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "%s 行づつ挿入を行う" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "続いて" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "新しい行として挿入する" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "新しい行として挿入し、エラーは無視する" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "挿入クエリ文を表示する" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "前のページに戻る" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "新しいレコードを追加する" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "このページに戻る" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "次の行を編集する" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "値" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" @@ -7379,32 +7452,32 @@ msgstr "なし" msgid "Convert to Kana" msgstr "全角カナへ変換する" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "付け替え元" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "付け替え先" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "実行する" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "テーブル接頭辞の追加" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "追加する接頭辞" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "以下のクエリを本当に実行しますか?" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "変更なし" @@ -7614,80 +7687,80 @@ msgstr "ナビゲーションフレームの再読み込み" msgid "This format has no options" msgstr "この書式にはオプションはありません" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "NG" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "有効" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "一般的なリレーション機能" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "表示機能" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF の作成" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "カラムコメント表示機能" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "ブラウザ変換機能" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "column_comments テーブルの更新方法についてはドキュメントをご覧ください" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "ブックマークされている SQL" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL 履歴" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "永続的な『最近使用したテーブル』" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "永続的な『テーブルに対する環境設定』" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "ユーザ環境設定" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "高度な機能の設定する簡単な方法:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "examples/create_tables.sql で必要なテーブルを作成します。" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "作ったテーブルにアクセスできる pma ユーザを作成します。" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7695,11 +7768,11 @@ msgstr "" "設定ファイル (config.inc.php) で高度な機能を有効にします。" "config.sample.inc.php にある設定例をコピーするといいでしょう。" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "更新した設定ファイルを読み込むために phpMyAdmin にログインし直します。" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "説明がありません" @@ -7707,7 +7780,7 @@ msgstr "説明がありません" msgid "Slave configuration" msgstr "スレーブの設定" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "マスタサーバの変更または再設定" @@ -7721,13 +7794,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "ユーザ名" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "ポート" @@ -7740,7 +7813,7 @@ msgid "Slave status" msgstr "スレーブステータス" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "変数" @@ -7756,38 +7829,38 @@ msgstr "" "--report-host=host_name オプションで起動したスレーブだけが、このリストに表示" "されます。" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "スレーブレプリケーションのユーザ追加" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "すべてのユーザ" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "テキスト入力項目の値を利用する" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "すべてのホスト" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "ローカル" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "このホスト" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "ホストテーブルを使う" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7803,7 +7876,7 @@ msgstr "パスワードを生成する" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7834,88 +7907,89 @@ msgstr "イベント %1$s を作成しました。" msgid "One or more errors have occured while processing your request:" msgstr "リクエストの処理中に 1 つ以上のエラーが発生しました:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "イベントを編集する" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "要求処理中でのエラー" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "詳細" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "イベント名" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "イベント種別" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "%s に変更する" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "実行日時" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "実行間隔" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "開始" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "終了" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "完了後もイベントを残す" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "定義者" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "定義者の指定は「ユーザ名@ホスト名」の形式でなければなりません。" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "イベント名は必須です" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "有効な実行間隔を指定してください。" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "有効な実行日時を指定してください。" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "有効な種別イベントを指定してください。" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "イベントの定義は必須です。" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "新規作成" @@ -7948,7 +8022,7 @@ msgstr "" "「mysqli」拡張を使用するようにしてください。" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "ルーチンタイプが不正です: \"%s\"" @@ -7967,69 +8041,69 @@ msgstr "ルーチン %1$s を変更しました。" msgid "Routine %1$s has been created." msgstr "ルーチン %1$s を作成しました。" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "ルーチンを編集する" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "ルーチン名" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "パラメータ" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "入出力" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "長さ/値" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "パラメータを追加する" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "最後のパラメータを削除する" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "返り値の種類" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "返り値の長さ/値" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "返り値のオプション" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "DETERMINISTIC" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "SQL SECURITY" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "データ干渉方式" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "ルーチン名は必須です" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "パラメータに対して不正な入出力「%s」が与えられています。" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8037,36 +8111,36 @@ msgstr "" "ルーチンパラメータが ENUM、SET、VARCHAR、VARBINARY の場合、長さ/値は必須で" "す。" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "ルーチンの各パラメータに対して、名前とデータ型は必須です。" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "ルーチンに対して、有効な返り値の種類を指定してください。" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "ルーチンの定義は必須です。" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "ルーチン %s の実行結果" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "ルーチンを実行する" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "ルーチンのパラメータ" @@ -8084,36 +8158,36 @@ msgstr "トリガ %1$s を変更しました。" msgid "Trigger %1$s has been created." msgstr "トリガ %1$s を作成しました。" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "トリガを編集する" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "トリガ名" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "実行時機" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "トリガ名は必須です" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "有効な実行時機を指定してください。" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "有効なトリガイベントを指定してください" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "有効なテーブル名を指定してください" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "トリガの定義は必須です。" @@ -8197,7 +8271,7 @@ msgstr "表示できるイベントがありません。" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8206,7 +8280,7 @@ msgstr "%s テーブルは存在しません!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8214,7 +8288,7 @@ msgid "Please configure the coordinates for table %s" msgstr "テーブル %s の座標を設定してください" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8225,27 +8299,27 @@ msgstr "データベース %s のスキーマ - ページ %s" msgid "This page does not contain any tables!" msgstr "このページにはテーブルがありません!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "スキーマエラー: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "リレーショナルスキーマ" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "テーブルの内容" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "属性" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "その他" @@ -8353,7 +8427,7 @@ msgstr "言語ファイルが登録されていません: %1$s。" msgid "Current Server" msgstr "カレントサーバ" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "元にするデータベース" @@ -8371,7 +8445,7 @@ msgstr "リモートサーバ" msgid "Difference" msgstr "差分" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "対象先のデータベース" @@ -8390,7 +8464,7 @@ msgstr "サーバ %s 上でクエリを実行する" msgid "Run SQL query/queries on database %s" msgstr "データベース %s 上でクエリを実行する" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "クリア" @@ -8399,11 +8473,11 @@ msgstr "クリア" msgid "Columns" msgstr "カラム" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "この SQL をブックマークする" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "すべてのユーザがこのブックマークを利用できるようにする" @@ -8498,7 +8572,7 @@ msgstr "" "SQL の検証機能を初期化できません。%sドキュメント%s の記載通りに必要な PHP 拡" "張がインストールされているか確認してください。" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "%s の SQL コマンド追跡機能はアクティブです。" @@ -8523,8 +8597,8 @@ msgstr "" "ケープや引用符を含めることはできません。例: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "インデックス" @@ -8573,13 +8647,13 @@ msgstr "なし" msgid "As defined:" msgstr "ユーザ定義:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "主" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "全文" @@ -8592,17 +8666,17 @@ msgstr "最初へ" msgid "after %s" msgstr "%s の後へ" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "%s 個のカラムを追加する" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "最低ひとつはカラムを追加してください。" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "ストレージエンジン" @@ -8610,41 +8684,6 @@ msgstr "ストレージエンジン" msgid "PARTITION definition" msgstr "パーティションの定義" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "テーブル検索" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "表示するカラム (最低 1 つ):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "検索条件 (WHERE 節の全内容):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "ページあたりの行数" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "表示順:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "参照されている値を表示する" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "定型問い合わせ (ワイルドカード: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8792,11 +8831,11 @@ msgstr "" msgid "Manage your settings" msgstr "ユーザ環境設定の管理" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "設定を保存しました" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8809,7 +8848,7 @@ msgstr "" msgid "Could not save configuration" msgstr "設定が保存できません" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8839,7 +8878,7 @@ msgstr "サーバ接続の照合順序" msgid "Appearance Settings" msgstr "外観の設定" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "詳細設定" @@ -8859,9 +8898,9 @@ msgstr "ソフトウェアバージョン" msgid "Protocol version" msgstr "プロトコルバージョン" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "ユーザ" @@ -8996,126 +9035,126 @@ msgstr "" "Suhosin が稼働しているため問題が発生する可能性があります。詳しくは%sドキュメ" "ント%sをご覧ください。" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "データベースが存在しません" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "データベース名を絞る" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "テーブル名を絞る" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "テーブルを作成する" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "データベースを選択してください" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "左側のメニューを表示する/隠す" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "位置を保存" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "リレーションを作成" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "再読み込み" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "ヘルプ" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "角リンク" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "直リンク" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "グリッドにあわせる" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "すべてを大きく/小さく" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "大小を切り替える" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "リレーションラインの表示切替" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "PDF スキーマの座標をインポート/エクスポートする" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "クエリを作成する" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "メニューを移動する" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "すべて隠す/表示" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "リレーションのないテーブルを隠す/表示" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "テーブル数" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "リレーションを削除" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "リレーション演算子" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "以外" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "サブクエリ" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "変更後の名称" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "新しい名前" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "集計" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "アクティブオプション" @@ -9127,51 +9166,51 @@ msgstr "ページが作成されました" msgid "Page creation failed" msgstr "ページの作成に失敗しました" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "ページ" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "選択したページからインポートする" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "選択したページへエクスポートする" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "ページを作成し、そこへエクスポートする。" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "新しいページの名前: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "倍率にあわせたエクスポート/インポート" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "推奨" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "エラー: リレーションはすでに存在しています。" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "エラー: リレーションを追加できませんでした。" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "外部キーを追加しました" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "内部リレーションを追加しました" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "リレーションを削除しました" @@ -9183,54 +9222,54 @@ msgstr "デザイナの座標を保存するときにエラーが発生しまし msgid "Modifications have been saved" msgstr "修正を保存しました" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" "設定を保存することはできません。送信された内容にエラーが含まれています。" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "設定がインポートできませんでした" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "設定の一部に不正なデータが含まれています。" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "残っている設定を読み込みますか?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "保存日時:@DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "ファイルから読み込む" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "ブラウザ (Web Storage) から設定を読み込む" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" "設定をブラウザ (Web Storage) から読み込みます。ローカルの保存場所ですがクッ" "キーではありません。" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "保存されている設定はありません!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "この機能はブラウザよってサポートされていません" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "現在の設定とマージする" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9239,39 +9278,39 @@ msgstr "" "%sセットアップスクリプト%sを使用するなどして config.inc.php を変更することに" "より、より多くの設定を行うことができます。" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "ブラウザ (Web Storage) に保存する" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" "設定がブラウザ (Web Storage) に保存されます。ローカルの保存場所ですがクッキー" "ではありません。" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "既に保存してある設定に上書きします!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "すべての設定をリセットして、デフォルト値に復元します。" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "インポートファイル" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "全部" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" "テーブル %s が見つかりません。あるいは %s には設定されていません" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "ファイルが存在しません" @@ -9279,17 +9318,17 @@ msgstr "ファイルが存在しません" msgid "Select binary log to view" msgstr "表示するバイナリログを選択してください" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "ファイル" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "クエリの表示を切り詰める" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "クエリ全体を表示" @@ -9305,7 +9344,7 @@ msgstr "位置" msgid "Original position" msgstr "元の位置" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "情報" @@ -9313,30 +9352,30 @@ msgstr "情報" msgid "Character Sets and Collations" msgstr "文字セットと照合順序" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d 個のデータベースが正常に削除されました。" -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "データベースの統計" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "マスタレプリケーション" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "スレーブレプリケーション" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "統計を有効にする" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9348,209 +9387,209 @@ msgstr "" msgid "Storage Engines" msgstr "ストレージエンジン" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "データベースのダンプ (スキーマ) 表示" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "モジュール" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "先頭" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "プラグイン" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "モジュール" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "ライブラリ" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "バージョン" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "作者" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "ライセンス" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "無効" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "GRANT 以外のすべての特権を付与する" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "既存のテーブル構造の変更を許可する" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "ストアドルーチンの修正と削除を許可する" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "新しいデータベースやテーブルの作成を許可する" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "ストアドルーチンの作成を許可する" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "新しいテーブルの作成を許可する" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "一時テーブルの作成を許可する" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "ユーザアカウントの作成・削除・名前の変更を許可する" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "新しいビューの作成を許可する" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "データの削除を許可する" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "データベースとテーブルの削除を許可する" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "テーブルの削除を許可する" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "イベントスケジューラにイベントを設定できるようにする" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "ストアドルーチンの実行を許可する" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "データのインポート、エクスポートを許可する" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "特権テーブルの再読み込みなしでユーザ・特権の追加を許可する" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "インデックスの作成、削除を許可する" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "データの挿入、置換を許可する" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "現在のスレッドのテーブルロックを許可する" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "単位時間内に可能な新規接続回数を制限する" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "単位時間内にサーバに送信可能なクエリ数を制限する" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" "単位時間内に実行可能なテーブルないしデータベースの編集コマンド数を制限する" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "ユーザの同時接続数を制限する" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "全ユーザのプロセスを閲覧できるようにする" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "このバージョンの MySQL では無効です。" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "サーバ設定の再読み込み、サーバキャッシュのフラッシュを許可する" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "スレーブ/マスタの照会を許可する" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "レプリケーションスレーブでは有効にする必要があります。" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "データの読み込みを許可する" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "データベース総一覧へのアクセスを許可する" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW クエリの実行を許可する" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "サーバのシャットダウンを許可する" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9560,161 +9599,161 @@ msgstr "" "ザのスレッドを停止するといった管理操作をする場合はたいていこの設定が必要にな" "ります。" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "トリガの作成・削除を許可する" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "データの修正を許可する" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "特権はありません。" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "なし" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "テーブル固有の特権" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "注意: MySQL の特権名は英語で表示されます" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "管理" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "グローバル特権" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "データベースに固有の特権" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "リソースの制限" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意: オプションを 0 (ゼロ)に設定すると制限を解除します。" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "ログイン情報" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "パスワードは変更しない" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "ユーザが存在しません。" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "ユーザ %s は既に存在します!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "新しいユーザを追加しました。" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "%s の特権を更新しました。" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s の特権を取り消しました" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "%s のパスワードは正しく変更されました。" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "%s を削除中です" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "削除するユーザが選択されていません!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "特権を再読み込みしています" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "選択されたユーザは正常に削除されました。" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "特権を正常に再読み込みしました。" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "特権を編集" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "取り消し" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "すべてエクスポート" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "すべて" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "すべてのユーザに対する特権" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "%s に対する特権" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "ユーザ概略" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "権限委譲" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "選択したユーザを削除する" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "特権をすべて取り消してユーザを削除する" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "ユーザと同名のデータベースを削除する" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9727,130 +9766,130 @@ msgstr "" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" "込み%s をしてください。" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "特権テーブルには選択したユーザがいません。" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "このカラムに固有の特権" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "データベースに特権を追加" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "_ や % というワイルドカードを文字として使用するときは \\ でエスケープしてくだ" "さい。" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "テーブルに特権を追加" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "ログイン情報の変更 / ユーザの複製" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "同じ特権を持つ新しいユーザを作る" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "元のユーザも残す" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "ユーザテーブルから元のユーザを削除する" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "元のユーザの特権をすべて無効にしてから削除する" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "ユーザテーブルから元のユーザを削除し、特権の再読み込みをする" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "ユーザ専用データベース" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "同名のデータベースを作成してすべての特権を与える" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "データベース "%s" への全ての特権を与える" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr ""%s" にアクセスできるユーザ" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "グローバル" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "データベース固有" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "ワイルドカード" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "ビュー %s を破棄しました。" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "不明なエラーです" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "マスタ %s に接続していません。" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "マスタのログの位置が読み込めません。マスター上の特権問題の可能性があります。" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "マスタを切り替えることができません" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "マスタサーバを %s へ切り替えるのに成功しました。" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "このサーバのレプリケーションプロセスに、マスタが設定されています。" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "マスタステータスの表示" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "接続しているスレーブの表示" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9859,11 +9898,11 @@ msgstr "" "このサーバのレプリケーションプロセスには、マスタが設定されていません。設定を行いますか?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "マスタ設定" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9878,19 +9917,19 @@ msgstr "" "を無視して、特定のデータベースだけのレプリケーションを許可するモード。以下よ" "りいずれかのモードを選択してください。" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "特定のデータベースだけを除いた残り全てをレプリケーションする" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "特定のデータベースだけレプリケーションする" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "データベースを選択してください:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -9898,7 +9937,7 @@ msgstr "" "my.cnf の [mysqld] セクションの最後に以下の行を追加し、その後、MySQL サーバを" "再起動してください。" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -9908,84 +9947,84 @@ msgstr "" "のサーバマスタとして設定されていることを知らせるメッセージが表示され" "ます。" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "スレーブの SQL スレッドが実行していません!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "スレーブの IO スレッドが実行していません!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "サーバはレプリケーションプロセスではスレーブとして設定されています。どのよう" "にしたいですか?" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "スレーブのステータステーブルを閲覧する" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "データベースをマスタと同期させる" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "スレーブの操作:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "全開始" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "全停止" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "スレーブのリセット" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "SQL スレッドのみ開始" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "SQL スレッドのみ停止" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "IO スレッドのみ開始" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "IO スレッドのみ停止" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "管理エラー:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "エラーのスキップは、マスタとスレーブの同期を切ることになるかもしれません!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "現在のエラーをスキップする" # I think better of "Skip next %s errors." -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "エラースキップする" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "個" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -9994,126 +10033,126 @@ msgstr "" "このサーバのレプリケーションプロセスには、スレーブが設定されていません。設定を行いますか?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "スレッド %s は正常終了しました。" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "スレッド %s の終了に失敗しました。すでに閉じているようです。" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "ハンドラ" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "クエリキャッシュ" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "スレッド" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "一時データ" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "遅延インサート" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "キーキャッシュ" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "結合" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "ソート" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "トランザクションコーディネータ" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "すべてのテーブルをフラッシュする(閉じる)" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "開いているテーブルを表示する" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "スレーブホストを表示する" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "スレーブの状態を表示する" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "クエリキャッシュをフラッシュする" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "ランタイム情報" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "すべての状態変数" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "モニタ" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "アドバイザ" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "再描画間隔: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "フィルタ" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "含まれている文字:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "警告値のみ表示する" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "種別による絞り込み..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "生の値 (書式化なし) で表示する" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "関連リンク:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "事象の解析をする" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "アドバイザの利用にあたって" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10121,7 +10160,7 @@ msgstr "" "アドバイザ・システムは、サーバの状態変数を分析することにより、ふさわしいと思" "われるサーバ変数の調整方法を提供するものです。" -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10130,7 +10169,7 @@ msgstr "" "このシステムは、単純な計算を基にして経験則によって調整方法を提供するため、お" "使いのシステムに必ずしも当てはまるものではないことに注意してください。" -#: server_status.php:920 +#: server_status.php:919 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 " @@ -10140,7 +10179,7 @@ msgstr "" "を確認しておいてください。間違ったチューニングは、パフォーマンスに非常に悪影" "響を与える可能性があります。" -#: server_status.php:922 +#: server_status.php:921 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 " @@ -10151,31 +10190,31 @@ msgstr "" "変更した箇所を元に戻します。" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "起動以後の問い合わせ数:%s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "ステートメント" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "クエリ数" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "起動以後のネットワークトラフィック:%s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10183,19 +10222,19 @@ msgstr "" "この MySQL サーバは、レプリケーションプロセスのマスタス" "レーブとして動作しています。" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" "この MySQL サーバは、レプリケーションプロセスのマスタとして動作" "しています。" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" "この MySQL サーバは、レプリケーションプロセスのスレーブとして動" "作しています。" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10203,11 +10242,11 @@ msgstr "" "サーバ上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "レプリケーションステータス" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10215,45 +10254,45 @@ msgstr "" "処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ" "が報告してくる統計は不正確なことがあります。" -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "受信済" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "送信済" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "最大同時接続数" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "失敗回数" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "中断" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "コマンド" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "クライアントが適切に接続を閉じなかったために中断された接続数。" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL サーバへの接続を試みて失敗した回数。" -#: server_status.php:1322 +#: server_status.php:1321 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 " @@ -10262,16 +10301,16 @@ msgstr "" "一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた" "め一時ファイルにステートメントを保存したトランザクション数。" -#: server_status.php:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "一時バイナリログキャッシュを使用したトランザクション数。" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL サーバへの接続試行回数 (成否に関わらず)。" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10282,24 +10321,24 @@ msgstr "" "Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ" "スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "mysqld が生成した一時ファイル数。" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数。" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数。" -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10307,23 +10346,23 @@ msgstr "" "使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ" "ルの数だけ固有のスレッドが用意されます。" -#: server_status.php:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED で書き込まれた行数。" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "FLUSH 文の実行回数。" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "内部で COMMIT 文を実行した回数。" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "テーブルから行を削除した回数。" -#: server_status.php:1334 +#: 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 " @@ -10333,7 +10372,7 @@ msgstr "" "ての情報を持っているか問い合わせることができます。これを開示と言いますが、" "Handler_discover はその開示されたタイムテーブルの数です。" -#: server_status.php:1335 +#: 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, " @@ -10343,7 +10382,7 @@ msgstr "" "もインデックスの全スキャンを実行しているものと思われます。例えば SELECT col1 " "FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)。" -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10351,7 +10390,7 @@ msgstr "" "キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ" "ルが適切にインデックスされているものと考えられます。" -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10361,7 +10400,7 @@ msgstr "" "エリに範囲指定をしているか、インデックススキャンを行っているときに増加しま" "す。" -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10369,7 +10408,7 @@ msgstr "" "キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER " "BY ... DESC の最適化に利用されます。" -#: server_status.php:1339 +#: 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 " @@ -10381,7 +10420,7 @@ msgstr "" "キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に" "不適切なところがあります。" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10392,36 +10431,36 @@ msgstr "" "キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適" "切か、クエリがインデックスを利用するように書かれていないことを意味します。" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "内部で ROLLBACK 文を実行した回数。" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "テーブル内の行を更新したリクエストの数。" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "テーブル内に行を挿入したリクエストの数。" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" "データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)。" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "現在のダーティページの数。" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "フラッシュリクエストを受けたバッファプールのページ数。" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "空きページ数。" -#: server_status.php:1348 +#: 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 " @@ -10431,7 +10470,7 @@ msgstr "" "るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し" "たりできなくなっているページの数です。" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10443,11 +10482,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data という式でも計" "算できます。" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "ページのバッファプールサイズの合計。" -#: server_status.php:1351 +#: 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." @@ -10455,7 +10494,7 @@ msgstr "" "InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン" "ダムな順番でスキャンするときに発生します。" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10463,11 +10502,11 @@ msgstr "" "InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル" "なテーブル全スキャンを行うときに発生します。" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB が実行した論理読み込みリクエストの数。" -#: server_status.php:1354 +#: 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." @@ -10475,7 +10514,7 @@ msgstr "" "InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ" "ばならなかった論理読み込みの回数。" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10489,51 +10528,51 @@ msgstr "" "そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され" "ていれば、この値は小さいはずです。" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB バッファプールへの書き込み回数。" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "これまでに fsync() を実行した回数。" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "現在保留されている fsync() の回数。" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "現在保留されている読み込みの数。" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "現在保留されている書き込みの数。" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "これまでのデータ読み込み量 (単位:バイト)。" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "データ読み込み回数の合計。" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "データ書き込み回数の合計。" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "これまでのデータの書き込み量 (単位:バイト)。" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数。" -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -10541,35 +10580,35 @@ msgstr "" "ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生" "したウェイトの回数。" -#: server_status.php:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "ログ書き込みリクエストの数。" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "ログファイルへの物理書き込みの回数。" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "ログファイルへの fsync 書き込みの回数。" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "保留中のログファイルへの fsync 回数。" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "保留中のログファイルへの書き込み回数。" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "ログファイルに書き込んだバイト数。" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "作成されたページ数。" -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10577,51 +10616,51 @@ msgstr "" "コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位" "で計算されますが、この値を使えば簡単にバイト単位に変換できます。" -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "読み込んだページ数。" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "書き込んだページ数。" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "現在待機中の行ロックの数。" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した平均時間 (単位:ミリ秒)。" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)。" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)。" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "行ロック取得時に待機した回数。" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB テーブルから削除した行数。" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB テーブルに挿入した行数。" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB テーブルから読み込んだ行数。" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB テーブルで更新された行数。" -#: server_status.php:1387 +#: 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." @@ -10629,7 +10668,7 @@ msgstr "" "変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの" "数。以前は Not_flushed_key_blocks でした。" -#: server_status.php:1388 +#: 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." @@ -10637,7 +10676,7 @@ msgstr "" "キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え" "ます。" -#: server_status.php:1389 +#: server_status.php:1388 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 " @@ -10646,15 +10685,15 @@ msgstr "" "キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ" "クの最大数です。" -#: server_status.php:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "使われているキーキャッシュの比率 (計算値)" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "キャッシュからキーブロックを読み込んだリクエストの数。" -#: server_status.php:1392 +#: 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 " @@ -10664,7 +10703,7 @@ msgstr "" "く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/" "Key_read_requests で計算できます。" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10672,20 +10711,20 @@ msgstr "" "キーキャッシュミスの割合。読み込みリクエストに対する物理読み込みで算出。(計算" "値)" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "キャッシュにキーブロックを書き込んだリクエストの数。" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "ディスクにキーブロックを物理書き込みした回数。" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "書き込みリクエストに対する物理書き込みの比率 (計算値)" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -10695,17 +10734,17 @@ msgstr "" "クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ" "フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です。" -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "サーバが起動してからの同時接続の最大数。" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数。" -#: server_status.php:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10713,19 +10752,19 @@ msgstr "" "開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ" "シュの値が小さすぎます。" -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "開いているファイルの数。" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "開いているストリームの数 (主にログの記録用です)。" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "開いているテーブルの数。" -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10735,19 +10774,19 @@ msgstr "" "ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解消され" "るかもしれません。" -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "クエリキャッシュの空きメモリ量。" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "キャッシュのヒット数。" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "キャッシュに追加されたクエリの数。" -#: server_status.php:1408 +#: 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 " @@ -10759,7 +10798,7 @@ msgstr "" "エリキャッシュは最後に使われた時刻が最も古いものから削除する (LRU) 戦略に従っ" "て削除するクエリを決めます。" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10767,19 +10806,19 @@ msgstr "" "キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ" "シュしないことになっている) クエリの数。" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "キャッシュに登録されているクエリの数。" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "クエリキャッシュの総ブロック数。" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "フェイルセーフレプリケーションの状態 (未実装)。" -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10787,11 +10826,11 @@ msgstr "" "インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン" "デックスをよく確認してください。" -#: server_status.php:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "参照テーブルで範囲検索をした結合の数。" -#: server_status.php:1415 +#: 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.)" @@ -10799,7 +10838,7 @@ msgstr "" "キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数" "(0 でない場合はテーブルのインデックスをよく確認してください)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10807,15 +10846,15 @@ msgstr "" "最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ" "ん)" -#: server_status.php:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "最初のテーブルを全スキャンした結合の数。" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数。" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10823,23 +10862,23 @@ msgstr "" "レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起" "動時からの合計)。" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "このサーバがマスタに接続するスレーブである場合は ON になります。" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数。" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数。" -#: server_status.php:1423 +#: server_status.php:1422 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 " @@ -10848,23 +10887,23 @@ msgstr "" "ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合" "は sort_buffer_size システム変数の値を増やした方がよいでしょう。" -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "範囲指定付きでソートが行われた回数。" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "ソート済の行数。" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "テーブルをスキャンしたときに実行されたソートの回数。" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "テーブルロックをすぐに取得できた回数。" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10875,7 +10914,7 @@ msgstr "" "フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで" "もだめならテーブルを分割するか、レプリケーションを利用してください。" -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -10885,11 +10924,11 @@ msgstr "" "Connections で計算できます。この値が赤くなっている場合は thread_cache_size を" "大きくしてください。" -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "現在開いている接続の数。" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10900,47 +10939,47 @@ msgstr "" "thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題" "がない場合はふつうあまりパフォーマンスは向上しません)" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "スレッドキャッシュのヒット割合 (計算値)" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "スリープしていないスレッドの数。" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "モニタ開始" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "使用方法/セットアップ" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "グラフの再配置/編集完了" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "グラフの追加" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "グラフの再配置/編集" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "再描画間隔" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "1 段のグラフ数" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "モニタ環境設定" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -10948,15 +10987,15 @@ msgstr "" "モニタの環境設定をローカルに保存します。変更されているモニタ環境をエクスポー" "トできます。" -#: server_status.php:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "デフォルトに戻す" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "モニタの使用方法" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10970,7 +11009,7 @@ msgstr "" "いずれかを有効にする必要があります。なお、general_log は大量のデータを生成" "し、サーバの負荷を 15% 増加させますので、注意するようにしてください。" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10982,11 +11021,11 @@ msgstr "" "グ機能は、MySQL 5.1.6 以降でサポートされています。ですが、サーバのグラフモニ" "タ機能は使用することができます。" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "モニタの使い方:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -10996,7 +11035,7 @@ msgstr "" "のところよりグラフを追加や再描画間隔の変更することができ、それぞれのグラフに" "ある歯車のアイコンを通じて削除が行えます。" -#: server_status.php:1655 +#: server_status.php:1654 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 +11048,11 @@ msgstr "" "れ表示されますので、実行されたクエリを確認することができます。SELECT 文の部分" "をクリックすることで、更なるクエリ解析が可能です。" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "注意事項:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11026,194 +11065,194 @@ msgstr "" "うにし、それ以上必要がないのであれば、general_log を無効にして一般クエリログ" "テーブルを空にしておくのが望ましいです。" -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "プリセットグラフ" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "状態変数" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "系列の選択:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "一般的なモニタ対象" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "もしくは対象変数名:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "差分値として表示する" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "除数を適用する" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "データ値に単位を追加する" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "この系列を追加する" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "系列をクリアする" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "グラフの系列:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "ログの統計" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "選択期間:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "SELECT、INSERT、UPDATE、DELETE 文のみ取得する" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "結果を扱いやすくするために INSERT 文におけるデータ部を同一のように扱う" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "ログの統計元を選択することができます。" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "結果はクエリ文でグループ化されます。" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "クエリの解析" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d 秒" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d 分" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "元のデータベースに接続できませんでした" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "対象先のデータベースに接続できませんでした" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "データベース '%s' が存在しません。" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "構造の同期" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "データの同期" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "存在しません" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "構造の差分" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "データの差分" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "カラムの追加" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "カラムの削除" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "カラムの変更" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "インデックスの削除" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "インデックスを適用する" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "行の更新" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "行の挿入" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "対象先のテーブルから古い行をすべて削除しますか?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "選択された変更を適用する" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "データベースの同期" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "選択された対象先のテーブルは、元のテーブルと同期されています。" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "対象先のデータベースが、元のデータベースと同期されています。" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "実行されたクエリ" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "手動で入力する" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "現在の接続" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "設定:%s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "ソケット" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11221,19 +11260,19 @@ msgstr "" "対象先のデータベースが完全に元のデータベースと同期されます。元のデータベース" "は変更されません。" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "変数の設定に失敗しました" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "サーバ変数と設定値" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "セッション値" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "グローバル値" @@ -11571,153 +11610,153 @@ msgstr "キーは文字、数字[em]それと[/em]特殊文字を含める必要 msgid "Wrong data" msgstr "データが正しくありません" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を使用する。" -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "以下のクエリを本当に実行しますか?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "PHP コードとして表示" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "検証した SQL 文" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL の結果" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "生成環境" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "テーブル `%s` のインデックスに問題があります" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "ラベル" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "テーブル %1$s は正常に変更されました" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "カラムは正常に移動されました。" -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "横棒グラフ" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "縦棒グラフ" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "折れ線グラフ" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "曲線グラフ" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "円グラフ" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "積み上げ形式" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "グラフの題名" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "X 軸:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "系列:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "X 軸のラベル:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "X 軸の値" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Y 軸のラベル:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Y 軸の値" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "テーブル %s は既に存在します!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "テーブル %1$s を作成しました。" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "テーブルのダンプ (スキーマ) 表示" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "視覚化した空間情報" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "幅" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "高さ" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "ラベルカラム" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- なし --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "空間情報カラム" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "再描画" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "ファイルに保存" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "ファイル名" @@ -11733,30 +11772,30 @@ msgstr "インデックス名を PRIMARY に変更することはできません msgid "No index parts defined!" msgstr "インデックス部分が定義されていません!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "インデックスを追加する" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "インデックスを編集する" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "インデックス名:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(主キーは必ず \"PRIMARY\" という名前でなければなりません。また主" "キー以外に \"PRIMARY\" という名前を使ってはなりません!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "インデックスの種類:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "%s 個のインデックスカラムを追加する" @@ -11779,255 +11818,255 @@ msgstr "テーブル %s を %s に移動しました。" msgid "Table %s has been copied to %s." msgstr "テーブル %s を %s にコピーしました。" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "テーブル名が空です!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "テーブルの並び順" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(1 回)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "テーブルを (データベース).(テーブル) へ移動する:" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "テーブルオプション" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "変更後のテーブル名称" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "テーブルを (データベース).(テーブル) にコピーする:" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "コピーしたテーブルに切り替える" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "テーブルメンテナンス" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "テーブルのデフラグ" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "テーブル %s をフラッシュしました" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "テーブルをフラッシュする (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "データまたはテーブルの削除" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "テーブルを空にする (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "テーブルを削除する (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "パーティション管理" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "パーティション %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "分析" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "確認" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "最適化" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "再構築" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "修復" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "パーティションを削除" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "参照整合性の確認:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "テーブルを表示しています" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "ディスク使用量" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "有効" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "行の統計" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "静的" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "動的" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "行の長さ" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "行のサイズ" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "次の自動付番" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "%1$s に外部キーを作成するときにエラーが発生しました (データ型を確認してくださ" "い)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "内部リレーション" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "対応する外部リレーションが存在する場合、内部リレーションは必要ありません。" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "外部キー制約" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "空間" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "件数集計" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "主キーを追加する" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "ユニークインデックスを追加する" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "空間インデックスを追加する" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "全文インデックスを追加する" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "なし" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "カラム %s を削除しました" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "%s に主キーを追加しました" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "%s にインデックスを追加しました" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "他の操作を表示します" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "カラムを移動させる" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "ドラックして上下させ、カラムを移動させてください。" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "ビューを編集する" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "リレーションビュー" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "テーブル構造を確認する" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "カラムを追加する" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "テーブルの末尾" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "テーブルの先頭" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "指定カラムの後に %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "%s つのカラムにインデックスを作成する" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "パーティション有り" @@ -12182,65 +12221,37 @@ msgstr "追跡するデータ操作コマンド:" msgid "Create version" msgstr "世代を作成する" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "異なる 2 つのカラムによる定型問い合わせ (ワイルドカード: \"%\")" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "更なる検索条件" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "各点のラベルとして使われるカラム" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "プロットする結果の最大数" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "結果表示/プロット点の編集" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "使い方" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "ズームを戻す" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "他のテーマを入手する!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "利用できる MIME タイプ" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "イタリック表示されている MIME タイプには個別の変換関数はありません" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "利用できる変換機能" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "説明" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "特権不足でアクセスできません!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "プロファイルを更新しました。" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "ビューの名前" diff --git a/po/ka.po b/po/ka.po index 2c4ddaf24b..31544ebefa 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:15+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: georgian \n" @@ -14,79 +14,79 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "ყველაფრის ჩვენება" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "გვერდის ნომერი:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "გადასვლა" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Keyname" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "აღწერილობა" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "გამოიყენეთ ეს ველი" @@ -104,88 +104,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "მონაცემთა ბაზა '%1$s' წარმატებით შეიქმნა" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "კომენტარი მონაცემთა ბაზაში: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "ცხრილის კომენტარები" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "სვეტები" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "სტანდარტული" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Links to" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "კომენტარები" @@ -194,14 +195,14 @@ msgstr "კომენტარები" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "არა" @@ -214,182 +215,182 @@ msgstr "არა" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "დიახ" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "ყველას მონიშნვა" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "მონიშნვის მოხსნა" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "მონაცემთა ბაზა ცარიელია!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Table %s has been renamed to %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Table %s has been renamed to %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "" -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy msgid "Drop the database (DROP)" msgstr "მონაცემთა ბაზები არაა" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "მხოლოდ სტრუქტურა" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "სტრუქტურა და მონაცემები" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "მხოლოდ მონაცემები" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Add %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "კოლაცია" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "ცხრილი" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "სტრიქონები" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "ზომა" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "in use" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "შეიქმნა" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "უკანასკნელი განახლება" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Last check" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -399,119 +400,119 @@ msgstr[0] "" msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "დალაგება" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "ზრდადობით" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "კლებადობით" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "ჩვენება" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "კრიტერიუმი" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "და" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "ან" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "შეცვლა" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "ველის სვეტების დამატება/წაშლა" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "მოთხოვნის განახლება" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "გამოიყენე ცხრილები" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "მოთხოვნის გაგზავნა" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "მიუწვდომელია" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "ერთი სიტყვა მაინც" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "ყველა სიტყვა" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "ზუსტი ფრაზა" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "რეგულარული გამოსახულება" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -519,30 +520,30 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -550,260 +551,261 @@ msgid_plural "Total: %s matches" msgstr[0] "Total: %s match(es)" msgstr[1] "Total: %s match(es)" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "მონაცემთა ბაზაში ძებნა" -#: db_search.php:292 +#: db_search.php:295 #, 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:297 +#: db_search.php:300 msgid "Find:" msgstr "ძებნა:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "" -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "ცხრილ(ებ)ში:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "სვეტში:" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "No tables found in database." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "უცნობი" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "რეპლიკაცია" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "ჯამი" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "ყველას შემოწმება" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ექსპორტი" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "ცარიელი" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Drop" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "ცხრილის შემოწმება" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "ცხრილის ოპტიმიზება" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "ცხრილის აღდგენა" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "პრეფიქსის დამატება მაგიდისათვის" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 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:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 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:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "მონაცემების ლექსიკონი" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "ნანახი ცხრილები" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "მონაცემთა ბაზა" -#: db_tracking.php:81 +#: db_tracking.php:82 #, fuzzy msgid "Last version" msgstr "Create relation" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "შეიქმნა" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "სტატუსი" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "მოქმედება" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "ვერსია" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "სნეიფშუთის სტრუქტურა" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "ცხრილის შემოწმება" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "მონაცემთა ბაზა" @@ -816,27 +818,27 @@ msgstr "არასწორი ტიპი!" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "შეუსაბამობაა პარამეტრებში!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -846,176 +848,176 @@ msgstr "" msgid "Invalid export type" msgstr "Export type" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "წერტილის დამატება" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lines terminated by" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "ველის დამატება" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "შიდა ქსელის დამატება" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "გეომეტრიის დამატება" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "უკან" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -1025,7 +1027,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "ნამდვილად გსურთ " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1073,7 +1075,7 @@ msgstr "ახალი ველის დამატება" msgid "Edit Index" msgstr "რედაქტირების რეჟიმი" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -1094,16 +1096,16 @@ msgstr "ჰოსტის სახელის ველი ცარიელ msgid "The user name is empty!" msgstr "მომხმარებლის სახელის ველი ცარიელია!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "პაროლის ველი ცარიელია!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "პაროლებში შეუსაბამობაა!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "მომხმარებლის დამატება" @@ -1124,23 +1126,24 @@ msgstr "Remove selected users" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "რედაქტირება" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "გრაფიკული ტრაფიკის სქემა" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "" @@ -1150,24 +1153,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "სულ" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1189,7 +1192,7 @@ msgstr "სერვერის არჩევა" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "პროცესები" @@ -1209,7 +1212,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -1260,14 +1263,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1329,32 +1332,32 @@ msgstr "" msgid "Bytes received" msgstr "მიღებულია" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "კავშირები" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1370,11 +1373,11 @@ msgstr "%s table(s)" msgid "Questions" msgstr "სპარსული" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "ტრაფიკი" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1400,11 +1403,11 @@ msgstr "Snap to grid" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "არაა" @@ -1504,7 +1507,7 @@ msgstr "Other core settings" msgid "Current settings" msgstr "Other core settings" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1595,7 +1598,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "დრო" @@ -1705,10 +1708,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "შემოტანა" @@ -1766,9 +1769,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "გაუქმება" @@ -1784,11 +1787,11 @@ msgstr "ჩატვირთვა" msgid "Processing Request" msgstr "პროცესები" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1800,9 +1803,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1858,19 +1861,19 @@ msgstr "ახალი ველის დამატება" msgid "Show indexes" msgstr "Show grid" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Disable foreign key checks" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "ჩართულია" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1910,7 +1913,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1954,8 +1957,8 @@ msgstr "SQL Query box" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "შეცვლა" @@ -1965,18 +1968,18 @@ msgstr "შეცვლა" msgid "Query execution time" msgstr "Maximum execution time" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "შენახვა" @@ -1992,7 +1995,7 @@ msgstr "SQL Query box" msgid "Show search criteria" msgstr "SQL Query box" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2044,12 +2047,12 @@ msgstr "Query results operations" msgid "Data point content" msgstr "Data pointer size" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "იგნორირება" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "ასლი" @@ -2071,7 +2074,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2165,7 +2168,7 @@ msgstr "დაგენერირება" msgid "Change Password" msgstr "პაროლის შეცვლა" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2281,27 +2284,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2309,37 +2312,37 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "დეკ" @@ -2388,32 +2391,32 @@ msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "შაბ" @@ -2549,16 +2552,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "წამში" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "წუთში" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "საათში" @@ -2579,70 +2582,298 @@ msgstr "" msgid "Font size" msgstr "შრიფტის ზომა" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +#| msgid "Save directory" +msgid "Save edited data" +msgstr "დირექტორიის შენახვა" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Restore column order" +msgstr "CHAR textarea columns" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "დასაწყისი" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "წინა" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "შემდეგი" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "დასასრული" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Startup" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "ველების რაოდენობა" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "ორშ" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "ჰორიზონტალური" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "ვერტიკალური" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "ჩანიშნული მოთხოვნის გაშვება" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Sort by key" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "პარამეტრები" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Partial Texts" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Full Texts" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational display field" +msgid "Relational display column" +msgstr "Relational display field" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "ორობითი შიგთავსის ჩვენება" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "აჩვენეთ ორობით შინაარსი როგორც HEX" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "ინფორმაცია ბრაუზერის შესახებ" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "სტრიქონი წაიშალა" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Kill" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"შეიძლება იყოს მიახლოებითი. იხილეთ [a@./Documentation." +"html#faq3_11@Documentation]FAQ 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "მოთხოვნაში" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "სულ" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "მოთხოვნას დასჭირდა %01.4f წმ" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "PDF სქემის ჩვენება" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Create relation" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "ბმული ვერ მოიძებნა" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "phpMyAdmin-ის ახალი ფანჯრის გახსნა" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "ინდექსები" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "უნიკალური" @@ -2655,8 +2886,8 @@ msgstr "შეკუმშული" msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "კომენტარი" @@ -2677,130 +2908,130 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "მონაცემთა ბაზები" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "სერვერი" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "სტრუქტურა" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "ჩასმა" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "მოქმედებები" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "როგორც ჩანს ცხრილი ცარიელია!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "მოთხოვნა" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "პრივილეგიები" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Routines" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "მოვლენები" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "შემქნელი" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "მომხმარებელი" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "ბინარული ჟურნალი" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "ცვლადები" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "სიმბოლოთა ნაკრებები" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "ძრავები" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "შეცდომა" @@ -2828,7 +3059,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "ჩაისვა %1$d სტრიქონი." msgstr[1] "ჩაისვა %1$d სტრიქონი." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2926,16 +3157,112 @@ 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 +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 +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 +msgid "Value" +msgstr "მნიშვნელობა" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "ძებნა" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "ჩასმა" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Select fields (at least one):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:813 +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 "Maximum number of rows to display" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "SQL Query box" +msgid "Additional search criteria" +msgstr "SQL Query box" + +#: 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 "Do a \"query by example\" (wildcard: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +#| msgid "Control user" +msgid "How to use" +msgstr "Control user" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "დაბრუნება" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "take it" @@ -2954,7 +3281,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3249,20 +3576,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "დაკავშირება შეუძლებელია: პარამეტრები არასწორია." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "მოგესალმებათ %s" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3274,58 +3601,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "შესვლა" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "სერვერი:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "მომხმარებელი:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "პაროლი:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "სერვერის არჩევა" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL სერვერზე შესვლა შეუძლებელია" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "" @@ -3359,7 +3682,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "ცხრილები" @@ -3371,13 +3694,13 @@ msgstr "ცხრილები" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "მონაცემები" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Overhead" @@ -3406,252 +3729,222 @@ msgstr "" msgid "Check Privileges" msgstr "პრივილეგიების შემოწმება" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to read configuration file" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Could not load default configuration from: \"%1$s\"" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Invalid server index: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "მაქს: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "დოკუმენტაცია" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL მოთხოვნა" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL-მა თქვა: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL-ის ახსნა" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP კოდის გარეშე" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "განახლება" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "ძრავები" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profiling" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "კვი" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s დღე, %s საათი, %s წუთი და %s წამი" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Routines" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "დასაწყისი" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "წინა" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "შემდეგი" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "დასასრული" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "დაბეჭდვა" @@ -3683,8 +3976,8 @@ msgid "Closed" msgstr "Unclosed quote" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "გათიშულია" @@ -3835,9 +4128,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "დაბრუნება" @@ -4061,10 +4354,6 @@ msgstr "ცხრილის სტრუქტურის შეთავა msgid "Show binary contents as HEX by default" msgstr "ორობითის ჩვენება HEX ფორმატში იყოს ნაგულისხმევი" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "აჩვენეთ ორობით შინაარსი როგორც HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4125,7 +4414,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "ფაილის სახის შენახვა" @@ -4134,7 +4423,7 @@ msgid "Character set of the file" msgstr "სომბოლოთა ნაკრები ფაილისათვის" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "ფორმატი" @@ -4250,7 +4539,7 @@ msgid "MIME type" msgstr "MIME-ის ტიპი" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relations" @@ -5853,9 +6142,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "პაროლი" @@ -6143,32 +6432,24 @@ msgstr "" msgid "Details..." msgstr "დეტალები..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"შეიძლება იყოს მიახლოებითი. იხილეთ [a@./Documentation." -"html#faq3_11@Documentation]FAQ 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "პაროლის შეცვლა" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "პაროლი არაა" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Re-type" @@ -6193,22 +6474,22 @@ msgstr "ახალი მონაცემთა ბაზის შექმ msgid "Create" msgstr "შექმნა" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "პრივილეგიები არაა" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "სახელი" @@ -6405,25 +6686,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Recoding engine" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Create relation" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Create relation" @@ -6548,405 +6829,238 @@ msgstr "" msgid "Language" msgstr "ენა" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -#| msgid "Save directory" -msgid "Save edited data" -msgstr "დირექტორიის შენახვა" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Restore column order" -msgstr "CHAR textarea columns" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Startup" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "ველების რაოდენობა" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "ორშ" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "ჰორიზონტალური" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "ვერტიკალური" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "ჩანიშნული მოთხოვნის გაშვება" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Sort by key" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "პარამეტრები" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Partial Texts" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Full Texts" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational display field" -msgid "Relational display column" -msgstr "Relational display field" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "ორობითი შიგთავსის ჩვენება" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "ინფორმაცია ბრაუზერის შესახებ" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "სტრიქონი წაიშალა" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Kill" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "მოთხოვნაში" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "სულ" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "მოთხოვნას დასჭირდა %01.4f წმ" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "PDF სქემის ჩვენება" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Create relation" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "ბმული ვერ მოიძებნა" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "ინფორმაცია ვერსიის შესახებ" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "მონაცემთა ფაილები" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB-ის მდგომარეობა" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "pages" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Free pages" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Dirty pages" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Busy pages" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "მოთხოვნების წაკითხვა" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "ტრანზაქციის ბუფერის ზომა" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6954,48 +7068,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -7003,20 +7117,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Relations" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -7077,14 +7191,14 @@ msgstr "" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "მოვლენა" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7158,14 +7272,14 @@ msgstr "MIME-ის ხელმისაწვდომი ტიპები" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "ჰოსტი" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "დაგენერირების დრო" @@ -7364,21 +7478,12 @@ msgstr "ხედო" msgid "Export contents" msgstr "Export defaults" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "phpMyAdmin-ის ახალი ფანჯრის გახსნა" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7476,12 +7581,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "ცხრილის სახელი" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "სვეტების სახელები" @@ -7551,97 +7656,79 @@ msgstr "SQL compatibility mode" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "ფუნქცია" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "დამალვა" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "ბინარული" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "ჩასმა" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, 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:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "და შემდეგ" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "ახალი სტრიქონის ჩამატება" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 #, fuzzy msgid "Show insert query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "წინა გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "სხვა ახალი სტრიქონის დამატება" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "ამ გვერდზე დაბრუნება" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "შემდეგი სტრიქონის რედაქტირება" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "მნიშვნელობა" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" @@ -7658,38 +7745,38 @@ msgstr "არაა" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "პარ" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Submit" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "ახალი ველის დამატება" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "ნამდვილად გსურთ " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "ცვლილების გარეშე" @@ -7902,94 +7989,94 @@ msgstr "Customize navigation frame" msgid "This format has no options" msgstr "ამ ფორმატს არ აქვს პარამეტრები" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "not OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "ჩართულია" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF-ების შექმნა" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "ინფორმაცია ბრაუზერის შესახებ" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL history" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Persistent connections" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "" @@ -7998,7 +8085,7 @@ msgstr "" msgid "Slave configuration" msgstr "სერვერის კონფიგურაცია" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -8010,13 +8097,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "მომხმარებლის სახელი" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "დალაგება" @@ -8032,7 +8119,7 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "ცვლადი" @@ -8046,38 +8133,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "ნებისმიერი მომხმარებელი" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "გამოიყენე ტექსტური ველი" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "ნებისმიერი ჰოსტი" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "ლოკალური" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "ეს ჰოსტი" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8091,7 +8178,7 @@ msgstr "პაროლის დაგენერირება" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8124,105 +8211,106 @@ msgstr "Table %1$s has been created." msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Edit server" msgid "Edit event" msgstr "სერვერის რედაქტირება" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "პროცესები" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." msgid "Details" msgstr "დეტალები..." -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "მოვლენის ტიპი" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "მოვლენის ტიპი" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "შეცვლა" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "ჩანიშნული მოთხოვნის გაშვება" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Startup" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "დასასრული" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "სრული ჩასმები" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8253,7 +8341,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -8275,121 +8363,121 @@ msgstr "Table %s has been dropped" msgid "Routine %1$s has been created." msgstr "Table %1$s has been created." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "რედაქტირების რეჟიმი" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Routines" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "პირდაპირი ბმულები" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "ახალი ველის დამატება" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Rename database to" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Return type" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Length/Values" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "ცხრილის პარამეტრები" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "უსაფრთხოება" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, 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:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8411,44 +8499,44 @@ msgstr "Table %s has been dropped" msgid "Trigger %1$s has been created." msgstr "Table %1$s has been created." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new server" msgid "Edit trigger" msgstr "ახალი სერვერის დამატება" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "ტრიგერები" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "დრო" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "ცხრილის არასწორი სახელი" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8561,7 +8649,7 @@ msgstr "There are no configured servers" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8571,7 +8659,7 @@ msgstr "ცხრილი \"%s\" არ არსებობს!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8579,7 +8667,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8593,27 +8681,27 @@ msgstr "Schema of the \"%s\" database - Page %s" msgid "This page does not contain any tables!" msgstr "File %s does not contain any key id" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "ატრიბუტები" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "ექსტრა" @@ -8731,7 +8819,7 @@ msgstr "უცნობი ენა: %1$s." msgid "Current Server" msgstr "სერვერი" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "მონაცემთა ბაზაში ძებნა" @@ -8751,7 +8839,7 @@ msgstr "ახალი სერვერი" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "მონაცემთა ბაზაში ძებნა" @@ -8771,7 +8859,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "გაწმენდა" @@ -8782,11 +8870,11 @@ msgstr "გაწმენდა" msgid "Columns" msgstr "სვეტების სახელები" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8868,7 +8956,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8898,8 +8986,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "ინდექსი" @@ -8947,13 +9035,13 @@ msgstr "არაა" msgid "As defined:" msgstr "As defined:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "პირველადი" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Fulltext" @@ -8967,20 +9055,20 @@ msgstr "" msgid "after %s" msgstr "After %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s ველის დამატება" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "You have to add at least one field." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Storage Engine" @@ -8988,45 +9076,6 @@ msgstr "Storage Engine" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "ძებნა" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Select fields (at least one):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9208,13 +9257,13 @@ msgstr "" msgid "Manage your settings" msgstr "Other core settings" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "ცვლილებები შენახულია" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9227,7 +9276,7 @@ msgstr "" msgid "Could not save configuration" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9260,7 +9309,7 @@ msgstr "MySQL კავშირის კოლაცია" msgid "Appearance Settings" msgstr "Other core settings" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "Other core settings" msgid "More settings" @@ -9286,9 +9335,9 @@ msgstr "სერვერის ვერსია" msgid "Protocol version" msgstr "ოქმის ვერსია" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "მომხმარებელი" @@ -9427,147 +9476,147 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "მონაცემთა ბაზები არაა" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "ცხრილის სახელი" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "ცხრილის სახელი" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "ცხრილის შექმნა" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "გთხოვთ აირჩიოთ მონაცემთა ბაზა" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "მდებარეობის შენახვა" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "გადატვირთვა" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "დახმარება" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "პირდაპირი ბმულები" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "To select relation, click :" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "მოთხოვნის გაგზავნა" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "მენიუს გადატანა" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "ყველას დამალვა/ჩვენება" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "ცხრილების რაოდენობა" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Relation deleted" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "ექსპორტი" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "მოთხოვნაში" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Rename table to" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "მომხმარებლის სახელი" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "შექმნა" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9582,61 +9631,61 @@ msgstr "Table %1$s has been created." msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "pages" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "ფაილების შემოტანა" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Export/Import to scale" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "ახალი ინდექსის შექმნა" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "მომხმარებლის სახელი" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "რეკომენდებული" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "" @@ -9648,97 +9697,97 @@ msgstr "" msgid "Modifications have been saved" msgstr "ცვლილებები შენახულია" -#: prefs_forms.php:82 +#: prefs_forms.php:85 #, fuzzy #| msgid "Submitted form contains errors" msgid "Cannot save settings, submitted form contains errors" msgstr "Submitted form contains errors" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Could not load default configuration from: \"%1$s\"" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "ფაილების შემოტანა" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 #, fuzzy #| msgid "Other core settings" msgid "You have no saved settings!" msgstr "Other core settings" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 #, fuzzy #| msgid "Server configuration" msgid "Merge with current configuration" msgstr "სერვერის კონფიგურაცია" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "ფაილების შემოტანა" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "ყველა" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9748,17 +9797,17 @@ msgstr "ცხრილი \"%s\" არ არსებობს!" msgid "Select binary log to view" msgstr "აირჩიეთ საჩვენებელი ორობითი ჟურნალი" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "ფაილები" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -9774,7 +9823,7 @@ msgstr "მდებარეობა" msgid "Original position" msgstr "საწყისი მდებარეობა" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "ინფორმაცია" @@ -9782,33 +9831,33 @@ msgstr "ინფორმაცია" msgid "Character Sets and Collations" msgstr "სიმბოლოთა ნაკრებები და კოლაციები" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s databases have been dropped successfully." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "მონაცემთა ბაზების სტატისტიკა" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 #, fuzzy msgid "Master replication" msgstr "სერვერის კონფიგურაცია" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 #, fuzzy msgid "Slave replication" msgstr "სერვერის კონფიგურაცია" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "სტატისტიკის ჩართვა" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9818,383 +9867,383 @@ msgstr "" msgid "Storage Engines" msgstr "Storage Engines" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "დასაწყისი" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "სპარსული" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "გათიშულია" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "შეიცავს ყველა პრივილეგიას GRANT-ის გამოკლებით." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "პრივილეგიები არაა." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "არაა" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "ადმინისტრირება" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "გლობალური პრივილეგიები" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "არ შეცვალო პაროლი" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "მომხმარებლ(ებ)ის პოვნა ვერ მოხერხდა." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "მომხმარებელი %s უკვე არსებობს!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "თქვენ დაამატეთ ახალი მომხმარებელი." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "%s-ის წაშლა" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "პრივილეგიების რედაქტირება" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "ექსპორტი" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "ნებისმიერი" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "პრივილეგიები" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "პრივილეგიები" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "მომხმარებლის მიმოხილვა" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10203,48 +10252,48 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "პრივილეგიების დამატება შემდეგი მონაცემთა ბაზისათვის" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... ძველის შენახვა." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10252,97 +10301,97 @@ msgstr "" " ... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების " "გადატვირთვა." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" "იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "გლობალულრი" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "View %s has been dropped" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "The privileges were reloaded successfully." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 #, fuzzy msgid "Show master status" msgstr "Show slave status" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 #, fuzzy msgid "Master configuration" msgstr "სერვერის კონფიგურაცია" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10351,269 +10400,269 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "გთხოვთ აირჩიოთ მონაცემთა ბაზა" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 #, fuzzy msgid "Control slave:" msgstr "Control user" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full stop" msgstr "Fulltext" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "მხოლოდ SQL თემების გაშვება" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "გაეშვას მხოლოდ IO სტრუქტურა" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Handler" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Query cache" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Threads" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "დროებითი მონაცემები" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Delayed inserts" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Key cache" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Joins" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "დალაგება" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "განახლება" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "ფაილები" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "არ შეცვალო პაროლი" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Show open tables" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Show open tables" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relations" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "მოთხოვნის ტიპი" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "ინფორმაცია" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10621,120 +10670,120 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Customize startup page" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Statements" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 #, fuzzy msgid "Replication status" msgstr "რეპლიკაცია" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "მიღებულია" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "გაიგზავნა" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "შეწყვეტილია" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "ბრძანება" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10742,78 +10791,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10821,7 +10870,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10829,42 +10878,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10872,33 +10921,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10907,244 +10956,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "შემოტანილი ფაილების ფორმატი" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -11152,99 +11201,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11252,18 +11301,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11271,73 +11320,73 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Key cache" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Startup" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "ახალი ველის დამატება" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "განახლება" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR textarea columns" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Restore default value" -#: server_status.php:1632 +#: server_status.php:1631 #, fuzzy msgid "Monitor Instructions" msgstr "ინფორმაცია" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11346,7 +11395,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11354,18 +11403,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11373,11 +11422,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11385,95 +11434,95 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Rename database to" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "ცხრილების არჩევა" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "ცხრილის არასწორი სახელი" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "ახალი სერვერის დამატება" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL მოთხოვნები" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "სტატისტიკის ჩევნება" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "ყველას მონიშნვა" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "მოთხოვნის ტიპი" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11481,7 +11530,7 @@ msgid_plural "%d seconds" msgstr[0] "წამში" msgstr[1] "წამში" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11489,136 +11538,136 @@ msgid_plural "%d minutes" msgstr[0] "in use" msgstr[1] "in use" -#: server_synchronize.php:96 +#: server_synchronize.php:99 #, fuzzy msgid "Could not connect to the source" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: server_synchronize.php:99 +#: server_synchronize.php:102 #, fuzzy msgid "Could not connect to the target" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 #, fuzzy msgid "Structure Difference" msgstr "სტრუქტურა ხედისათვის" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 #, fuzzy msgid "Data Difference" msgstr "სტრუქტურა ხედისათვის" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL მოთხოვნები" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "დაუცველი კავშირი" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "კონფიგურაციის ფაილი" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "სერვერის ცვლადები და პარამეტრები" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "სესიის მნიშვნელობა" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "გლობალური მნიშვნელობა" @@ -11995,185 +12044,185 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters" msgid "Wrong data" msgstr "მონაცემთა ბაზები არაა" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "ნამდვილად გსურთ " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "PHP კოდის სახით ჩვენება" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL-ის შედეგი" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Label" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "%s databases have been dropped successfully." msgid "The columns have been moved successfully." msgstr "%s databases have been dropped successfully." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "მარ" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "სვეტები" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "ძრავები" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "შეკუმშული" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Report title" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL მოთხოვნები" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "მნიშვნელობა" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "მნიშვნელობა" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "ცხრილი %s უკვე არსებობს!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "ჩვენების GIS ვიზუალიზაცია" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "CHAR textarea columns" msgid "Label column" msgstr "CHAR textarea columns" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- არაა -" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Log file count" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "ფაილის სახის შენახვა" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12191,32 +12240,32 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "ახალი ველის დამატება" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "რედაქტირების რეჟიმი" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "ინდექსის სახელი:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "ინდექსის ტიპი:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -12239,276 +12288,276 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "ცხრილის სახელი ცარიელია!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(singly)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "ცხრილის პარამეტრები" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Dumping data for table" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "მაგიდების წაშლა (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "დანაყოფი %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analyze" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "შემოწმება" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "ოპტიმიზება" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Rebuild" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "აღდგენა" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "ცხრილების ჩვენება" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "ადგილის გამოყენება" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "ეფექტური" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "სტატიკური" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "დინამიური" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "სტრიქონის სიგრძე" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "სტრიქონის ზომა" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Internal relations" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" msgstr "Foreign key limit" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Session value" msgid "Distinct values" msgstr "სესიის მნიშვნელობა" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "სივრცით ინდექსის დამატება" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "არაა" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Table %s has been dropped" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "PHP-ის ინფორმაციის ჩვენება" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "%s ველის დამატება" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "ხედის ამობეჭდვა" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Relation view" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "ცხრილის სტრუქტურის შეთავაზება" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s ველის დამატება" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "ცხრილის ბოლოშო" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "ცხრილის დასაწყისში" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "After %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "დაყოფილი" @@ -12666,77 +12715,39 @@ msgstr "" msgid "Create version" msgstr "Create relation" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Do a \"query by example\" (wildcard: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "SQL Query box" -msgid "Additional search criteria" -msgstr "SQL Query box" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -#, fuzzy -#| msgid "Maximum number of rows to display" -msgid "Maximum rows to plot" -msgstr "Maximum number of rows to display" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -#| msgid "Control user" -msgid "How to use" -msgstr "Control user" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "დაბრუნება" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "MIME-ის ხელმისაწვდომი ტიპები" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "ხელმისაწვდომი გარდაქმნები" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "აღწერილობა" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "პროფილი განახლდა." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "VIEW name" diff --git a/po/kk.po b/po/kk.po index f388af68e0..3a03a997c6 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,7 +7,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-06-01 09:41+0200\n" "Last-Translator: Berikbol Zharylkassyn \n" "Language-Team: none\n" @@ -18,21 +18,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Бәрін көрсету" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Бет номері:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -42,58 +42,58 @@ msgstr "" "немесе сіздің браузеріңіз екі бет арасындағы жаңартылуды өзінің баптауында, " "қауіпсіздік үшін бұғаттап тастауда." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Өту" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Индекс атауы" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Сипаттама" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Осы мәнді қолданыңыз" @@ -111,88 +111,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s дерекқоры құрылды." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Дерекқорына түсініктеме: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Кестеге түсініктеме:" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Бағана" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Бос/Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Келісім бойынша" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Сілтемелер" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Түсініктеме" @@ -201,14 +202,14 @@ msgstr "Түсініктеме" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Жоқ" @@ -221,120 +222,120 @@ msgstr "Жоқ" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Иә" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Мәліметтер қорының дамп (схемасын) көру" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Дерекқорында, ешбір кестелер табылмады." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Барлығын ерекшелеу" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Eрекшеленгендерді алып тастау" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Дерекқорының аты көрсетілмеген!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s дерекқорының атауы, мына атауға %2$s, қайта қойылды" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s дерекқоры, мына жерге %2$s көшірілді." -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Дерекқорының атауын қайта қою." -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Дерекқорын өшіру" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "%s дерекқоры өшірілді." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "(DROP) дерекқорын өшіру" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Дерекқорының көшірілуі" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Тек құрылымы ғана" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Құрылымы және мәліметтері" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Тек мәліметтер ғана" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Көшірмес бұрын, дерекқорын құрып алыңыз(CREATE DATABASE)" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Қосу %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қосу" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Шектеу қою" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Көшірілген дерекқорына өту" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Салыстыру" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -343,59 +344,59 @@ msgstr "" "Кейбір ұлғаймалы мүмкіндіктеріне байланысты, PhpMyAdmin қол жетімсіз. " "Себебін анықтау үшін %sмұнда%s басыңыз." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Байланыс схемасын түзету немесе экспорттау" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Кесте" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Қатарлар" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Мөлшері" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "қолданыста" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Құру" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Соңғы жаңартылым" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Соңғы тексерім" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -406,395 +407,396 @@ msgstr[1] "%s кестелерімен" msgid "You have to choose at least one column to display" msgstr "Сұраныс орындалуы үшін, көрсетілімдегі баған/бағандар таңдалуы тиіс" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sСұраныстарды көз мөлшерiмен құрастырушыға%s ауысып қосылу" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Сұрыптау" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Өсу бойынша" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Кему бойынша" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Көрсету" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Белгі" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Қою" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Және" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Өшіру" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Немесе" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Өзгерту" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Белгі қатарларын Қосу/Өшіру" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Бағандарды Қосу/Өшіру" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Жаңартылуға жіберілген сұраныс" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Кестелерді қолдану" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "%s дерекқорына SQL сұранысы" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Сұранысты жіберу" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Рұқсат жоқ" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "кез-келген сөз" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "барлық сөздер" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "дәл сәйкестiк" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "жүйелі түрде айтылу" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s іздеу нәтижесі:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Кесте %s үшін сәйкестіктерді өшіреміз бе?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Барлығы: %s сәйкестік" msgstr[1] "Барлығы: %s сәйкестіктер" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Дерекқорынан іздеу" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Іздеу үшін сөз немесе мағына (топтық таңба \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Сайт бойынша іздеу:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Сөз, бос орынмен бөлінеді (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Кесте бойынша:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Бағана бойынша" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Дерекқорында, ешбір кесте табылмады" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "белгісіз" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "%s кестесі аластанды" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "%s көрсетілімі жойылған" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "%s кестесі жойылған болатын" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Бақылау қосулы" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Бақылауды белсендендірілу" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Репликация" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Барлығы" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, fuzzy, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s - келісім бойынша орнатылған MySQL серверінің кесте типі" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Белгi соғылғандарды:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Барлығын белгілеу" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Ықшамдауды қажет ететіндерді белгілеу" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Баспаға шығару түрі" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Тазарту" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Жою" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Кестені тексеру" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Кестені тиімді ету" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Кестені калпына келтіру" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Кестенiң талдауы" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Кестеге префикс қосу" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Кестениң префиксін ауыстыру" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Кестені префикс пен бірге көшіру" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Мәлiметтердiң сөздiгi" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Қадағаланатын кестелер" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Дерекқор" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Соңғы нұсқа" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Құрылған" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Жаңартылған" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Күй" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Әрекет" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Кесте үшін мәліметтерді бақылауды тоқтату" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "қосулы" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "өшірулі" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Нұсқа" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Бақылаудың есептемесі" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Құрылым түсірілімі" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Бақылауға болмайтын кестелер" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Кестені бақылау" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Дерекқор журналы" @@ -806,16 +808,16 @@ msgstr "Типі дұрыс емес!" msgid "Selected export type has to be saved in file!" msgstr "Таңдалынған экспорт типі, файлда сақталуы тиіс!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Параметрлері қате!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Файлды сақтау үшін %s дисктегі бос орын жеткіліксіз." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -823,12 +825,12 @@ msgstr "" "Файл %s қазірдің өзінде серверде қолданыста бар, атын өзгертіңіз немесе " "қайта жазу параметрін қосыңыз." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "%s файлын веб-серверге сақтау үшін құқық жеткіліксіз." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "%s файлына дамп сақталынды" @@ -837,86 +839,86 @@ msgstr "%s файлына дамп сақталынды" msgid "Invalid export type" msgstr "Экспорт типі қате" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" баған мәні" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "OpenStreetMaps негізгі қабат ретінде қолданыңыз" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Геометрия" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Нүкте" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Нүкте %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Нүкте қосу" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Сызық" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Сыртқы пішін" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Ішкі пішін" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Сызықты қосу" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Көпбұрыш" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Көпбұрышты қосу" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Геометрияны қосу" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Қорытынды" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -924,7 +926,7 @@ msgstr "" "\"Функция\" бағанасынан \"GeomFromText\" таңдаңыз және қатар соңына \"мән\" " "ретінде қойыңыз" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -933,83 +935,83 @@ msgstr "" "Мүмкін, жүктегелі отырған файлдың өлшемі тым үлкен. Осы шектеуді айналып өту " "әдістері, %sқұжаттамада%s сипатталған." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Файлды оқу мүмкін емес" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Артқа" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "PhpMyAdmin мен жұмыс істеу үшін, фреймдерді қолдайтын браузер керек." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (дерекқорды жою) командасы - өшірулі" @@ -1018,7 +1020,7 @@ msgstr "\"DROP DATABASE\" (дерекқорды жою) командасы - ө msgid "Do you really want to execute \"%s\"?" msgstr "Сіз шынымен де сұраныстың орындалуын қалайсыз бе \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 #, fuzzy msgid "You are about to DESTROY a complete database!" msgstr "Сіз дерекқорды толығымен ЖОЙҒАЛЫ отырсыз!" @@ -1060,7 +1062,7 @@ msgstr "Индекс қосу" msgid "Edit Index" msgstr "Индексті өзгерту" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "" @@ -1079,16 +1081,16 @@ msgstr "Хост аты бос тұр!" msgid "The user name is empty!" msgstr "Қолданушы аты бос тұр!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Құпия сөз бос тұр!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Құпия сөздер бір-біріне ұқсамайды!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Қолданушыны қосу" @@ -1105,23 +1107,24 @@ msgstr "Таңдалынған қолдаушыларды жою" msgid "Close" msgstr "Жабу" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Өзгерту" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Трафиктің графикалық қорытындысы" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Қосылыстар мен процесстердің графикалық құрытындысы" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Сұраныстардың графикалық қорытындысы" @@ -1131,24 +1134,24 @@ msgstr "Статикалық мәлiметтер" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Барлығы" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Басқа" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1169,7 +1172,7 @@ msgstr "Сервер трафигі (KiB)" msgid "Connections since last refresh" msgstr "Соңғы жаңартылған сәттен бастап қосылыстар." -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Процесстер" @@ -1187,7 +1190,7 @@ msgstr "Соңғы жаңартылған сәттен басталған сұр msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Сұраныстардың статистикасы" @@ -1228,14 +1231,14 @@ msgid "System swap" msgstr "Үстемелеу жүйесі" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "КБ" @@ -1288,32 +1291,32 @@ msgstr "" msgid "Bytes received" msgstr "Байт қабылданды" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Байт" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "ЭБ" @@ -1327,11 +1330,11 @@ msgstr "%d Кесте(лер)" msgid "Questions" msgstr "Сұрақтар" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Баптау" @@ -1351,11 +1354,11 @@ msgstr "Торға график қосу" msgid "Please add at least one variable to the series" msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Жоқ" @@ -1448,7 +1451,7 @@ msgstr "Баптауын өзгерту" msgid "Current settings" msgstr "Ағымдағы баптау" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "График тақырыбы" @@ -1526,7 +1529,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Уақыт" @@ -1614,10 +1617,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1665,9 +1668,9 @@ msgstr "Қолданған айнымалы / формула" msgid "Test" msgstr "Тест" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1679,11 +1682,11 @@ msgstr "Жүктелуде" msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1695,9 +1698,9 @@ msgstr "Бағананың жойылуы" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "Жарайды" @@ -1737,15 +1740,15 @@ msgstr "Индекстерді жасыру" msgid "Show indexes" msgstr "Индекстерді көрсету" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Сыртқы кілттерді тексерілісі:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Қосулы)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Өшірулі)" @@ -1773,7 +1776,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1812,8 +1815,8 @@ msgstr "Сұраныс өрісін көрсету" msgid "No rows selected" msgstr "Бірде-бір қатар таңдалынбады" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Өзгерту" @@ -1821,18 +1824,18 @@ msgstr "Өзгерту" msgid "Query execution time" msgstr "Сұраныстың орындалу уақыты" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Сақтау" @@ -1844,7 +1847,7 @@ msgstr "Іздеу параметрлерiн жасыру" msgid "Show search criteria" msgstr "Іздеу параметрлерiн көрсету" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Iздестiрудi үлкейту" @@ -1888,12 +1891,12 @@ msgstr "Сұраныс нәтижелері" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Елемеу" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Көшіру" @@ -1913,7 +1916,7 @@ msgstr "Сыртқы кілтті таңдаңыз" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "" @@ -1996,7 +1999,7 @@ msgstr "Шығару" msgid "Change Password" msgstr "" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Тағы" @@ -2085,63 +2088,63 @@ msgid "December" msgstr "Желтоқсан" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Қаң" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Ақп" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Нау" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Сәу" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Мам" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Мау" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Шіл" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Там" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Қыр" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Қаз" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Қар" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Жел" @@ -2179,32 +2182,32 @@ msgid "Sun" msgstr "Жек" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Дүй" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Сей" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Сәр" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Бей" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Жұм" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Сен" @@ -2317,16 +2320,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "секундке" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "Минутқа" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "сағатқа" @@ -2348,70 +2351,266 @@ msgstr "" msgid "Font size" msgstr "Қарiп өлшемi" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Файлды жүктеу, оның кеңейтілім салдарынан тоқтатылды." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Файлды жүктеу кезіндегі белгісіз қате." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Жүктелген файлды ауыстыру кезіндегі қате." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Жүктелген файлды оқу(ауыстыру) мүмкін емес." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Индекстер" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Бірегей" @@ -2424,8 +2623,8 @@ msgstr "Қапталған" msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Пікірлеу" @@ -2446,128 +2645,128 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Дерекқоры" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Қате" @@ -2592,7 +2791,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2679,16 +2878,96 @@ 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 +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 +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 +msgid "Value" +msgstr "" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2707,7 +2986,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -2998,20 +3277,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%s-ге қош келдіңіз" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3023,58 +3302,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Кіру" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Сервер:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Қолданушы:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Құпия сөз:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "" @@ -3106,7 +3381,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "" @@ -3118,13 +3393,13 @@ msgstr "" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "" @@ -3149,233 +3424,211 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "kk" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "kk" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "kk" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "" @@ -3405,8 +3658,8 @@ msgid "Closed" msgstr "" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "" @@ -3547,9 +3800,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "" @@ -3753,10 +4006,6 @@ msgstr "Мәлімет қорлары" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3809,7 +4058,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "" @@ -3818,7 +4067,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "" @@ -3922,7 +4171,7 @@ msgid "MIME type" msgstr "" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "" @@ -5376,9 +5625,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -5645,30 +5894,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "" @@ -5689,22 +5932,22 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -5855,25 +6098,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -5980,383 +6223,238 @@ msgstr "" msgid "Language" msgstr "Тіл" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6364,48 +6462,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6413,18 +6511,18 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6471,14 +6569,14 @@ msgstr "" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6536,14 +6634,14 @@ msgstr "" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "" @@ -6728,21 +6826,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6834,12 +6923,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "" @@ -6904,91 +6993,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7003,32 +7076,32 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "" @@ -7238,90 +7311,90 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "" @@ -7329,7 +7402,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7341,13 +7414,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7360,7 +7433,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "" @@ -7374,38 +7447,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7419,7 +7492,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7450,88 +7523,89 @@ msgstr "" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7560,7 +7634,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7579,105 +7653,105 @@ msgstr "" msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -7695,36 +7769,36 @@ msgstr "" msgid "Trigger %1$s has been created." msgstr "" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -7808,7 +7882,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -7817,7 +7891,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -7825,7 +7899,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -7836,27 +7910,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "" @@ -7962,7 +8036,7 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -7980,7 +8054,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -7999,7 +8073,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8008,11 +8082,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8094,7 +8168,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8114,8 +8188,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "" @@ -8160,13 +8234,13 @@ msgstr "" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "" @@ -8179,17 +8253,17 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8197,41 +8271,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8339,11 +8378,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8354,7 +8393,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8381,7 +8420,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "" @@ -8401,9 +8440,9 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "" @@ -8511,126 +8550,126 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "" @@ -8642,51 +8681,51 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "" @@ -8698,87 +8737,87 @@ msgstr "" msgid "Modifications have been saved" msgstr "" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "" @@ -8786,17 +8825,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -8812,7 +8851,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "" @@ -8820,31 +8859,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -8854,369 +8893,369 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9225,138 +9264,138 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9365,251 +9404,251 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -9617,115 +9656,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -9733,78 +9772,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -9812,7 +9851,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -9820,42 +9859,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -9863,33 +9902,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -9898,242 +9937,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10141,99 +10180,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10241,18 +10280,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10260,61 +10299,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10323,7 +10362,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10331,18 +10370,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10350,11 +10389,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10362,214 +10401,214 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -10853,153 +10892,153 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "" -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "" @@ -11015,28 +11054,28 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11059,255 +11098,255 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Use this value" msgid "Distinct values" msgstr "Осы мәнді қолданыңыз" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy msgid "Move columns" msgstr "Бағана іші" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -11455,65 +11494,37 @@ msgstr "" msgid "Create version" msgstr "" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/ko.po b/po/ko.po index 0c197f7bbc..441b379581 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,9 +3,9 @@ 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-04 13:49+0200\n" -"PO-Revision-Date: 2012-06-04 04:35+0200\n" -"Last-Translator: S W \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" "Language-Team: korean \n" "Language: ko\n" "MIME-Version: 1.0\n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "모두 보기" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "페이지 번호:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,58 +37,58 @@ msgstr "" "대상 브라우저 창을 업데이트할 수 없습니다. 부모 창을 닫았거나 브라우저의 보" "안 설정이 다른 창을 업데이트하지 못하도록 설정되어 있는 것 같습니다." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "실행" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "키 이름" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "설명" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "이 값을 사용합니다" @@ -106,88 +106,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "데이터베이스 %1$s가 생성되었습니다." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "데이터베이스 설명:" -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "테이블 설명" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "컬럼명" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "기본값" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "링크 대상:" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "설명" @@ -196,14 +197,14 @@ msgstr "설명" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "아니오 " @@ -216,120 +217,120 @@ msgstr "아니오 " #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "예" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "데이터베이스의 덤프(스키마) 데이터 보기" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "데이터베이스에 테이블이 없습니다." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "모두 선택" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "모두 선택안함" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "데이터베이스명이 없습니다!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "데이터베이스 %1$s 의 이름을 %2$s 로 변경하였습니다." -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "데이터베이스 %1$s 을(를) %2$s 로 복사하였습니다." -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "데이터베이스 이름 변경" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "데이터베이스 제거" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "데이터베이스 %s 를 제거했습니다." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "데이터베이스 제거 (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "데이터베이스 복사" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "구조만" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "구조와 데이터 모두" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "데이터만" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "복사 전에 CREATE DATABASE 실행" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "%s 추가" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT 값 추가" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "제약조건 추가" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "복사한 테이블로 옮겨감" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "데이터정렬방식" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -338,59 +339,59 @@ msgstr "" "phpMyAdmin 설정 스토리지가 비활성화 되어 있습니다. 원인을 확인하려면 %s여기" "를 클릭%s하십시오." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "관계 스키마를 수정 또는 내보내기" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "테이블 " -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "행" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "크기" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "사용중" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "생성" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "마지막 업데이트" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "마지막 검사" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -400,117 +401,117 @@ msgstr[0] "%s개 테이블 " msgid "You have to choose at least one column to display" msgstr "출력하려면 적어도 1개 이상의 열을 선택해야 합니다." -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "%s비주얼 쿼리 빌더%s로 전환" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "정렬" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "오름차순" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "내림차순" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "보기" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Criteria" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "삽입" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "그리고" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "삭제" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "또는" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "수정" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "조건행 추가/삭제" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "컬럼 추가/삭제" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "질의 업데이트" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "사용할 테이블" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "데이터베이스 %s에 SQL 질의:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "질의 실행" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "접근이 거부되었습니다." -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "아무 단어나" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "모든 단어" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "정확한 문구" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "정규표현식" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\"의 검색 결과 %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -518,92 +519,92 @@ msgid "%1$s match inside table %2$s" msgid_plural "%1$s matches inside table %2$s" msgstr[0] "테이블 %s에서 %s 건 일치" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "총: %s 건 일치" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "데이터베이스 검색" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "찾을 단어, 값 (와일드카드: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "찾는 방식:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "단어는 스페이스(\" \")로 구분됩니다." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "검색할 테이블:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "검색할 컬럼:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "데이터베이스에 테이블이 없습니다." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "알수없음" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "테이블 %s 을 비웠습니다" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "뷰 %s가 제거되었습니다." -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "테이블 %s를 제거했습니다." -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "트래킹이 활성화되었습니다." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "트래킹이 활성화되어 있지 않습니다." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -611,185 +612,186 @@ msgid "" msgstr "" "이 뷰는 최소 이 숫자 이상의 열을 가지고 있습니다. %s문서%s를 참조해 주십시오." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "복제" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "계" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "선택한 것을:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "모두 체크" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "오버헤드를 가진 테이블들을 체크" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "내보내기" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "인쇄용 보기" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "비우기" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "삭제" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "테이블 검사" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "테이블 최적화" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "테이블 복구" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "테이블 분석" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "테이블에 접두사 추가" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "테이블의 접두사를 교체" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "테이블에 접두사를 추가하여 복제" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "데이터 사전 (전체 구조보기)" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "추적된 테이블" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "데이터베이스" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "최근 버전" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "생성됨" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "수정됨" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "상태" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "실행" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "이 테이블에 대한 추적 데이터를 제거" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "활성" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "비활성" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "버전" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "추적 보고서" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "구조 요약" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "추적되지 않은 테이블" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "테이블 추적" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "데이터베이스 로그" @@ -801,16 +803,16 @@ msgstr "잘못된 타입!" msgid "Selected export type has to be saved in file!" msgstr "선택한 내보내기가 파일에 저장되었습니다!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "잘못된 인자!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "파일 %s를 저장하기에 공간이 부족합니다." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -818,12 +820,12 @@ msgstr "" "%s 라는 이름의 파일이 이미 서버에 존재합니다. 파일명을 변경하거나 덮어쓰기 옵" "션을 설정해주세요." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "웹 서버에 파일 %s를 저장할 권한이 없습니다." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "덤프 파일이 %s에 저장되었습니다." @@ -832,92 +834,92 @@ msgstr "덤프 파일이 %s에 저장되었습니다." msgid "Invalid export type" msgstr "잘못된 내보내기 타입" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\"행의 값" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "기본 레이어로 OpenStreetMaps를 사용" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometry" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "포인트" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "포인트 %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "포인트 추가하기" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "줄(열) 구분자" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "외륜" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "내륜" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "선 추가" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "내부 링 추가" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "폴리곤" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "폴리곤 추가" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "공간 데이터를 추가" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "출력" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -926,21 +928,21 @@ msgstr "" "너무 큰 파일을 업로드하려고 시도했습니다. 제한을 해결하기 위해서는 %s문서%s" "를 참조하여 주십시오." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "북마크 보이기" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "북마크를 제거했습니다." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "파일을 읽을 수 없습니다" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -949,7 +951,7 @@ msgstr "" "지원되지 않는 압축(%s)형식의 파일을 업로드하려고 시도했습니다. 지원이 구현되" "지 않았거나 설정에서 사용하지 않게 되어있습니다." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -959,27 +961,27 @@ msgstr "" "대 파일 크기를 초과했을 수 있습니다. [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a] 참조." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "문자셋 변환 라이브러리 없이 파일의 문자셋을 변환할 수 없습니다." -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "가져오기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "북마크 %s가 생성되었습니다." -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "가져오기를 성공적으로 마쳤습니다. %d 쿼리가 실행되었습니다." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -987,7 +989,7 @@ msgstr "" "스크립트 타임아웃이 통보되었습니다. 가져오기를 이어서 계속 완료시키려면 같은 " "파일을 다시 전송해주십시오." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -995,23 +997,23 @@ msgstr "" "파싱된 데이터가 없지만, 이것은 보통 phpMyAdmin이 php 시간 제한을 늘리지 않고" "는 이 가져오기를 마칠 수 없음을 뜻합니다." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "뒤로" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 은 프레임을 지원하는 브라우저에서 잘 보입니다." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." @@ -1021,7 +1023,7 @@ msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." msgid "Do you really want to execute \"%s\"?" msgstr "정말로 다음을 실행하시겠습니까? " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "이 데이터베이스 전체를 제거하려고 합니다!" @@ -1061,7 +1063,7 @@ msgstr "인덱스 추가" msgid "Edit Index" msgstr "인덱스 수정" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "인덱스에 %d 열 추가" @@ -1079,16 +1081,16 @@ msgstr "호스트명이 없습니다!" msgid "The user name is empty!" msgstr "사용자명이 없습니다!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "암호가 없습니다!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "암호가 동일하지 않습니다!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "사용자 추가" @@ -1105,23 +1107,24 @@ msgstr "선택한 사용자를 삭제" msgid "Close" msgstr "닫기" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "수정" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "실시간 전송량 도표" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "실시간 연결/프로세스 도표" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "실시간 쿼리 도표" @@ -1131,24 +1134,24 @@ msgstr "정적 데이터" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "전체 쿼리수" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "기타" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1168,7 +1171,7 @@ msgstr "서버 전송량(KiB)" msgid "Connections since last refresh" msgstr "마지막 새로고침 이후 연결 수" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "프로세스" @@ -1187,7 +1190,7 @@ msgstr "마지막 새로고침 이후 Questions" msgid "Questions (executed statements by the server)" msgstr "Questions(서버에 의해 실행된 문장)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "질의 통계" @@ -1231,14 +1234,14 @@ msgid "System swap" msgstr "시스템 스왑" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1290,32 +1293,32 @@ msgstr "바이트 보냄" msgid "Bytes received" msgstr "바이트 받음" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "연결 수" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1330,11 +1333,11 @@ msgstr "%d개 테이블 " msgid "Questions" msgstr "테이블 작업" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "소통량" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "설정" @@ -1352,13 +1355,13 @@ msgstr "차트에 그리드 추가" #: js/messages.php:138 msgid "Please add at least one variable to the series" -msgstr "" +msgstr "최소 한개이상의 변수를 시리즈에 추가하십시오" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "없음" @@ -1454,7 +1457,7 @@ msgstr "설정 변경" msgid "Current settings" msgstr "현재 설정" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "차트 제목" @@ -1539,7 +1542,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "시간" @@ -1634,10 +1637,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "가져오기" @@ -1689,9 +1692,9 @@ msgstr "사용된 변수 / 수식" msgid "Test" msgstr "테스트" -#: 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 +#: 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 msgid "Cancel" msgstr "취소" @@ -1703,11 +1706,11 @@ msgstr "불러오고 있습니다." msgid "Processing Request" msgstr "요청을 처리중입니다." -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "요청 처리중 에러가 발생했습니다." -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "데이터베이스를 선택하지 않았습니다." @@ -1719,9 +1722,9 @@ msgstr "열을 삭제하고 있습니다." msgid "Adding Primary Key" msgstr "기본 키를 추가하고 있습니다." -#: 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 +#: 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 msgid "OK" msgstr "확인" @@ -1761,19 +1764,19 @@ msgstr "인덱스 숨기기" msgid "Show indexes" msgstr "인덱스 보이기" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "외래 키(foreign key) 체크 사용 안함" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "사용가능" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1805,7 +1808,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET 수정" @@ -1844,8 +1847,8 @@ msgstr "질의 상자 보이기" msgid "No rows selected" msgstr "선택된 행이 없습니다." -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "변경" @@ -1853,18 +1856,18 @@ msgstr "변경" msgid "Query execution time" msgstr "질의 실행 시간" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "저장" @@ -1876,7 +1879,7 @@ msgstr "검색 조건 숨기기" msgid "Show search criteria" msgstr "검색 조건 보이기" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1924,12 +1927,12 @@ msgstr "질의 결과" msgid "Data point content" msgstr "테이블 설명" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "무시" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "복사" @@ -1950,7 +1953,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2043,7 +2046,7 @@ msgstr "" msgid "Change Password" msgstr "암호 변경" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mo" msgid "More" @@ -2139,63 +2142,63 @@ msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "12월" @@ -2236,32 +2239,32 @@ msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "토" @@ -2377,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "" @@ -2407,47 +2410,243 @@ msgstr "" msgid "Font size" msgstr "글꼴 크기" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete columns" +msgid "Restore column order" +msgstr "컬럼 추가/삭제" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "처음" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "이전" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "다음" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "마지막" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "시작 행" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "행 갯수" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mo" +msgid "Mode" +msgstr "월" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "수평(가로)" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "수평 (rotated headers)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "수직(세로)" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "옵션" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Partial Texts" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Full Texts" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Version information" +msgid "Hide browser transformation" +msgstr "버전 정보" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "선택한 줄(레코드)을 삭제 하였습니다." + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Kill" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "질의(in query)" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "행(레코드) 보기" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "합계" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "질의 실행시간 %01.4f 초" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Displaying Column Comments" +msgid "Display chart" +msgstr "열(칼럼) 설명(코멘트) 출력하기" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "서버 버전" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니" "다." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "HTML 폼에 지정된 MAX_FILE_SIZE 값보다 더 큰 파일이 업로드되었습니다." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "임시 폴더가 없습니다." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "디스크 쓰기에 실패했습니다." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2455,26 +2654,41 @@ msgstr "" "업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a] 참조." -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "업로드 파일을 읽을 수 없습니다." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "인덱스" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "고유값" @@ -2487,8 +2701,8 @@ msgstr "" msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "설명" @@ -2509,131 +2723,131 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "데이터베이스 " -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "서버" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "구조" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "삽입" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "테이블 작업" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "질의 마법사" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "사용권한" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "사용자" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "바이너리" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "환경설정값" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "오류" @@ -2655,7 +2869,7 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "%1$d 열이 삽입되었습니다." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "PDF 생성 실패:" @@ -2744,16 +2958,108 @@ 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 +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 +#, 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 +msgid "Value" +msgstr "값" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "검색" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "삽입" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "필드 선택 (하나 이상):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "검색 조건 추가 (\"where\" 조건):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "페이지당 레코드 수" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "출력 순서:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "SQL 질의" + +#: 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 "다음으로 질의를 만들기 (와일드카드: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "다음으로 질의를 만들기 (와일드카드: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "리세트" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2772,7 +3078,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3069,13 +3375,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "연결할 수 없습니다: 잘못된 설정." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%s에 오셨습니다" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3084,7 +3390,7 @@ msgstr "" "설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파" "일을 생성할 수 있습니다." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3096,61 +3402,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "로그인" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "서버:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "사용자명:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "암호:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "서버 선택" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "최근 %s초 동안 아무 동작이 없어 로그아웃 되었습니다. 다시 로그인해주세요." -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL 서버에 로그인할 수 없습니다" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "사용자명/암호가 틀렸습니다. 접근이 거부되었습니다." @@ -3184,7 +3484,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "테이블 수" @@ -3196,13 +3496,13 @@ msgstr "테이블 수" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "데이터" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "부담" @@ -3228,19 +3528,11 @@ msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." msgid "Check Privileges" msgstr "사용권한 검사" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "어떤 공격을 받고있을 가능성이 있습니다." - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "전역 변수에서 숫자로 된 키가 발견 되었습니다." - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "설정 파일을 읽는데 실패했습니다." -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3248,12 +3540,12 @@ msgstr "" "일반적으로 이것은 문법 오류가 있음을 의미합니다. 다음의 모든 오류를 확인하십" "시오." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "기본 설정을 가져올 수 없습니다: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3264,205 +3556,191 @@ msgid "" msgstr "" "환경설정 파일에 $cfg['PmaAbsoluteUri'] 변수가 정의되어야 합니다!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "잘못된 서버 인덱스: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "서버 %1$s의 호스트 이름이 잘못되었습니다. 설정을 확인하십시오" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "설정 파일에 인증 방식이 제대로 설정이 되어 있지 않습니다." -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s를 %s 이상으로 업그레이드 하십시오" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "어떤 공격을 받고있을 가능성이 있습니다." + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "전역 변수에서 숫자로 된 키가 발견 되었습니다." + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "최대: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "문서" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL 질의" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL 메시지: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "SQL 검증을 하기 위한 연결이 실패했습니다." -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL 해석" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "SQL 해석 생략" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP 코드 없이 보기" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP 코드 보기" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "다시 보기" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL 검사 생략" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL 검사" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "이 쿼리 인라인 수정" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "인라인" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "프로파일링" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "일" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%y-%m-%d %H:%M " -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s일 %s시간 %s분 %s초" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "매개 변수 누락:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "처음" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "이전" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "다음" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "마지막" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "데이터베이스 "%s" 로 이동." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 기능은 알려진 버그가 있습니다. %s 문서를 참조하십시오" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "업로드 파일:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "웹서버 업로드 디렉토리" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "업로드 디렉토리에 접근할 수 없습니다" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "업로드할 파일이 없습니다." -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "실행하기" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "인쇄" @@ -3494,8 +3772,8 @@ msgid "Closed" msgstr "따옴표(quote)가 닫히지 않았음" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "사용불가" @@ -3645,9 +3923,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "리세트" @@ -3855,10 +4133,6 @@ msgstr "제안하는 테이블 구조" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3915,7 +4189,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "파일로 저장" @@ -3924,7 +4198,7 @@ msgid "Character set of the file" msgstr "파일 문자셋" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "형식" @@ -4028,7 +4302,7 @@ msgid "MIME type" msgstr "MIME 형식" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 #, fuzzy msgid "Relations" msgstr "관계" @@ -5547,9 +5821,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "암호" @@ -5834,30 +6108,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "암호 변경" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "암호 없음" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "재입력" @@ -5880,13 +6148,13 @@ msgstr "새 데이터베이스 만들기" msgid "Create" msgstr "만들기 " -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "권한 없음" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "새 페이지 만들기" @@ -5894,9 +6162,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "이름" @@ -6071,25 +6339,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "서버 버전" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "서버 버전" @@ -6200,398 +6468,240 @@ msgstr "" msgid "Language" msgstr "언어" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete columns" -msgid "Restore column order" -msgstr "컬럼 추가/삭제" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "시작 행" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "행 갯수" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mo" -msgid "Mode" -msgstr "월" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "수평(가로)" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "수평 (rotated headers)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "수직(세로)" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "옵션" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Partial Texts" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Full Texts" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Version information" -msgid "Hide browser transformation" -msgstr "버전 정보" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "선택한 줄(레코드)을 삭제 하였습니다." - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Kill" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "질의(in query)" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "행(레코드) 보기" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "합계" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "질의 실행시간 %01.4f 초" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Displaying Column Comments" -msgid "Display chart" -msgstr "열(칼럼) 설명(코멘트) 출력하기" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "서버 버전" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "버전 정보" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 #, fuzzy msgid "Data files" msgstr "데이터만" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 #, fuzzy msgid "Pages to be flushed" msgstr "테이블 %s 을 닫았습니다(캐시 삭제)" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6599,48 +6709,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6648,19 +6758,19 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy msgid "Related Links" msgstr "테이블 작업" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6716,15 +6826,15 @@ msgstr "테이블의 덤프 데이터" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "보냄" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6788,14 +6898,14 @@ msgstr "" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "호스트" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "처리한 시간" @@ -6993,21 +7103,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴.)" @@ -7102,12 +7203,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "열(칼럼) 이름" @@ -7172,96 +7273,78 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "함수" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "바이너리" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "바이너리 - 편집 금지 " -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "웹서버 업로드 디렉토리" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "삽입" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "이어서" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "새 열을 삽입합니다" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "삽입 쿼리 보기" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "되돌아가기" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "새 행(레코드) 삽입하기" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 #, fuzzy msgid "Go back to this page" msgstr "되돌아가기" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "다음 행 수정" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "탭 키나 CTRL+화살표로 값 항목을 이동할 수 있습니다." -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "값" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "SQL 쿼리 보기" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7278,36 +7361,36 @@ msgstr "없음" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fr" msgid "From" msgstr "금" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "확인" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "정말로 다음을 실행하시겠습니까? " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "변화 없음" @@ -7519,92 +7602,92 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "확인" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "사용가능" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "북마크된 SQL 질의" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL 내력(히스토리)" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "설명이 없습니다" @@ -7612,7 +7695,7 @@ msgstr "설명이 없습니다" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7624,13 +7707,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "사용자명" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "정렬" @@ -7644,7 +7727,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "변수" @@ -7659,38 +7742,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "아무나" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "아무데서나" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7704,7 +7787,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7736,99 +7819,100 @@ msgstr "테이블 %s 을 제거했습니다." msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "보냄" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "프로세스 목록" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy msgid "Event name" msgstr "질의 종류" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 #, fuzzy msgid "Event type" msgstr "질의 종류" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "변경" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "상태" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "마지막" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "완전한 INSERT문 작성" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7858,7 +7942,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7878,115 +7962,115 @@ msgstr "테이블 %s 을 제거했습니다." msgid "Routine %1$s has been created." msgstr "테이블 %s 을 제거했습니다." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "열(칼럼) 이름" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "생성" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "길이/값*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "데이터베이스 이름 변경" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "길이/값*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy msgid "Return options" msgstr "데이터베이스 사용량 통계" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "질의 종류" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8005,41 +8089,41 @@ msgstr "테이블 %s 을 제거했습니다." msgid "Trigger %1$s has been created." msgstr "테이블 %s 을 제거했습니다." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "새 사용자 추가" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "서버명" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "시간" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8138,7 +8222,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8148,7 +8232,7 @@ msgstr "\"%s\" 테이블이 존재하지 않습니다!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8156,7 +8240,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8168,28 +8252,28 @@ msgstr "\"%s\" 데이터베이스의 스킴(윤곽) - 페이지 %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 #, fuzzy msgid "Table of contents" msgstr "테이블 설명" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "보기" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "추가" @@ -8304,7 +8388,7 @@ msgstr "" msgid "Current Server" msgstr "서버" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "데이터베이스 검색" @@ -8323,7 +8407,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "데이터베이스 검색" @@ -8343,7 +8427,7 @@ msgstr "데이터베이스 %s에 SQL 질의를 실행" msgid "Run SQL query/queries on database %s" msgstr "데이터베이스 %s에 SQL 질의를 실행" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8354,11 +8438,11 @@ msgstr "" msgid "Columns" msgstr "열(칼럼) 이름" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "이 SQL 질의를 북마크함" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8444,7 +8528,7 @@ msgstr "" "질의 검사기가 초기화되지 않았습니다. %s문서%s에서 설명한 필수 PHP 확장모듈을 " "설치했는지 확인해 보십시오." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8468,8 +8552,8 @@ msgid "" msgstr "기본값에는, 역슬래시나 따옴표 없이 단 하나의 값을 넣으십시오. (예: a)" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "인덱스" @@ -8520,13 +8604,13 @@ msgstr "없음" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "기본" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Fulltext" @@ -8540,19 +8624,19 @@ msgstr "" msgid "after %s" msgstr "%s 다음에" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "필드 추가하기" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "출력하려면 적어도 1개 이상의 열(칼럼)을 선택해야 합니다." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8560,46 +8644,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "검색" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "필드 선택 (하나 이상):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "검색 조건 추가 (\"where\" 조건):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "페이지당 레코드 수" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "출력 순서:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "다음으로 질의를 만들기 (와일드카드: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8707,13 +8751,13 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "수정된 내용이 저장되었습니다." -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8724,7 +8768,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8751,7 +8795,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "" @@ -8775,9 +8819,9 @@ msgstr "버전 보기" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "사용자" @@ -8901,144 +8945,144 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "데이터베이스가 없습니다" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "테이블명" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "테이블명" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "새 페이지 만들기" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "데이터베이스를 선택하세요" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "질의 실행" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "모두 보기" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "테이블 복구" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "내보내기" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "질의(in query)" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "테이블 이름 바꾸기" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "사용자명" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "만들기 " -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy msgid "Active options" msgstr "실행" @@ -9052,59 +9096,59 @@ msgstr "테이블 %s 을 제거했습니다." msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "사용법(량)" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "파일 가져오기" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "새 인덱스 만들기" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "사용자명" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "" @@ -9116,89 +9160,89 @@ msgstr "" msgid "Modifications have been saved" msgstr "수정된 내용이 저장되었습니다." -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "파일 가져오기" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "파일 가져오기" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "All" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9208,18 +9252,18 @@ msgstr "\"%s\" 테이블이 존재하지 않습니다!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "필드" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -9235,7 +9279,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 #, fuzzy msgid "Information" msgstr "로그인 정보" @@ -9244,31 +9288,31 @@ msgstr "로그인 정보" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s 데이터베이스를 삭제했습니다." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "데이터베이스 사용량 통계" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "통계 보기" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9279,390 +9323,390 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 #, fuzzy msgid "View dump (schema) of databases" msgstr "데이터베이스의 덤프(스키마) 데이터 보기" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "처음" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "PHP 버전" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "사용불가" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "GRANT 이외의 모든 권한을 포함함." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "테이블 구조 변경 허용." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "인덱스 생성 및 삭제 허용." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "DB 및 테이블 생성 허용." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 #, fuzzy msgid "Allows creating stored routines." msgstr "테이블 생성 허용." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "테이블 생성 허용." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "임시테이블 생성 허용." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 #, fuzzy msgid "Allows creating new views." msgstr "테이블 생성 허용." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "데이터 삭제 허용." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "DB 및 테이블 삭제 허용." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "테이블 삭제 허용." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "데이터를 파일에서 가져오기 및 파일로 내보내기 허용." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "인덱스 생성 및 삭제 허용." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "데이터 추가(insert) 및 변경(replace) 허용." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "이 버전의 MySQL에는 소용이 없습니다." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "캐시를 비우고 서버를 재시동하는 것을 허용." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "복제서버(replication slaves)에 필요합니다." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "데이터 읽기 허용." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "전체 데이터베이스 목록 접근을 허용" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "서버 종료 허용." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "인덱스 생성 및 삭제 허용." -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "데이터 변경 허용." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "권한 없음." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "없음" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "테이블에 관한 권한" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "주의: MySQL 권한 이름은 영어로 표기되어야 합니다. " -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "전체적 권한" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "데이터베이스에 관한 권한" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "리소스 제한" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "주의: 이 옵션을 0으로 하면 제한이 없어집니다." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "로그인 정보" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "암호를 변경하지 않음" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "사용자가 없습니다." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "새 사용자를 추가했습니다." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "%s 의 권한을 업데이트했습니다." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s의 권한을 제거했습니다." -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 의 암호가 바뀌었습니다." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "%s 을 삭제합니다" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "사용권한을 갱신합니다(Reloading the privileges)" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "선택한 사용자들을 삭제했습니다." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "권한을 다시 로딩했습니다." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "권한 수정" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "제거" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "내보내기" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Any" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "사용권한" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "사용권한" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "사용자 개요" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 #, fuzzy msgid "Grant" msgstr "인쇄" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "선택한 사용자를 삭제" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9671,144 +9715,144 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "열(칼럼)에 관한 권한" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "다음 데이터베이스에 권한 추가하기" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "다음 테이블에 권한 추가하기" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 #, fuzzy msgid "... delete the old one from the user tables." msgstr "권한 테이블에서 사용자를 삭제하기만 함." -#: server_privileges.php:2367 +#: server_privileges.php:2375 #, fuzzy msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: server_privileges.php:2368 +#: server_privileges.php:2376 #, fuzzy msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "사용자를 삭제하고 사용권한을 갱신함." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr ""%s" 에 접근할 수 있는 사용자들" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "뷰 %s가 제거되었습니다." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "권한을 다시 로딩했습니다." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9817,268 +9861,268 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "데이터베이스를 선택하세요" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Fulltext" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "구조만" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "구조만" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "쓰레드 %s 를 죽였습니다." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 #, fuzzy msgid "Query cache" msgstr "질의 종류" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 #, fuzzy msgid "Delayed inserts" msgstr "확장된 inserts" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 #, fuzzy msgid "Show open tables" msgstr "테이블 보기" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "런타임 정보" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "암호를 변경하지 않음" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy msgid "Show only alert values" msgstr "테이블 보기" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy msgid "Show unformatted values" msgstr "테이블 보기" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy msgid "Related links:" msgstr "테이블 작업" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "질의 종류" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "함수" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10086,118 +10130,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "명세" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "받음" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "보냄" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "실패한 시도" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "커맨드" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10205,78 +10249,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10284,7 +10328,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10292,42 +10336,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10335,33 +10379,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10370,243 +10414,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "파일 문자셋:" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10614,99 +10658,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10714,18 +10758,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10733,68 +10777,68 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "트래킹이 활성화되어 있지 않습니다." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "토" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy msgid "Add chart" msgstr "필드 추가하기" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "컬럼 추가/삭제" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10803,7 +10847,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10811,18 +10855,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10830,11 +10874,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10842,224 +10886,224 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "데이터베이스 이름 변경" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy msgid "Select series:" msgstr "모두 선택" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "새 사용자 추가" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "SQL 질의" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "행(레코드) 통계" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy msgid "Selected time range:" msgstr "모두 선택" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "질의 종류" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d 초" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d 분" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "소스에 접속할 수 없음" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "타겟에 접속할 수 없음" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "차이나는 데이터" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "컬럼 추가" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "컬럼 제거" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "컬럼 뒤에" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "인덱스 제거" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "인덱스 적용" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "행 업데이트" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "행 삽입" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "대상 테이블에서 이전 행들을 모두 삭제하시겠습니까?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "선택한 변경내용 적용" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "데이터베이스 동기화" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL 질의" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "연결 수" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "서버의 환경설정" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "세션 값" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -11350,77 +11394,77 @@ msgstr "키는 문자, 숫자 [em]그리고[/em] 특수문자 포함" msgid "Wrong data" msgstr "데이터베이스가 없습니다" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "정말로 다음을 실행하시겠습니까? " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "PHP 코드 보기" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL 검사" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL 결과" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Label" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "선택한 사용자들을 삭제했습니다." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "선택한 사용자들을 삭제했습니다." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "3월" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "컬럼명" -#: tbl_chart.php:84 +#: tbl_chart.php:87 #, fuzzy #| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "줄" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgctxt "Inline edit query" #| msgid "Inline" @@ -11428,105 +11472,105 @@ msgctxt "Chart type" msgid "Spline" msgstr "인라인" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "파일 가져오기" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "SQL 질의" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "값" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "값" -#: tbl_create.php:31 +#: tbl_create.php:30 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "사용자 %s 가 이미 존재합니다!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "테이블 %s 을 제거했습니다." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "테이블의 덤프(스키마) 데이터 보기" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "너비" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "높이" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete columns" msgid "Label column" msgstr "컬럼 추가/삭제" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-없음-" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "전체 사용량" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "파일로 저장" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -11544,30 +11588,30 @@ msgstr "인덱스 이름을 기본 키로 바꿀 수 없습니다!" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "인덱스 추가" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Add index" msgid "Edit index" msgstr "인덱스 추가" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "인덱스 이름:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\"는 기본 키만의 유일한 이름입니다!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "인덱스 종류:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "%s개 열(칼럼)에 인덱스 추가" @@ -11590,273 +11634,273 @@ msgstr "테이블 %s 을 %s 로 옮겼습니다." msgid "Table %s has been copied to %s." msgstr "%s 테이블이 %s 으로 복사되었습니다." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "테이블명이 없습니다!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "다음 순서대로 테이블 정렬(변경)" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(단독으로)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "테이블 이동 (데이터베이스명.테이블명):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "테이블 옵션" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "테이블 이름 바꾸기" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "테이블 복사 (데이터베이스명.테이블명):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "복사한 테이블로 옮겨감" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "테이블 유지보수" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "테이블 단편화 제거" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "테이블 %s 을 닫았습니다(캐시 삭제)" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "테이블 닫기(캐시 삭제)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "테이블의 덤프 데이터" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "테이블 내용 비우기(TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "테이블 삭제(DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "테이블 유지보수" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "분석" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "검사" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "옵티마이저" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "리빌드" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "테이블 복구" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "referential 무결성 검사:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "테이블 보기" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "공간 사용량" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "실제량" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "행(레코드) 통계" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "정적" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "동적(다이내믹)" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "행 길이" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Row size" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "외래키 제약" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Session value" msgid "Distinct values" msgstr "세션 값" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "기본키 추가" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "유일 인덱스 추가" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "FULLTEXT 인덱스 추가" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "없음" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "테이블 %s 을 제거했습니다." -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "%s에 기본 키가 추가되었습니다" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "%s 에 인덱스가 걸렸습니다" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "PHP 정보 보기" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "컬럼 제거" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "인쇄용 보기" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "제안하는 테이블 구조" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy msgid "Add column" msgstr "필드 추가하기" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "테이블의 마지막" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "테이블의 처음" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "%s 다음에" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "%s 개 열(칼럼)에 인덱스 만들기 " -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12014,71 +12058,38 @@ msgstr "" msgid "Create version" msgstr "서버 버전" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "다음으로 질의를 만들기 (와일드카드: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "SQL 질의" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "리세트" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "더 많은 테마들!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy msgctxt "for MIME transformation" msgid "Description" msgstr "설명이 없습니다" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "어떻게 들어오셨어요? 지금 여기 있을 권한이 없습니다!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "프로파일을 업데이트했습니다." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "뷰 이름" diff --git a/po/lt.po b/po/lt.po index 299caf6f9b..3fdfedbf7d 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-03 12:52+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: lithuanian \n" @@ -15,21 +15,21 @@ msgstr "" "%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 0.10\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Rodyti viską" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Puslapis:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ 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:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Vykdyti" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Indekso pavadinimas" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Paaiškinimas" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Naudokite šią reikšmę" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Duomenų bazė %1$s sukurta." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Duomenų bazės komentaras: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Lentelės komentarai" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Stulpelis" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Nutylint" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Sąryšis su" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Komentarai" @@ -197,14 +198,14 @@ msgstr "Komentarai" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ne" @@ -217,122 +218,122 @@ msgstr "Ne" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Taip" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Peržiūrėti duomenų bazės atvaizdį (schemą)" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Duomenų bazėje nerasta lentelių." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Pažymėti visas" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Atžymėti visas" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Nenurodytas duomenų bazės vardas!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Duomenų bazė %s pervadinta į %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Duomenų bazė %s buvo nukopijuota į %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Pervadinti duomenų bazę į" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Pašalinti duomenų bazę" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Duomenų bazė %s ištrinta." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Pašalinti duomenų bazę (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Kopijuoti duomenų bazę į" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Tik struktūra" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktūra ir duomenys" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Tik duomenys" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE prieš kopijuojant" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Pridėti %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Pridėti apribojimą" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Pereiti į nukopijuotą duomenų bazę" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Palyginimas" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -340,59 +341,59 @@ msgid "" msgstr "" "phpMyAdmin konfigūracijos talpinimo vieta išjungta. %sIšsiaiškinti kodėl%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Keisti arba eksportuoti ryšių schemą" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Lentelė" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Eilutės" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Dydis" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "šiuo metu naudojama" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Sukurta" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Paskutinis atnaujinimas" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Paskutinis patikrinimas" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -404,117 +405,117 @@ msgstr[2] "%s lentelių" msgid "You have to choose at least one column to display" msgstr "Pasirinkite bent vieną stulpelį išvedimui" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Pereiti į %svizualią daryklę%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Rūšiuoti" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Didėjimo tvarka" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Mažėjimo tvarka" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Rodyti" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriterijai" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Įterpiant" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Ir" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Pakeičiant" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Arba" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Keisti" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Įterpti/Pašalinti požymio eilutes" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Įterpti/trinti stulpelius" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Atnaujinti užklausą" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Naudoti lenteles" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-užklausa duomenų bazėje %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Vykdyti užklausą" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Priėjimas uždraustas" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "bent vienas iš žodžių" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "visi žodžiai" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "ištisa frazė" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "kaip reguliarųjį išsireiškimą" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Paieškos rezultatai frazei „%s“ %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -524,30 +525,30 @@ msgstr[0] "%s atitikmuo lentelėje %s" msgstr[1] "%s atitikmenys lentelėse %s" msgstr[2] "%s atitikmenų lentelėse %s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -555,63 +556,63 @@ msgstr[0] "Iš viso: %s atitikmuo" msgstr[1] "Iš viso: %s atitikmenys" msgstr[2] "Iš viso: %s atitikmenų" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Paieška duomenų bazėje" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Paieškos žodis(iai) arba reikšmė(ės) (pakaitos simboliui: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Rasti:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Žodžiai atskirti tarpo simboliu („ “)." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Viduje lentelių:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Stulpelio viduje:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Duomenų bazėje nerasta jokių lentelių." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "nežinoma" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Lentelės reikšmės %s ištuštintos" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Rodinys %s buvo panaikintas" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Lentelė %s panaikinta" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Sekimas yra aktyvus." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Sekimas yra neaktyvus." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -620,185 +621,186 @@ msgstr "" "Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos " "%sdokumentacijoje%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikavimas" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Sumos" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Pasirinktus:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Pažymėti visas" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksportuoti" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Spausdinti struktūrą" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Išvalyti" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Šalinti" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Patikrinti lentelę" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimizuoti" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Taisyti lentelę" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizuoti lentelę" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Pridėti priešdėlį lentelės pavadinimui" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Pakeisti lentelės pavadinimo priešdėlį" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopijuoti lentelę su pavadinimo priešdėliu" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Duomenų žodynas" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Sekamos lentelės" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Duomenų bazė" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Paskutinė versija" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Sukurta" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Atnaujinta" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Būsena" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Veiksmas" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ištrinti šios lentelės sekimo duomenis" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "aktyvus" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "neaktyvus" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versijos" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Sekimo ataskaita" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Momentinė struktūros kopija" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Nesekamos lentelės" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Sekti lentelę" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Duomenų bazės žurnalas" @@ -810,16 +812,16 @@ msgstr "Blogas tipas!" msgid "Selected export type has to be saved in file!" msgstr "Pasirinktas eksportavimo tipas gali būti saugomas tik faile!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Blogi parametrai!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nėra pakankamai vietos išsaugoti failui %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -827,12 +829,12 @@ msgstr "" "Failas pavadinimu %s jau yra darbinėje stotyje, pakeiskite norimą pavadinimą " "arba pasirinkite nustatymą leidžiantį perrašyti esamus failus." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Nėra teisių išsaugoti failui %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Atvaizdis įrašytas faile %s." @@ -841,100 +843,100 @@ msgstr "Atvaizdis įrašytas faile %s." msgid "Invalid export type" msgstr "Neteisingas eksportavimo tipas" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Reikšmė „%s“ stulpeliui" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Naudoti OpenStreetMaps kaip pagrindinį sluoksnį" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometrija" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Taškas" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Taškas %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Pridėti tašką" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Eilutės baigiasi" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Sukurti naują vartotoją" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Sukurti naują vartotoją" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Daugiakampis" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Pridėti daugiakampį" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add event" msgid "Add geometry" msgstr "Pridėti įvykį" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Išvedimas" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -943,21 +945,21 @@ msgstr "" "Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti " "%sdokumentaciją%s būdams kaip apeiti šį apribojimą." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Rodomos žymelės" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Nuoroda ištrinta." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Negalima perskaityti failo" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -966,7 +968,7 @@ msgstr "" "Jūs bandote įkelti failą su nepalaikomu glaudinimu (%s). Palaikymas gali " "būti neįgyvendintas arba išjungtas Jūsų konfigūracijoje." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -976,28 +978,28 @@ msgstr "" "failo dydis viršija didžiausią leidžiamą dydį PHP konfigūracijos. Žiūrėti " "[a@./Documentation.html#faq1_16@Documentation]DUK 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Negalima perkonvertuoti failo ženklų rinkinio be ženklų rinkinio " "konvertavimo bibliotekos" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Nepavyko įkelti importuotų įskiepių, prašome patikrinti įdiegimą!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Žymė %s sukurta" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importavimas sėkmingai baigtas, įvykdyta %d užklausų." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1005,7 +1007,7 @@ msgstr "" "Baigėsi skripto vykdymui skirtas laikas, jeigu norite pabaigti importuoti " "prašome dar kartą siųsti tą patį failą ir importavimas bus tęsiamas." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1014,24 +1016,24 @@ msgstr "" "dažniausiai reiškia, kad phpMyAdmin negali baigti importuoti nebent Jūs " "padidintumėte PHP laiko limitą." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Atgal" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin draugiškesnis su rėmelius palaikančiomis naršyklėmis." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "„DROP DATABASE“ komandos įvykdyti negalima." @@ -1041,7 +1043,7 @@ msgstr "„DROP DATABASE“ komandos įvykdyti negalima." msgid "Do you really want to execute \"%s\"?" msgstr "Ar tikrai norite " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!" @@ -1081,7 +1083,7 @@ msgstr "Pridėti indeksą" msgid "Edit Index" msgstr "Redaguoti indeksą" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Pridėti %d stulpelį(-ius) į indeksą" @@ -1099,16 +1101,16 @@ msgstr "Tuščias prisijungimo adresas!" msgid "The user name is empty!" msgstr "Tuščias vartotojo vardas!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Tuščias slaptažodis!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Slaptažodžiai nesutampa!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Pridėti naudotoją" @@ -1125,23 +1127,24 @@ msgstr "Šalinami pažymėti vartotojai" msgid "Close" msgstr "Uždaryti" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Redaguoti" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Tiesioginių duomenų srauto diagrama" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Tiesioginių prisijungimų/procesų diagrama" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Tiesioginė užklausos diagrama" @@ -1151,24 +1154,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Iš viso" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Kita" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1188,7 +1191,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Procesai" @@ -1206,7 +1209,7 @@ msgstr "Questions nuo paskutinio atnaujinimo" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Užklausų statistika" @@ -1249,14 +1252,14 @@ msgid "System swap" msgstr "Sistemos swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1308,32 +1311,32 @@ msgstr "Išsiųsta baitų" msgid "Bytes received" msgstr "Gauta baitų" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Prisijungimai" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1347,11 +1350,11 @@ msgstr "%d lentelė(-ės)" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Apkrovimas" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Nustatymai" @@ -1373,11 +1376,11 @@ msgstr "Pritraukti prie tinklelio" msgid "Please add at least one variable to the series" msgstr "Prašome pridėti bent vieną kintamąjį į eilę" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Ne" @@ -1474,7 +1477,7 @@ msgstr "Keisti nustatymus" msgid "Current settings" msgstr "Dabartiniai nustatymai" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Diagramos antraštė" @@ -1561,7 +1564,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Laikas" @@ -1669,10 +1672,10 @@ msgstr "" "Nepavyko sudaryti diagramos tinklelio su importuota konfigūracija. Nustatoma " "į numatytąją konfigūraciją..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importuoti" @@ -1728,9 +1731,9 @@ msgstr "Naudojamas kintamasis / formulė" msgid "Test" msgstr "Išbandyti" -#: 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 +#: 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 msgid "Cancel" msgstr "Atšaukti" @@ -1742,11 +1745,11 @@ msgstr "Įkeliama" msgid "Processing Request" msgstr "Vykdoma užklausa" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Klaida vykdant užklausą" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Nepažymėjote duomenų bazės." @@ -1758,9 +1761,9 @@ msgstr "Šalinamas stulpelis" msgid "Adding Primary Key" msgstr "Pridedamas pirminis raktas" -#: 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 +#: 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 msgid "OK" msgstr "Gerai" @@ -1800,19 +1803,19 @@ msgstr "Nerodyti indeksų" msgid "Show indexes" msgstr "Rodyti indeksus" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Atsisakyti išorinių raktų tikrinimo" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Įjungta" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1844,7 +1847,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET redaktorius" @@ -1884,8 +1887,8 @@ msgstr "Rodyti užklausos laukelį" msgid "No rows selected" msgstr "Nepasirinkti įrašai" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Redaguoti" @@ -1893,18 +1896,18 @@ msgstr "Redaguoti" msgid "Query execution time" msgstr "Užklausos vykdymo laikas" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Išsaugoti" @@ -1916,7 +1919,7 @@ msgstr "Slėpti paieškos kriterijų" msgid "Show search criteria" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1964,12 +1967,12 @@ msgstr "Užklausos rezultatai" msgid "Data point content" msgstr "Duomenų rodyklės dydis" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignoruoti" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Kopijuoti" @@ -1989,7 +1992,7 @@ msgstr "Pasirinkti Foreign Key" msgid "Please select the primary key or a unique key" msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Pasirinkite laukus peržiūrai" @@ -2076,7 +2079,7 @@ msgstr "Generuoti" msgid "Change Password" msgstr "Pakeisti slaptažodį" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Daugiau" @@ -2171,63 +2174,63 @@ msgid "December" msgstr "gruodžio" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Sau" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Vas" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Kov" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Bal" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Geg" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Bir" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Lie" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Rgp" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Rgs" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Spa" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Lap" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Grd" @@ -2268,32 +2271,32 @@ msgid "Sun" msgstr "Sek" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Pir" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Ant" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Tre" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Ket" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Pen" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Šeš" @@ -2413,16 +2416,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "per sekundę" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "per minutę" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "per valandą" @@ -2444,19 +2447,217 @@ msgstr "" msgid "Font size" msgstr "Šrifto dydis" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +#| msgid "Save directory" +msgid "Save edited data" +msgstr "Išsaugoti katalogą" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Atstatyti stulpelių rikiavimą" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Pradžia" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Ankstesnis" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Kitas" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Pabaiga" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Pradėti eilute" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Eilučių skaičius:" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Režimas" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontaliai" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontalūs (pasukti pavadinimai)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertikaliai" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute every" +msgid "Headers every %s rows" +msgstr "Vykdyti kas" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Rūšiuoti pagal raktą" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Nustatymai" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Tekstus rodyti dalinai" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Tekstus rodyti pilnai" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Sąryšių raktas" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Ryšių rodymo stulpelis" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Rodyti dvejetainį turinį" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Rodyti BLOB turinį" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Rodyti dvejetainį turinį kaip šešioliktainį" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Naršyklės transformacija" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Stabdyti procesą" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Gali būti apytikslis. Žiūrėkite [a@./Documentation." +"html#faq3_11@Documentation]DUK 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "užklausa vykdoma" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Rodomi įrašai" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "iš viso " + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Užklausa užtruko %01.4f sek." + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Veiksmai su užklausos rezultatais" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Spausdinti rezultatus (su pilnais tekstais)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Rodyti diagramą" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Sukurti rodinį" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Sąryšis nerastas" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Per daug klaidų žinučių, dėl to kai kurių neparodėme." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Failas nebuvo įkeltasis failas." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Įkeltas failas viršija upload_max_filesize nurodymą faile php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2464,27 +2665,27 @@ msgstr "" "Įkeltas failas viršija MAX_FILE_SIZE nurodymą kuris buvo nustatytas HTML " "formoje." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Įkeliamas failas buvo tik dalinai įkeltas." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Trūksta laikino katalogo." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Nepavyko įrašyti failo į diską." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Failo įkėlimas sustabdytas dėl failo plėtinio." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Nežinoma klaida failų įkėlime." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2492,26 +2693,41 @@ msgstr "" "Klaida perkeliant įkeltą failą, žiūrėti [a@./Documentation." "html#faq1_11@Documentation]DUK 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Klaida perkeliant atsiųstą failą." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Negalima perskaityti (perkelti) įkelto failo." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Atverti naują phpMyAdmin langą" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Slapukai turi būti priimami." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "Slapukai turi būti priimami." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksai" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikalus" @@ -2524,8 +2740,8 @@ msgstr "Suspausta" msgid "Cardinality" msgstr "Elementų skaičius" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Komentaras" @@ -2547,130 +2763,130 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Duomenų bazės" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Serveris" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktūra" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Įterpti" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Veiksmai" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Lentelė atrodo tuščia!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Duomenų bazė atrodo tuščia!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "SQL užklausa" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilegijos" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Įvykiai" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Projektavimas" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Naudotojas" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sinchronizuoti" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Dvejetainis log'as" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Kintamieji" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Koduotės" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Varikliai" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Klaida" @@ -2698,7 +2914,7 @@ msgstr[0] "Įterpta %1$d eilutė." msgstr[1] "Įterptos %1$d eilutės." msgstr[2] "Įterpta %1$d eilučių." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Klaida sudarinėjant PDF:" @@ -2788,16 +3004,110 @@ 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 +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 +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 +msgid "Value" +msgstr "Reikšmė" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Paieška" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Įterpti" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Pasirinkite stulpelius (bent vieną):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Įterpkite paieškos sąlygas į \"where\" sakinį:" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Eilučių skaičius puslapyje" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Atvaizdavimo tvarka:" + +#: libraries/TableSearch.class.php:813 +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 "Maksimalus skaičius eilučių rodymui" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Naršyti išorines reikšmes" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Additional search criteria" +msgstr "Slėpti paieškos kriterijų" + +#: 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 "Vykdyti „užklausą pagal pavyzdį“ (pakaitos simbolis: „%“)" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Vykdyti „užklausą pagal pavyzdį“ (pakaitos simbolis: „%“)" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +#| msgid "Control user" +msgid "How to use" +msgstr "Kontroliuoti naudotoją" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Atstatyti į pradinę būseną" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nerasta tinkamo paveiksliukų kelio temai %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Peržiūra negalima." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "pasirinkti" @@ -2816,7 +3126,7 @@ msgstr "Tema %s nerasta!" msgid "Theme path not found for theme %s!" msgstr "Kelias iki temos nerastas temai %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Išvaizda" @@ -3113,13 +3423,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Neįmanoma prisijungti: neteisingi duomenys." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Jūs naudojate %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3128,7 +3438,7 @@ msgstr "" "Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų " "skriptu%2$s, kad sukurtumėte failą." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 #, fuzzy msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " @@ -3145,49 +3455,43 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Nepavyko pasinaudoti Blowfish iš mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Slapukai turi būti priimami." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Prisijungti" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Jūs galite įvesti serverio vardą/IP adresą ir prievadą atskirtą tarpu." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Darbinė stotis" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Naudotojo vardas:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Slaptažodis:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Pasirinkti serverį" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Slapukai turi būti priimami." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Prisijungimą be slaptažodžio draudžia nustatymai (žiūrėti AllowNoPassword)." -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" @@ -3195,13 +3499,13 @@ msgstr "" "Daugiau nei %s sekundžių nebuvo atlikta jokių veiksmų, prašome prisijungti " "iš naujo" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Nepavyksta prisijungti prie MySQL darbinės stoties" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Neteisingas naudotojo vardas arba slaptažodis. Priėjimas uždraustas." @@ -3233,7 +3537,7 @@ msgstr "padalintas" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Lentelės" @@ -3245,13 +3549,13 @@ msgstr "Lentelės" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Duomenys" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Perteklius" @@ -3276,19 +3580,11 @@ msgstr "Patikrinti duomenų bazės „%s“ privilegijas." msgid "Check Privileges" msgstr "Patikrinti privilegijas" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "galimas pažeidžiamumas" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Nepavyko perskaityti konfigūracijos failo" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3296,12 +3592,12 @@ msgstr "" "Tai dažniausiai reiškia, kad yra įvelta sintaksės klaida, prašome patikrinti " "žemiau esančias klaidas." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepavyko užkrauti numatytų nustatymų failo iš: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3312,212 +3608,190 @@ msgid "" msgstr "" "BŪTINA nustatymų faile įrašyti $cfg['PmaAbsoluteUri'] reikšmę!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Blogas serverio indeksas: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "galimas pažeidžiamumas" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Didžiausias dydis: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentacija" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL užklausa" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL atsakymas: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Nepavyko prisijungti prie SQL tikrintuvo!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Paaiškinti SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Praleisti SQL užklausos aiškinimą" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "be PHP kodo" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP kodas" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Atnaujinti" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Praleisti SQL užklausos tikrinimą" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Patikrinti SQL užklausą" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Greitas užklausos redagavimas" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Redaguoti čia" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profiliavimas" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Sek" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y m. %B %d d. %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s d., %s val., %s min. ir %s s" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Trūkstamas parametras:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Pradžia" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Ankstesnis" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Kitas" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Pabaiga" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Pereiti į „%s“ duomenų bazę." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Spustelėkite suskleidimui/atskleidimui" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Naršyti savo kompiuteryje:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams." -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Nėra failų išsiuntimui" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Vykdyti" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Spausdinti" @@ -3547,8 +3821,8 @@ msgid "Closed" msgstr "Uždarytas" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Išjungta" @@ -3690,9 +3964,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Atstatyti į pradinę būseną" @@ -3912,10 +4186,6 @@ msgstr "Analizuoti lentelės struktūrą" msgid "Show binary contents as HEX by default" msgstr "Rodyti dvejetainį turinį kaip šešioliktainį pagal nutylėjimą" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Rodyti dvejetainį turinį kaip šešioliktainį" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3972,7 +4242,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Ilgiausias vykdymo laikas" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Išsaugoti į failą" @@ -3981,7 +4251,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formatas" @@ -4085,7 +4355,7 @@ msgid "MIME type" msgstr "MIME tipas" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Sąryšiai" @@ -5654,9 +5924,9 @@ msgstr "Reikalaujama, kad SQL Validator būtų įjungtas" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Slaptažodis" @@ -5938,32 +6208,24 @@ msgstr "" msgid "Details..." msgstr "Detalės..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Gali būti apytikslis. Žiūrėkite [a@./Documentation." -"html#faq3_11@Documentation]DUK 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Pakeisti slaptažodį" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Nėra slaptažodžio" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Įveskite dar kartą" @@ -5984,22 +6246,22 @@ msgstr "Sukurti duomenų bazę" msgid "Create" msgstr "Sukurti" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Nėra privilegijų" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Pavadinimas" @@ -6153,26 +6415,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Koduotės konvertavimas:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version" msgid "committed on %1$s by %2$s" msgstr "Sukurti versiją" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version" msgid "authored on %1$s by %2$s" @@ -6292,266 +6554,116 @@ msgstr "Formato specifiniai nustatymai:" msgid "Language" msgstr "Kalba" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -#| msgid "Save directory" -msgid "Save edited data" -msgstr "Išsaugoti katalogą" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Atstatyti stulpelių rikiavimą" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Pradėti eilute" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Eilučių skaičius:" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Režimas" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontaliai" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontalūs (pasukti pavadinimai)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertikaliai" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute every" -msgid "Headers every %s rows" -msgstr "Vykdyti kas" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Rūšiuoti pagal raktą" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Nustatymai" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Tekstus rodyti dalinai" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Tekstus rodyti pilnai" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Sąryšių raktas" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Ryšių rodymo stulpelis" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Rodyti dvejetainį turinį" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Rodyti BLOB turinį" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Naršyklės transformacija" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Eilutė buvo ištrinta" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Stabdyti procesą" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "užklausa vykdoma" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Rodomi įrašai" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "iš viso " - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Užklausa užtruko %01.4f sek." - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Veiksmai su užklausos rezultatais" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Spausdinti rezultatus (su pilnais tekstais)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Rodyti diagramą" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Sukurti rodinį" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Sąryšis nerastas" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Versija" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Duomenų pradinis (home) katalogas" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Bendra direktorijų kelio dalis visiems InnoDB duomenų failams." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Duomenų failai" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Automatinis didėjimas" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Buferio pool'o dydis" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Buferio Pool'as" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB būsena" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Buferio Pool'o naudojimas" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "puslapiai" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Tušti puslapiai" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 #, fuzzy msgid "Dirty pages" msgstr "Tušti puslapiai" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Puslapiai su duomenimis" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Buferio pool'o veikla" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Skaitymo užklausos" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Įrašymo užklausos" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Skaitymo nepataikymai" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Rašymas laukia" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Skaitymo nepataikymai %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Rašymas laukia %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Duomenų rodyklės dydis" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6559,11 +6671,11 @@ msgstr "" "Numatytasis rodyklės dydis baitais naudojamas CREATE TABLE teiginio MyISAM " "lentelėms kai nenustatytas MAX_ROWS nustatymas." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Automatinio atstatymo režimas" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6571,11 +6683,11 @@ msgstr "" "Režimas, skirtas automatiniam nusprogusių MyISAM lentelių atstatymui, kuris " "nurodomas per --myisam-recover serverio startavimo parametrą." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Maksimalus laikinų rūšiavimo failų dydis" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6584,22 +6696,22 @@ msgstr "" "Maksimalus MySQL'ui leistinas laikinų failų dydis perkuriant MyISAM indeksus " "(vykdant REPAIR TABLE, ALTER TABLE arba LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Maksimalus laikinų failų dydis kuriant indeksus" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Gijų skaičius remonto metu" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6607,21 +6719,21 @@ msgstr "" "Jei ši reikšmė yra didesnė už 1, taisant lentelę rūšiavimo procesas MyISAM " "lentelių indeksus kuria lygiagrečiai (kiekvieną indeksą savo gijoje)." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Rūšiavimo buferio dydis" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Indekso podėlio (cache) dydis" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6630,42 +6742,42 @@ msgstr "" "Numatytoji reikšmė yra 32 MB. Paskirta atmintis yra naudojama tik rodyklės " "padėjimui (for caching index pages)." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Įrašo podėlio (cache) dydis" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Žurnalo (log) podėlio (cache) dydis" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Operacijų (Transaction) buferio dydis" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6673,21 +6785,21 @@ msgstr "" "Visuotino operacijų žurnalo buferio dydis (variklis paskiria 2 buferius " "tokio dydžio). Numatyta reikšmė yra 1 MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6695,48 +6807,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Žurnalo (log) buferio dydis" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6744,18 +6856,18 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Susijusios nuorodos" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6802,14 +6914,14 @@ msgstr "Sukurta duomenų kopija lentelei" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Įvykis" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6869,14 +6981,14 @@ msgstr "Rodyti MIME-tipus" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Darbinė stotis" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Atlikimo laikas" @@ -7085,21 +7197,12 @@ msgstr "Rodinys (Views)" msgid "Export contents" msgstr "Eksportuoti turinį" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Atverti naują phpMyAdmin langą" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Nerasta duomenų GIS vizualizavimui." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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ų)." @@ -7203,12 +7306,12 @@ msgid "DocSQL" msgstr "docSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Lentelės vardas" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Stulpelių vardai" @@ -7279,94 +7382,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funkcija" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Paslėpti" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Dvejetainis" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Dvejetainis - nekeisti" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "web serverio katalogas atsiuntimams" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Įterpti" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Tęstį įterpimą su %s eilučių" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "ir tada" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Įterpti kaip naują įrašą" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Rodyti įterptą užklausą" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Sugrįžti į buvusį puslapį" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Įterpti kitą naują eilutę" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Grįžti atgal į šį puslapį" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Redaguoti kitą įrašą" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Reikšmė" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Įterpto įrašo id: %1$d" @@ -7381,34 +7466,34 @@ msgstr "Nėra" msgid "Convert to Kana" msgstr "Konvertuoti į Kana" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Iš" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Kam" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Siųsti" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Pridėti lentelės priešdėlį" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Pridėti priešdėlį" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Ar tikrai norite " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Nėra pakeitimų" @@ -7618,87 +7703,87 @@ msgstr "Atsiųsti iš naujo navigacijos rėmelį" msgid "This format has no options" msgstr "Šis formatas neturi nustatymų" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Negerai" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "Gerai" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Įjungta" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Pagrindinės sąryšių sąvybės" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Išvedimo sąvybės" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF failo generavimas" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Išvesti stulpelių komentarus" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Naršyklės transformacija" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Informaciją, kaip atnaujinti column_comments lentelę, galite rasti " "dokumentacijoje." -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Sukurti nuoroda SQL-užklausai" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL užklausų istorija" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Ilgalaikiai sujungimai" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Naudotojo nuostatos" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Greiti žingsneliai nustatyti išplėstines galimybes:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Sukurti reikalaujamas lenteles su examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Sukurti pma naudotoją ir suteikti prieigą prie šių lentelių." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7706,13 +7791,13 @@ msgstr "" "Įjungti išplėstines funkcijas konfigūraciniame faile (config.inc.php), pavyzdžiui, pradėti galite nuo config.sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Iš naujo prisijunkite prie phpMyAdmin tam, kad užkrautumėte atnaujintą " "konfigūracijos failą." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "Aprašymo nėra" @@ -7720,7 +7805,7 @@ msgstr "Aprašymo nėra" msgid "Slave configuration" msgstr "Pavaldžiojo (Slave) serverio konfigūracija" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Pakeisti arba perkonfigūruoti pagrindinį (master) serverį" @@ -7735,13 +7820,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Naudotojo vardas" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Prievadas (jungtis)" @@ -7754,7 +7839,7 @@ 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:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Kintamasis" @@ -7768,38 +7853,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Pridėti pavaldžiojo serverio (slave) dauginimo (replication) naudotoją" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Naudokite teksto įvedimo lauką" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Bet kurį prisijungimo adresą" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokali darbinė stotis" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Dabartinis serveris" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Naudoti Host lentelę" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7813,7 +7898,7 @@ msgstr "Generuoti slaiptažodį" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7844,94 +7929,95 @@ msgstr "Įvykis %1$s buvo sukurtas." msgid "One or more errors have occured while processing your request:" msgstr "Viena ar daugiau klaidų įvyko vykdant Jūsų užklausą:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Redaguoti įvykį" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Klaida vykdant užklausą" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detalės" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Įvykio tipas" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Įvykio tipas" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Pakeisti į %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Vykdyti" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Vykdyti kas" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Start" msgctxt "Start of recurring event" msgid "Start" msgstr "Paleisti" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Pabaiga" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Pabaigus išlaikyti" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7960,7 +8046,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7982,91 +8068,91 @@ msgstr "Stulpelis %s panaikintas" msgid "Routine %1$s has been created." msgstr "Sukurta %1$s lentelė." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Redagavimo režimas" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Stulpelių vardai" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parametrai" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Nukreipimas" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Ilgis/reikšmės*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Pridėti parametrą" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Pašalinti paskutinį parametrą" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Gražinimo tipas" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Grąžinimo Ilgis/reikšmės" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Grąžinimo parametrai" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Yra apibrėžtas" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Saugumo tipas" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "SQL duomenų priėjimas" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8074,18 +8160,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8103,38 +8189,38 @@ msgstr "" msgid "Trigger %1$s has been created." msgstr "" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Laikas" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Jūs privalote pateikti teisingą lentelės vardą" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8218,7 +8304,7 @@ msgstr "Nėra įvykių rodymui." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8227,7 +8313,7 @@ msgstr "Lentelė %s neegzistuoja!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8235,7 +8321,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Nustatykite lentelės %s koordinates" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8246,27 +8332,27 @@ msgstr "Duomenų bazės %s schema - %s puslapis" msgid "This page does not contain any tables!" msgstr "Šis puslapis neturi jokių lentelių!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "SCHEMOS KLAIDA:" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Ryšių schema" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Turinys" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atributai" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Papildomai" @@ -8374,7 +8460,7 @@ msgstr "Nežinoma kalba: %1$s." msgid "Current Server" msgstr "Dabartinis serveris" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Iš duomenų bazės" @@ -8392,7 +8478,7 @@ msgstr "Nutolęs serveris" msgid "Difference" msgstr "Skirtumas" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Į duomenų bazę" @@ -8411,7 +8497,7 @@ msgstr "Vykdyti SQL sakinius serveryje %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Išvalyti" @@ -8420,11 +8506,11 @@ msgstr "Išvalyti" msgid "Columns" msgstr "Stulpeliai" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Leisti kitiems vartotojams naudotis šia žyme" @@ -8519,7 +8605,7 @@ msgstr "" "Neveikia SQL interpretatorius. Prašome patikrinkite ar yra suinstaliuoti " "visi privalomi php moduliai, nurodyti %sdokumentacijoje%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." @@ -8547,8 +8633,8 @@ msgstr "" "nutylėjimą. Naudokitės šiuo formatu: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indeksas" @@ -8601,13 +8687,13 @@ msgstr "Nėra" msgid "As defined:" msgstr "Kaip nurodyta:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Pirminis" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Fulltext" @@ -8621,17 +8707,17 @@ msgstr "" msgid "after %s" msgstr "Po %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Pridėti %s stulpelį(-ius)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Jūs turite pridėti bent vieną stulpelį (ar skiltį)." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Saugojimo variklis" @@ -8639,43 +8725,6 @@ msgstr "Saugojimo variklis" msgid "PARTITION definition" msgstr "SKAIDINIO (PARTITION) apibrėžimas" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Paieška" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Pasirinkite stulpelius (bent vieną):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Įterpkite paieškos sąlygas į \"where\" sakinį:" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Eilučių skaičius puslapyje" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Atvaizdavimo tvarka:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Naršyti išorines reikšmes" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Vykdyti „užklausą pagal pavyzdį“ (pakaitos simbolis: „%“)" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8833,11 +8882,11 @@ msgstr "" msgid "Manage your settings" msgstr "Keiskite savo nustatymus" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Konfigūracija išsaugota" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8850,7 +8899,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Nepavyko išsaugoti konfigūracijos" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8877,7 +8926,7 @@ msgstr "Serverio ryšio palyginimas" msgid "Appearance Settings" msgstr "Išvaizdos nustatymai" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Daugiau nustatymų" @@ -8897,9 +8946,9 @@ msgstr "Programinės įrangos versija" msgid "Protocol version" msgstr "Protokolo versija" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Naudotojas" @@ -9027,137 +9076,137 @@ msgstr "" "Serveris veikia su Suhosin. Prašome perskaityti %sdokumentaciją%s dėl galimų " "problemų." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Nėra duomenų bazių" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Pakeisti lentelės rikiavimą pagal:" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Pakeisti lentelės rikiavimą pagal:" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Sukurti lentelę" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Pasirinkite duomenų bazę" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Rodyti/slėpti kairį meniu" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Išsaugoti vietą" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Sukurti sąryšį" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Įkrauti iš naujo" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Pagalba" -#: pmd_general.php:105 +#: pmd_general.php:107 #, fuzzy msgid "Angular links" msgstr "Kampuotos (angular) nuorodos" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Tiesioginės nuorodos" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Pritraukti prie tinklelio" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Mažinti/didinti visus" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Suskleisti/Išskleisti" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "Sąryšio pasirinkimui, paspauskite:" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Importuoti/eksportuoti koordinates PDF schemai" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Vykdyti užklausą" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Perkelti meniu" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Paslėpti/rodyti visus" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Slėpti/rodyti lenteles be sąryšių" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Lentelių skaičius" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Ištrinti sąryšį" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Sąryšis ištrintas" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Išskyrus" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Pervadinti į" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Naujas vardas" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "" @@ -9169,51 +9218,51 @@ msgstr "Puslapis sukurtas" msgid "Page creation failed" msgstr "Puslapio kūrimas nepavyko" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Puslapis" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Importuoti iš pasirinkto puslapio" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Eksportuoti pasirinktą puslapį" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Sukurti puslapį ir eksportuoti į jį" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Naujas puslapio vardas:" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "rekomenduojame" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Klaida: toks sąryšis jau yra." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Klaida: Sąryšis neįdėtas." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY sąryšis įdėtas" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Vidinis sąryšis įdėtas" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Sąryšis ištrintas" @@ -9225,51 +9274,51 @@ msgstr "" msgid "Modifications have been saved" msgstr "Pakeitimai išsaugoti" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Nepavyko išsaugoti nustatymų, išsiųstoje formoje yra klaidų" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Nepavyko importuoti konfigūracijos" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Konfigūracijoje yra neteisingų duomenų tam tikruose laukeliuose." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Išsaugota: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importuoti iš failo" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Importuoti iš naršyklės atminties" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Nustatymai bus importuoti iš Jūsų naršyklės vidinės atminties." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Jūs neturite išsaugotų nustatymų!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Šios galimybės Jūsų interneto naršyklė nepalaiko!" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Sulieti su dabartiniais nustatymais" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9278,36 +9327,36 @@ msgstr "" "Jūs galite nustatyti daugiau nuostatų modifikuojant config.inc.php, " "pavyzdžiui naudojantis %sDiegimo scenarijumi%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Išsaugoti į naršyklės atmintinę" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Nustatymai bus išsaugoti Jūsų naršyklės vidinėje atmintyje." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Esantys nustatymai bus perrašyti!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "Jūs galite atkurti (nustatyti) pradinius nustatymus." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importuoti failus" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Viską" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Lentelė %s nerasta arba nenurodyta %s faile" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Failo nėra" @@ -9315,17 +9364,17 @@ msgstr "Failo nėra" msgid "Select binary log to view" msgstr "Pasirinkti dvejetainį žurnalą (log) peržiūrai" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Failai" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Trumpinti rodomas užklausas" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Rodyti pilnas užklausas" @@ -9341,7 +9390,7 @@ msgstr "Padėtis" msgid "Original position" msgstr "Pirminė padėtis" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informacija" @@ -9349,7 +9398,7 @@ msgstr "Informacija" msgid "Character Sets and Collations" msgstr "Simbolių rinkiniai ir Palyginimai" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9358,24 +9407,24 @@ msgstr[0] "Sėkmingai pašalintos %s duomenų bazės." msgstr[1] "Sėkmingai pašalintos %s duomenų bazės." msgstr[2] "Sėkmingai pašalintos %s duomenų bazės." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Duomenų bazių statistika" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Pagrindinio serverio replikavimas" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Pavaldžiojo serverio replikavimas" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Leisti statistiką" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9387,155 +9436,155 @@ msgstr "" msgid "Storage Engines" msgstr "Saugojimo varikliai" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Peržiūrėti duomenų bazių atvaizdį (schemą)" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Pradžia" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Versija" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Išjungta" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Įtraukti visas teises, išskyrus GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Leisti keisti jau egzistuojančių lenetelių struktūrą." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Leisti keisti pašalinti saugimas programas (stored routines)." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Leisti kurti naujas duomenų bazes ir lenteles." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Leidžia sukurti naujas saugomas programas (stored routines)." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Leisti kurti naujas lenteles." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Leisti kurti laikinas lenteles." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Leidžia kurti, šalinti ir pervadinti vartotojus." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Leidžia sukurti naujus rodinius (view)." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Leisti šalinti duomenis." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Leisti šalinti duomenų bazes ir lenteles." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Leisti šalinti lenteles." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Leisti nustatyti įvykius įvykių planuoklėje (scheduler)" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Leisti įvykdyti saugomas programas (stored routines)." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Leisti įterpti ir eksportuoti duomenis iš failų." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Leisti įterpti naujus vartotojus, bei prisikirti privilegijas, neperkraunant " "privilegijų lentelės." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Leisti įterpti ir modifikuoti indeksus." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Leisti įterpti ir modifikuoti duomenis." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Leisti užrakinti lenteles procesų metu." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Riboti prisijungimų kiekį per valandą." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Riboti užklausų kiekį per valandą" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9544,60 +9593,60 @@ msgstr "" "valandą." # gal labiau kartu vykstančių -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Riboti skaičių lygiagrečių prisijungimų kurį naudotojai gali turėti." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Leisti peržiūrėti procesus visiems naudotojams" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Negalioja šioje MySQL versijoje." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Leisti perkrauti serverio nustatymus, bei išvalyti laikinąją atmintį (cache)." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Leisti vartotojo užklausas dėl atstatymo master / slave darbinių stočių." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Leisti skaityti duomenis." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Suteikti prieigą prie visų duomenų bazių sąrašo." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Leidžia vykdyti SHOW CREATE VIEW užklausas." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Leisti išjungti serverį." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9607,171 +9656,171 @@ msgstr "" "administratoriaus darbų, tokių kaip globalių reikšmių modifikavimui ar " "vartotojų atjungimui." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Leisti įterpti ir pašalinti trigerius." -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Leisti modifikuoti duomenis." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Be teisių." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Nėra" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Specifinės lentelių privilegijos" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Pastaba: MySQL privilegijų pavadinimai pateikiami anglų kalba" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globalios teisės" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Specifinės duomenų bazių privilegijos" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Išteklių apribojimai" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Pastaba: nėra jokių apribojimų jeigu reikšmė nurodyta lygi 0 (nuliui)." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Prisijungimo informacija" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Nekeisti slaptažodžio" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Nerasta jokių naudotojų." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Vartotojas %s jau yra!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Jūs sukūrėte naują vartotoją." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs pakeitėte privilegijas %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jūs panaikinote privilegijas %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Vartotojo %s slaptažodis sėkmingai pakeistas." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Šaliname: %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Nepasirinta vartotojų trynimui!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Perkraunamos privilegijos" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Pažymėti vartotojai sėkmingai pašalinti." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Teisės sėkmingai perkrautos." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Redaguoti privilegijas" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Panaikinti" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Eksportuoti" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Bet kurį(ią)" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Privilegijos" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegijos" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Vartotojų peržiūra" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Suteikti" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Pašalinti pažymėtus vartotojus" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9783,49 +9832,49 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Specifinės stulpelių privilegijos" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Sukurti privilegijas šiai duomenų bazei" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Sukurti privilegijas šiai lentelei" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... palikti seną vartotoją." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... pašalinti seną vartotoją iš vartotojų lentelės." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9833,85 +9882,85 @@ msgstr "" " ... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti " "privilegijas" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Vartotojo duomenų bazė" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Suteikti visas privilegijas pakaitos vardui (username\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Suteikti visas privilegijas duomenų bazei „%s“" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Vartotojai turintys priėjimą prie „%s“" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "globalus" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "tam tikros duomenų bazės" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "pakaitos simbolis" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Naudotojas buvo pridėtas." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Nežinoma klaida" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Nepavyko prisijungti prie pagrindinio (master) serverio %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nepavyko perskaityti pagrindinio (master) serverio žurnalo (log). Galima " "privilegijų problema pagrindiniame serveryje." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Nepavyko pakeisti pagrindinio (master) serverio" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Pagrindinis (master) serveris sėkmingai pakeistas į %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" "Šis serveris sukonfigūruotas kaip pagrindinis (master) daugintuvo " "(replication) procese." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Rodyti pagrindinio serverio būklę" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Rodyti prisijungusius pavaldinius" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9920,11 +9969,11 @@ msgstr "" "Šis serveris nėra sukonfigūruotas kaip pagrindinio serverio dauginimo " "procesas. Ar Jūs norėtumėte sukonfigūruoti jį?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Pagrindinio serverio nustatymai" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9938,19 +9987,19 @@ msgstr "" "arba Jūs galite pasirinkti ignoruoti visas duomenų bazes ir pasirinkti " "kažkurias duomenų bazes dauginimui. Prašome pasirinkti režimą:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Padauginti visas duomenų bazes; Ignoruoti:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Ignoruoti visas duomenų bazes; Padauginti:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Prašome pasirinkti duomenų bazes:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -9958,7 +10007,7 @@ msgstr "" "Dabar įdėkite sekančias eilutes į [mysqld] skyrelio pabaigą faile my.cnf ir " "po to prašome iš naujo paleiskite MySQL serverį." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -9968,84 +10017,84 @@ msgstr "" "to turėtumėte pamatyti informacinę žinutę, kad šis serveris yra " "sukonfigūruotas kaip pagrindinis (master)." -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Pavaldžioji (slave) SQL gija neveikia!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Pavaldžioji (slave) IO gija neveikia!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Serveris yra sukonfigūruotas kaip pavaldusis (slave) dauginimo (replication) " "procese. Ar norėtume:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Peržiūrėti pavaldžiojo serverio būklės lentelę" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Sinchronizuoti duomenų bazes su pagrindiniu serveriu" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Valdyti pavaldinį:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Pilnas paleidimas" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Pilnas išjungimas" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Paleisti iš naujo pavaldųjį serverį (reset slave)" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Pradėti tik SQL giją" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Sustabdyti tik SQL giją" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Pradėti tik IO giją" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Sustabdyti tik IO giją" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Klaidų valdymas:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Klaidų praleidinėjimas gali nuvesti iki nesusinchronizavimo tarp pagrindinio " "ir jam pavaldžių serverių!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Praleisti šią klaidą" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Praleisti sekančius" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "klaidos." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10054,152 +10103,152 @@ msgstr "" "Serveris nesukonfigūruotas daugintuvo (replication) procese kaip pavaldusis " "(slave). Konfigūruoti!" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Gija %s buvo sėkmingai išjungta." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin negalėjo išjungti %s proceso. Gali būti jog jis jau užbaigė darbą." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Užklausų saugykla" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Gijos" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Laikini duomenys" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Užlaikyti įterpimai" -#: server_status.php:611 +#: server_status.php:610 #, fuzzy msgid "Key cache" msgstr "Užklausų saugykla" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Rikiavimas" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Rodyti atidarytas lenteles" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Rodyti pavaldinio būklę" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Veikimo informacija" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Visi būsenos kintamieji" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Atnaujinimo dažnis:" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filtrai" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Turintys žodį:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filtruoti pagal kategoriją..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Rodyti nesuformatuotas reikšmes" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Susijusios nuorodos:" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query analyzer" msgid "Run analyzer" msgstr "Užklausos analizatorius" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Introduction" msgid "Instructions" msgstr "Įvadas" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10207,33 +10256,33 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Adaptuoti paleidimo (pagrindinį) puslapį" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Parametrai" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10241,19 +10290,19 @@ msgstr "" "Šis MySQL serveris veikia kaip pagrindinis ir kaip pavaldusis " "serveris dauginimo procese." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" "Šis MySQL serveris veikia kaip pagrindinis serveris dauginimo " "procese." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" "Šis MySQL serveris veikia kaip pavaldusis serveris dauginimo " "procese." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10261,71 +10310,71 @@ msgstr "" "Daugiau informacijos apie dauginimo serverio būseną prašome aplankyti dauginimo skyrelį." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Dauginimo būsena" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Gauta" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Siųsta" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "Daugiausia lygiagrečių prisijungimų" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Nepavykę bandymai" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Nutraukta" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Komanda" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Skaičius nepavykusių bandymų prisijungti prie MySQL serverio." -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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,78 +10382,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Kiek laikinųjų failų mysqld sukūrė." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Įvykdytų FLUSH užklausų skaičius." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Vidinių COMMIT užklausų skaičius." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10412,7 +10461,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10420,42 +10469,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Vidinių ROLLBACK užklausų skaičius." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Tuščių puslapių skaičius." -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10463,33 +10512,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10498,244 +10547,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Esamu momentu laukiančių fsync() operacijų skaičius." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Esamu momentu laukiančių skaitymų skaičius." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Esamu momentu laukiančių rašymų skaičius." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Sukurtų puslapių skaičius." -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Puslapių skaitymų skaičius." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Įrašytų puslapių skaičius." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Įkelto failo formatas" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Failų kurie yra atidaryti skaičius." -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Lentelių kurios yra atidarytos skaičius." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Podėlio kreipimųsi skaičius." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10743,99 +10792,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Surikiuotų eilučių skaičius." -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "Rikiavimų kurie buvo atlikti skenuojant lentelę skaičius." -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10843,18 +10892,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10862,63 +10911,63 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Sekimas yra neaktyvus." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Paleisti Monitor" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Instrukcijos/Diegimas" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Pridėti diagramą" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Naujinimo dažnis" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Diagramos stulpeliai" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Diagramos išdėstymas" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Atstatyti numatytąsias reikšmes" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Monitor instrukcijos" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10927,7 +10976,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10935,18 +10984,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10954,11 +11003,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10966,81 +11015,81 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "Pašalinti diagramą" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Būsenos kintamasis(ieji)" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Pasirinkite eiles:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "arba įveskite kintamojo vardą:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Pridėti šią eilę" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Eilės diagramoje:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Registruoti statistiką" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Pasirinktas laiko tarpas:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Užklausos analizatorius" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11049,7 +11098,7 @@ msgstr[0] "Sekundė" msgstr[1] "Sekundės" msgstr[2] "Sekundžių" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11058,110 +11107,110 @@ msgstr[0] "Minutė" msgstr[1] "Minutė" msgstr[2] "Minučių" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Nepavyko prisijungti prie šaltinio (angl. source)" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Nepavyko prisijungti prie adresato (angl. target)" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "„%s“ duomenų bazė neegzistuoja." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Struktūros sinchronizacija" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Duomenų sinchronizacija" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Struktūros skirtumas" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Duomenų skirtumas" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Pridėti stulpelį(-ius)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Pašalinti stulpelį(-ius)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Pakeisti stulpelį(-ius)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Pašalinti žurnalą(us) (indeksą)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Keisti žurnalą(us) (indeksą)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Atnaujinti eilutę(es)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Įterpti eilutę(-es)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Įrašyti pakeitimus" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Sinchronizuoti duomenų bazes" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Įvykdytos užklausos" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Įvesti rakiniu būdu" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Dabartinis prisijungimas" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Konfigūracija: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Prievadas (socket)" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11169,19 +11218,19 @@ msgstr "" "Paskirta duomenų bazė bus pilnai susinchronizuota su pirmine duomenų baze. " "Pirminė duomenų bazė išliks nepakeista." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Serverio kintamieji ir nustatymai" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Sesijos reikšmė" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Globali reikšmė" @@ -11523,75 +11572,75 @@ msgstr "" msgid "Wrong data" msgstr "Nėra duomenų" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Ar tikrai norite " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Rodomas PHP kodas" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Patikrintas SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL rezultatas" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Sugeneravo" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Iškilo problemos su `%s` lentelės indeksais" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Nuorodos Antraštė" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Lentelė %1$s sėkmingai pakeista" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Pažymėti vartotojai sėkmingai pašalinti." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Bar" msgctxt "Chart type" msgid "Bar" msgstr "Histograma" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Stulpelis" -#: tbl_chart.php:84 +#: tbl_chart.php:87 #, fuzzy #| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "Linijinė" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgctxt "Inline edit query" #| msgid "Inline" @@ -11599,94 +11648,94 @@ msgctxt "Chart type" msgid "Spline" msgstr "Redaguoti čia" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "Pie" msgctxt "Chart type" msgid "Pie" msgstr "Skritulinė" -#: tbl_chart.php:93 +#: tbl_chart.php:96 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Suspausta" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Diagramos antraštė:" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "X-ašis:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "X ašies etiketė:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "X Reikšmės" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Y ašies etiketė:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Y Reikšmės" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Lentelė %s jau yra!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Sukurta %1$s lentelė." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Peržiūrėti lentelės struktūros atvaizdį" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Rodyti GIS vizualizaciją" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Plotis" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Aukštis" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Etiketės stulpelis" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Tuščia --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Perpiešti" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Įrašyti į failą" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Failo pavadinimas" @@ -11702,30 +11751,30 @@ msgstr "Negalima pervadinti indekso į PRIMARY!" msgid "No index parts defined!" msgstr "Neaprašytos indekso dalys!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Pridėti indeksą" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Redagavimo režimas" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Indekso vardas :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" yra vienintelis pirminio rakto tipas!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Indekso tipas :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Įterpti indeksui papildomus  %s stulpelį(ius)" @@ -11748,260 +11797,260 @@ msgstr "Lentelė %s perkelta į %s." msgid "Table %s has been copied to %s." msgstr "Letelė %s nukopijuota į %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Tuščias lentelės vardas!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Pakeisti lentelės rikiavimą pagal:" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(pavieniui)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Perkelti lentelę į (duomenų_bazė.lentelė):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Lentelės parinktys" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Pervadinti lentelę į" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopijuoti lentelę į (duomenų_bazė.lentelė):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Pereiti į lentelės kopiją" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Lentelės diagnostika" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmentuoti lentelę" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Lentelės buferis %s išvalytas" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Išvalyti ir perkrauti lentelės podėlį (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Ištrinti duomenis arba lentelę" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Ištrinti lentelės duomenis (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Ištrinti lentelę (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Skaidinio diagnostika" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Skaidinys %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analizuoti" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Pažymėti" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimizuoti" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Perdaryti" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Taisyti" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Pašalinti skaidymą" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Patikrinti sąryšių vientisumą:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Rodyti lentelės" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Vietos naudojimas" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efektyvus" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Eilučių statistika" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "pastovus" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinaminis" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Eilutės ilgis" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Eilutės dydis" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Vidiniai sąryšiai" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Peržiūrėti skirtingas reikšmes" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Pridėti pirminį raktą" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Pridėti unikalų indeksą" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Pridėti SPATIAL indeksą" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Pridėti FULLTEXT indeksą" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Jokio" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Stulpelis %s panaikintas" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Stulpeliui %s sukurtas PIRMINIS raktas" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Indeksas sukurtas %s stulpeliui" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Rodyti daugiau veiksmų" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Pašalinti stulpelį(-ius)" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Keisti rodinį" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Peržiūrėti sąryšius" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Analizuoti lentelės struktūrą" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Pridėti stulpelį" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Lentelės pabaigoje" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Lentelės pradžioje" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Sukurti indeksą  %s stulpeliams" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12154,77 +12203,39 @@ msgstr "" msgid "Create version" msgstr "Sukurti versiją" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Vykdyti „užklausą pagal pavyzdį“ (pakaitos simbolis: „%“)" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Additional search criteria" -msgstr "Slėpti paieškos kriterijų" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -#, fuzzy -#| msgid "Maximum number of rows to display" -msgid "Maximum rows to plot" -msgstr "Maksimalus skaičius eilučių rodymui" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -#| msgid "Control user" -msgid "How to use" -msgstr "Kontroliuoti naudotoją" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Atstatyti į pradinę būseną" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Gauti daugiau išvaizdų!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Galimi MIME-tipai" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME tipai atspausdinti pasvirusiu šriftu neturi atskirų transformacijos " "funkcijos." -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Galimos transformacijos" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Paaiškinimas" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Neturite pakankamai teisių čia būti!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profilis papildytas." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "VIEW pavadinimas" diff --git a/po/lv.po b/po/lv.po index 844bcf6c2e..cf38f855eb 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: latvian \n" @@ -15,21 +15,21 @@ msgstr "" "2);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Rādīt visu" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Lapas numurs:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "vai arī Jūsu pārlūkprogramma bloķe starplogu saskarsmi Jūsu drošības " "iestādījumu dēļ." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Aiziet!" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Atslēgas nosaukums" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Apraksts" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Lietot šo vērtību" @@ -106,90 +106,91 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Datubāze %s tika izdzēsta." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Datubāzes komentārs: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Komentārs tabulai" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Kolonnu nosaukumi" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Nulle" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Noklusēts" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Linki uz" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Komentāri" @@ -198,14 +199,14 @@ msgstr "Komentāri" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nē" @@ -218,125 +219,125 @@ msgstr "Nē" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Jā" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Apskatīt datubāzes dampu (shēmu)" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Tabulas nav atrastas šajā datubāzē." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Iezīmēt visu" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Neiezīmēt neko" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Datubāzes nosaukums ir tukšs!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Datubāze %s tika pārsaukta par %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Datubāze %s tika pārkopēta uz %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:470 +#: db_operations.php:476 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Pārsaukt datubāzi par" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Datubāze %s tika izdzēsta." -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy msgid "Drop the database (DROP)" msgstr "Nav datubāzu" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Kopēt datubāzi uz" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Tikai struktūra" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktūra un dati" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Tikai dati" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Pievienot ierobežojumus" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Pārslēgties uz nokopēto datubāzi" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Izkārtojumi" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -348,61 +349,61 @@ msgstr "" "Papildiespējas darbam ar saistītām tabulām tika izslēgtas. Lai uzzinātu " "kāpēc, klikškiniet %sšeit%s." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Relāciju shēma" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabula" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Rindas" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Izmērs" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "lietošanā" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Izveidošana" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Pēdējā atjaunošana" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Pēdējā pārbaude" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -414,122 +415,122 @@ msgstr[1] "%s tabula(s)" msgid "You have to choose at least one column to display" msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Pārslēgties uz nokopēto tabulu" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Kārtošana" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Augošā secībā" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Dilstošā secībā" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Rādīt" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kritērijs" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ielikt" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Un" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Dzēst" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Vai" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Labot" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Pievienot/Dzēst ierakstu" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Atjaunot vaicājumu" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Lietot tabulas" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL vaicājums uz datubāzes %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Izpildīt vaicājumu" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Pieeja aizliegta" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "kaut viens no vārdiem" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "visi vārdi" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "precīza frāze" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "kā regulārā izteiksme" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Meklēšanas rezultāti \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -537,31 +538,31 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -569,265 +570,266 @@ msgid_plural "Total: %s matches" msgstr[0] "Kopumā: %s rezultāti" msgstr[1] "Kopumā: %s rezultāti" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Meklēt datubāzē" -#: db_search.php:292 +#: db_search.php:295 #, 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:297 +#: db_search.php:300 msgid "Find:" msgstr "Atrast:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Vārdi ir atdalīti ar tukšumu (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Tabulā(s):" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" msgstr "Tabulā(s):" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Tabulas nav atrastas šajā datubāzē." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "nazināma" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabula %s tika iztukšota" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Lauks %s tika izdzēsts" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabula %s tika izdzēsta" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 #, fuzzy msgid "Replication" msgstr "Relācijas" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Kopumā" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Ar iezīmēto:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Iezīmēt visu" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Iezīmēt tabulas ar pārtēriņu" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksports" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Izdrukas versija" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Iztukšot" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Likvidēt" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Pārbaudīt tabulu" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimizēt tabulu" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Restaurēt tabulu" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizēt tabulu" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 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:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 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:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Datu vārdnīca" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Datubāze" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 #, fuzzy msgid "Created" msgstr "Izveidot" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Statuss" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Darbība" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 #, fuzzy msgid "Versions" msgstr "Persiešu" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 #, fuzzy msgid "Structure snapshot" msgstr "Tikai struktūra" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "Pārbaudīt tabulu" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "Datubāze" @@ -841,18 +843,18 @@ msgstr "Vaicājuma tips" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Pievienot jaunu lauku" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nepietiek vietas, lai saglabātu failu %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -860,12 +862,12 @@ msgstr "" "Fails %s jau eksistē uz servera. Lūdzu nomainiet faila nosaukumu vai " "atzīmējiet failu pārrakstīšanas opciju." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web serverim nav tiesību rakstīt failā %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Damps tika saglabāts failā %s." @@ -875,186 +877,186 @@ msgstr "Damps tika saglabāts failā %s." msgid "Invalid export type" msgstr "Eksporta veids" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Pievienot jaunu lauku" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Rindas atdalītas ar" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Pievienot jaunu lietotāju" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Pievienot jaunu lietotāju" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Pievienot %s lauku(s)" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy msgid "Add geometry" msgstr "Pievienot jaunu lietotāju" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Ieraksts tika dzēsts." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Nevar nolasīt failu" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Atpakaļ" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin ir vairāk draudzīgs freimu atbalstošām pārlūkprogrammām." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda ir aizliegta." @@ -1064,7 +1066,7 @@ msgstr "\"DROP DATABASE\" komanda ir aizliegta." msgid "Do you really want to execute \"%s\"?" msgstr "Vai Jūs tiešām gribat " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!" @@ -1114,7 +1116,7 @@ msgstr "Pievienot jaunu lauku" msgid "Edit Index" msgstr "Indekss" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -1135,16 +1137,16 @@ msgstr "Hosts nav norādīts!" msgid "The user name is empty!" msgstr "Lietotāja vārds nav norādīts!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Parole nav norādīta!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Paroles nesakrīt!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1166,25 +1168,26 @@ msgstr "Dzēst izvēlētos lietotājus" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Labot" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Servera izvēle" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "SQL vaicājums" @@ -1195,24 +1198,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Kopā" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1234,7 +1237,7 @@ msgstr "Servera izvēle" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Procesi" @@ -1254,7 +1257,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "Rindas statistika" @@ -1299,14 +1302,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1364,32 +1367,32 @@ msgstr "" msgid "Bytes received" msgstr "Saņemts" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Konekcijas" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "baiti" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1405,11 +1408,11 @@ msgstr "%s tabula(s)" msgid "Questions" msgstr "Persiešu" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Datu apmaiņa" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1433,11 +1436,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Nav" @@ -1537,7 +1540,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:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1623,7 +1626,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Laiks" @@ -1731,10 +1734,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksports" @@ -1789,9 +1792,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1806,11 +1809,11 @@ msgstr "Lokāls" msgid "Processing Request" msgstr "Procesi" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Datubāze nav izvēlēta." @@ -1822,9 +1825,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "Labi" @@ -1880,19 +1883,19 @@ msgstr "Pievienot jaunu lauku" msgid "Show indexes" msgstr "Rādīt režģi" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Nepārbaudīt ārējās atslēgas" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Ieslēgts" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1930,7 +1933,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1972,8 +1975,8 @@ msgstr "SQL vaicājums" msgid "No rows selected" msgstr "Rindas nav iezīmētas" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Labot" @@ -1981,18 +1984,18 @@ msgstr "Labot" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Saglabāt" @@ -2006,7 +2009,7 @@ msgstr "SQL vaicājums" msgid "Show search criteria" msgstr "SQL vaicājums" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2058,12 +2061,12 @@ msgstr "SQL rezultāts" msgid "Data point content" msgstr "Satura rādītājs" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignorēt" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2085,7 +2088,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2179,7 +2182,7 @@ msgstr "Uzģenerēja" msgid "Change Password" msgstr "Mainīt paroli" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2293,27 +2296,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2321,37 +2324,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dec" @@ -2400,32 +2403,32 @@ msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "S" @@ -2558,16 +2561,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "sekundē" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "minūtē" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "stundā" @@ -2588,71 +2591,299 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Pievienot/Dzēst laukus (kolonnas)" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Sākums" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Iepriekšējie" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Nākamie" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Beigas" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "S" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows per page" +msgid "Number of rows" +msgstr "Rindu skaits vienā lapā" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "P" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontālā" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontālā (pagriezti virsraksti)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertikālā" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Izpildīt iegrāmatoto vaicājumu" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Kārtot pēc atslēgas" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "Darbības" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Daļēji teksti" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Pilni teksti" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "Relāciju shēma" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Relāciju shēma" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Pārlūkprogrammas transformācija" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Nogalināt" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "vaicājumā" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Parādu rindas" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "kopā" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Vaicājums ilga %01.4f s" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Drukas skats (ar pilniem tekstiem)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Rādīt PDF shēmu" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Servera versija" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Links nav atrasts" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikālais" @@ -2665,8 +2896,8 @@ msgstr "" msgid "Cardinality" msgstr "Kardinalitāte" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2688,130 +2919,130 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Datubāzes" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Serveris" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktūra" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Pievienot" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Darbības" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Vaicājums pēc parauga" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilēģijas" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Lietotājs" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binārais log-fails" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Mainīgie" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Rakstzīmju kodējumi" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Kļūda" @@ -2838,7 +3069,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Rindas nav iezīmētas" msgstr[1] "Rindas nav iezīmētas" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2929,16 +3160,107 @@ 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 +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 +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 +msgid "Value" +msgstr "Vērtība" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Meklēt" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Pievienot" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Izvēlieties laukus (kaut vienu):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Pievienot meklēšanas nosacījumus (\"where\" izteiksmes ķermenis):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Rindu skaits vienā lapā" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Attēlošanas secība:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Pārlūkot ārējās vērtības" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "SQL vaicājums" + +#: 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 "Izpildīt \"vaicājumu pēc parauga\" (aizstājējzīme: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Izpildīt \"vaicājumu pēc parauga\" (aizstājējzīme: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Atcelt" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "izmantot šo stilu" @@ -2957,7 +3279,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3254,20 +3576,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Nevar pieslēgties: kļūda konfigurācijā." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Laipni lūgti %s" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3283,61 +3605,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Ieiet" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Serveris" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Lietotājvārds:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Parole:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Servera izvēle" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Nebija aktivitātes vairāk kā %s sekunžu laikā, lūdzu autorizējieties vēlreiz" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Nevar pieslēgties MySQL serverim" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Kļūdains lietotājvārds/parole. Pieeja aizliegta." @@ -3369,7 +3685,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabulas" @@ -3381,13 +3697,13 @@ msgstr "Tabulas" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Dati" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Pārtēriņš" @@ -3414,30 +3730,22 @@ msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." msgid "Check Privileges" msgstr "Pārbaudīt privilēģijas" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3449,215 +3757,193 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktīvai ir JĀBŪT nodefinētai Jūsu " "konfigurācijas failā!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Jums ir jāuzliek %s %s vai jaunāks." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Maksimālais izmērs: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentācija" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL vaicājums" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL teica: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Izskaidrot SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Neizskaidrot SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Izveidot PHP kodu" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Atjaunot" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Nepārbaudīt SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Pārbaudīt SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Sv" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dienas, %s stundas, %s minūtes un %s sekundes" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Pievienot jaunu lauku" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Sākums" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Iepriekšējie" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Nākamie" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Beigas" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "pāriet pie datubāzes "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web servera augšupielādes direktorija" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Drukāt" @@ -3689,8 +3975,8 @@ msgid "Closed" msgstr "Neaizvērtas pēdiņas" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Izslēgts" @@ -3842,9 +4128,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Atcelt" @@ -4054,10 +4340,6 @@ msgstr "Ieteikt tabulas sruktūru" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4114,7 +4396,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Saglabāt kā failu" @@ -4124,7 +4406,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formats" @@ -4243,7 +4525,7 @@ msgid "MIME type" msgstr "MIME tips" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relācijas" @@ -5773,9 +6055,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Parole" @@ -6049,30 +6331,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Mainīt paroli" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Nav paroles" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Atkārtojiet" @@ -6097,13 +6373,13 @@ msgstr "Izveidot jaunu datubāzi" msgid "Create" msgstr "Izveidot" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Nav privilēģiju" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "Izveidot jaunu lapu" @@ -6111,9 +6387,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nosaukums" @@ -6299,25 +6575,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Servera versija" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Servera versija" @@ -6428,408 +6704,241 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Pievienot/Dzēst laukus (kolonnas)" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "S" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of rows" -msgstr "Rindu skaits vienā lapā" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "P" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontālā" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontālā (pagriezti virsraksti)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertikālā" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Izpildīt iegrāmatoto vaicājumu" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Kārtot pēc atslēgas" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "Darbības" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Daļēji teksti" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Pilni teksti" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "Relāciju shēma" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Relāciju shēma" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Pārlūkprogrammas transformācija" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Ieraksts tika dzēsts" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Nogalināt" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "vaicājumā" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Parādu rindas" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "kopā" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Vaicājums ilga %01.4f s" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Drukas skats (ar pilniem tekstiem)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Rādīt PDF shēmu" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Servera versija" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Links nav atrasts" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 #, fuzzy msgid "Version information" msgstr "Piekļuves informācija" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 #, fuzzy msgid "Data files" msgstr "Tikai dati" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB statuss" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 #, fuzzy msgid "Pages to be flushed" msgstr "Tabula %s tika atsvaidzināta" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6837,48 +6946,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6886,20 +6995,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Relācijas" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6959,15 +7068,15 @@ msgstr "Dati tabulai" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" 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:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7042,14 +7151,14 @@ msgstr "Pieejamie MIME tipi" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Hosts" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Izveidošanas laiks" @@ -7249,21 +7358,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7358,12 +7458,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Kolonnu nosaukumi" @@ -7430,97 +7530,79 @@ msgstr "MySQL 4.0 savietojams" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funkcija" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binārais" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binārais - netiek labots" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "web servera augšupielādes direktorija" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Pievienot" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Ievietot kā jaunu rindu" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Atgriezties atpakaļ iepriekšējā lapā" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Ievietot vēl vienu rindu" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Atgriezties šajā lapā" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Vērtība" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7537,38 +7619,38 @@ msgstr "Nav" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Pk" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Nosūtīt" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Pievienot jaunu lauku" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Vai Jūs tiešām gribat " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Netika labots" @@ -7780,93 +7862,93 @@ msgstr "" msgid "This format has no options" msgstr "Šim formātam nav opciju" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "nav OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "Labi" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Ieslēgts" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Galvenās relāciju īpašības" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Rādīt iespējas" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF failu izveide" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Rādu kolonnu komentārus" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Pārlūkprogrammas transformācija" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Lūdzu skatieties dokumentāciju par to, kā atjaunot 'Column_comments' tabulu" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Saglabātie SQL vaicājumi" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL vēsture" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "Bez apraksta" @@ -7874,7 +7956,7 @@ msgstr "Bez apraksta" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7886,13 +7968,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Lietotājvārds" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Kārtošana" @@ -7906,7 +7988,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Mainīgais" @@ -7920,38 +8002,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Lietot teksta lauku" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Jebkurš hosts" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokāls" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Šis hosts" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Lietot hostu tabulu" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7965,7 +8047,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7997,101 +8079,102 @@ msgstr "Tabula %s tika izdzēsta" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Nosūtīts" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Notikuma tips" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Notikuma tips" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Labot" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Izpildīt iegrāmatoto vaicājumu" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Statuss" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Beigas" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Pilnas INSERT izteiksmes" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8122,7 +8205,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -8142,119 +8225,119 @@ msgstr "Tabula %s tika izdzēsta" msgid "Routine %1$s has been created." msgstr "Tabula %s tika izdzēsta" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Kolonnu nosaukumi" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Izveidošana" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Garums/Vērtības*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Pievienot jaunu lauku" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Pārsaukt datubāzi par" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Garums/Vērtības*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tabulas opcijas" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vaicājuma tips" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8273,41 +8356,41 @@ msgstr "Tabula %s tika izdzēsta" msgid "Trigger %1$s has been created." msgstr "Tabula %s tika izdzēsta" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Pievienot jaunu lietotāju" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "Lietotājvārds" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Laiks" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8409,7 +8492,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8419,7 +8502,7 @@ msgstr "Tabula \"%s\" neeksistē!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8427,7 +8510,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Lūdzu konfigurējiet koordinātes tabulai %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8439,27 +8522,27 @@ msgstr "Datubāzes \"%s\" shēma, %s. lapa" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Relāciju shēma" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Satura rādītājs" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atribūti" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Ekstras" @@ -8579,7 +8662,7 @@ msgstr "" msgid "Current Server" msgstr "Serveris" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Meklēt datubāzē" @@ -8598,7 +8681,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Meklēt datubāzē" @@ -8618,7 +8701,7 @@ msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" @@ -8630,11 +8713,11 @@ msgstr "Kalendārs" msgid "Columns" msgstr "Kolonnu nosaukumi" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" @@ -8730,7 +8813,7 @@ msgstr "" "Nevar inicializēt SQL pārbaudītāju. Lūdzu pārbaudiet, vai esat uzinstalējuši " "nepieciešamos PHP paplašinājumus, kā aprakstīts %sdokumentācijā%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8762,8 +8845,8 @@ msgstr "" "ar atpakaļējo slīpsvītru vai pēdiņām, lietojot šo formatu: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indekss" @@ -8817,13 +8900,13 @@ msgstr "Nav" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primārā" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Pilni teksti" @@ -8837,20 +8920,20 @@ msgstr "" msgid "after %s" msgstr "Pēc %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, 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:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8858,45 +8941,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Meklēt" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Izvēlieties laukus (kaut vienu):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Pievienot meklēšanas nosacījumus (\"where\" izteiksmes ķermenis):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Rindu skaits vienā lapā" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Attēlošanas secība:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Pārlūkot ārējās vērtības" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Izpildīt \"vaicājumu pēc parauga\" (aizstājējzīme: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9063,13 +9107,13 @@ msgstr "" msgid "Manage your settings" msgstr "Galvenās relāciju īpašības" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Labojumi tika saglabāti" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9080,7 +9124,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9111,7 +9155,7 @@ msgstr "MySQL konekcijas kārtošana" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9137,9 +9181,9 @@ msgstr "Servera versija" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Lietotājs" @@ -9264,146 +9308,146 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Nav datubāzu" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Mainīt datu kārtošanas laukus" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Mainīt datu kārtošanas laukus" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Izveidot jaunu lapu" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Lūdzu izvēlieties datubāzi" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Traditional Chinese" msgid "Toggle relation lines" msgstr "Tradicionāla ķīniešu" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Izpildīt vaicājumu" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "Rādīt visu" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "Relāciju pārskats" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Eksports" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "vaicājumā" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Pārsaukt tabulu uz" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Lietotājvārds" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Izveidot" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9418,62 +9462,62 @@ msgstr "Tabula %s tika izdzēsta" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Aizņem" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importēt failus" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Rindas nav iezīmētas" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Izveidot jaunu indeksu" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Lietotājvārds" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 #, fuzzy msgid "Internal relation added" msgstr "Iekšējās relācijas" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 #, fuzzy msgid "Relation deleted" msgstr "Relāciju pārskats" @@ -9486,89 +9530,89 @@ msgstr "" msgid "Modifications have been saved" msgstr "Labojumi tika saglabāti" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Importēt failus" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importēt failus" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Visi" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabula %s nav atrasta vai nav atzīmeta iekš %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9578,18 +9622,18 @@ msgstr "Tabula \"%s\" neeksistē!" msgid "Select binary log to view" msgstr "Izvēlieties bināro log-failu apskatei" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "Lauki" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Ierobežot parādīto vaicājumu garumu" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Rādīt pilnos vaicājumus" @@ -9605,7 +9649,7 @@ msgstr "Pozīcija" msgid "Original position" msgstr "Oriģinālā pozīcija" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informācija" @@ -9613,7 +9657,7 @@ msgstr "Informācija" msgid "Character Sets and Collations" msgstr "Rakstzīmju kodējumi un izkārtojumi" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9621,24 +9665,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s datubāzes tika veiksmīgi dzēstas." msgstr[1] "%s datubāzes tika veiksmīgi dzēstas." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Datubāzu statistika" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Ieslēgt statistiku" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9650,161 +9694,161 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Apskatīt datubāzu dampu (shēmu)" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Sākums" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "Persiešu" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Izslēgts" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Iekļauj visas privilēģijas, izņemot GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Ļauj mainīt esošo tabulu struktūru." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Ļauj veidot un dzēst indeksus." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Ļauj veidot jaunas datubāzes un tabulas." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 #, fuzzy msgid "Allows creating stored routines." msgstr "Ļauj veidot jaunas tabulas." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Ļauj veidot jaunas tabulas." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Ļauj veidot pagaidu tabulas." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 #, fuzzy msgid "Allows creating new views." msgstr "Ļauj veidot jaunas tabulas." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Ļauj dzēst datus." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Ļauj dzēst datubāzes un tabulas." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Ļauj dzēst tabulas." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Ļauj importēt/eksportēt datus no/uz failiem." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Ļauj pievienot lietotājus un privilēģijas bez privilēģiju tabulu " "pārlādēšanas." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Ļauj veidot un dzēst indeksus." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Ļauj ievietot un mainīt datus." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Ļauj bloķēt tabulas tekošajai darbībai." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Ierobežo vaicājumu skaitu, ko lietotājs var mosūtīt uz serveri stundas laikā." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9812,61 +9856,61 @@ msgstr "" "Ierobežo komandu skaitu, kas maina kas maina tabulas vai datubāzes, ko " "lietotājs var izpildīt stundas laikā." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Nedarbojas šajā MySQL versijā." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Ļauj prlādēt servera iestādījumus un iztukšot servera kešu." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dod lietotājam tiesības jautāt, kur ir replikācijas oriģināli / kopijas." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Nepieciešams replikāciju kopijām." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Ļauj lasīt datus." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Dod pieeju pilnam datubāzu sarakstam." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Ļauj apstādināt serveri." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9876,173 +9920,173 @@ msgstr "" "Nepieciešams vairumam administratīvo operāciju, kā globālo mainīgo maiņa vai " "citu lietotāju procesu nogalināšana." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Ļauj veidot un dzēst indeksus." -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Ļauj mainīt datus." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Nav privilēģiju." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nav" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Tabulu specifiskās privilēģijas" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Piezīme: MySQL privilēģiju apzīmējumi tiek rakstīti angļu valodā" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administrācija" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globālās privilēģijas" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Datubāžu specifiskās privilēģijas" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Resursu ierobežojumi" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Piezīme: Šo opciju uzstādīšana uz 0 (nulli) atceļ ierobežojumus." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Piekļuves informācija" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Nemainīt paroli" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Lietotāji netika atrasti." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Jūs pievienojāt jaunu lietotāju." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Jūs modificējāt privilēģijas objektam %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Jūs atņēmāt privilēgijas lietotājam %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Lietotāja %s parole tika veiksmīgi mainīta." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Dzēšam %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Pārlādējam privilēģijas" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Mainīt privilēģijas" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Atsaukt" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Eksports" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Jebkurš" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Privilēģijas" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilēģijas" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Lietotāju pārskats" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Piešķirt" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Dzēst izvēlētos lietotājus" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10055,51 +10099,51 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Kolonnu specifiskās privilēģijas" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Pievienot privilēģijas uz sekojošo datubāzi" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Pievienot privilēģijas uz sekojošo tabulu" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju" -#: server_privileges.php:2363 +#: server_privileges.php:2371 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:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... paturēt veco lietotāju." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... dzēst veco lietotāju no lietotāju tabulas." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10107,93 +10151,93 @@ msgstr "" " ... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt " "privilēģijas." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Lietotāji, kam ir pieja datubāzei "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "globāls" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "datubāzei specifisks" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "aizstājējzīme" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy msgid "User has been added." msgstr "Lauks %s tika izdzēsts" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10202,123 +10246,123 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Lūdzu izvēlieties datubāzi" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Pilni teksti" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Tikai struktūra" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Tikai struktūra" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Process %s tika veiksmīgi nogalināts." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10326,149 +10370,149 @@ msgstr "" "phpMyAdmin nevarēja nogalināt procesu %s. Iespējams, ka tas jau agrāk tika " "izbeigts." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 #, fuzzy msgid "Query cache" msgstr "Vaicājuma tips" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 #, fuzzy msgid "Delayed inserts" msgstr "Lietot aizturētos INSERT" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 #, fuzzy msgid "Show open tables" msgstr "Rādīt tabulas" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Izpildes laika informācija" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Atjaunot" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nemainīt paroli" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy msgid "Show only alert values" msgstr "Rādīt tabulas" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy msgid "Show unformatted values" msgstr "Rādīt tabulas" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relācijas" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Vaicājuma tips" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "Funkcija" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10476,118 +10520,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Parametrs" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Saņemts" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Nosūtīts" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Neveiksmīgi mēģinājumi" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Pārtraukts" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Komanda" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10595,78 +10639,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10674,7 +10718,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10682,42 +10726,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10725,33 +10769,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10760,243 +10804,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Tabulas kodējums:" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -11004,99 +11048,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11104,18 +11148,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11123,69 +11167,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Vaicājuma tips" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "S" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Pievienot jaunu lauku" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Atjaunot" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11194,7 +11238,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11202,18 +11246,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11221,11 +11265,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11233,90 +11277,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Pārsaukt datubāzi par" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Izvēlieties tabulas" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Pievienot jaunu lietotāju" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "SQL vaicājums" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Rindas statistika" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Iezīmēt visu" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vaicājuma tips" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11324,7 +11368,7 @@ msgid_plural "%d seconds" msgstr[0] "sekundē" msgstr[1] "sekundē" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11332,131 +11376,131 @@ msgid_plural "%d minutes" msgstr[0] "lietošanā" msgstr[1] "lietošanā" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL vaicājums" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Konekcijas" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Servera mainīgie un konfigurācija" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Sesijas vērtība" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Globālā vērtība" @@ -11748,178 +11792,178 @@ msgstr "" msgid "Wrong data" msgstr "Nav datubāzu" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Vai Jūs tiešām gribat " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pārbaudīt SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL rezultāts" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Uzģenerēja" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problēmas ar indeksiem tabulā `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Nosaukums" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Kolonnu nosaukumi" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Importēt failus" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "SQL vaicājums" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Vērtība" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Vērtība" -#: tbl_create.php:31 +#: tbl_create.php:30 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Lietotājs %s jau eksistē!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabula %s tika izdzēsta" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Apskatīt tabulas dampu (shēmu)" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Kopā" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Saglabāt kā failu" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -11937,34 +11981,34 @@ msgstr "Nevar pārsaukt indeksu par PRIMARY!" msgid "No index parts defined!" msgstr "Nav definēto indeksa daļu!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Pievienot jaunu lauku" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Add new field" msgid "Edit index" msgstr "Pievienot jaunu lauku" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Indeksa nosaukums :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" jābūt tikai un vienīgi primārās atslēgas indeksa " "nosaukumam!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Indeksa tips :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Pievienot indeksam  %s kolonn(u/as)" @@ -11987,279 +12031,279 @@ msgstr "Tabula %s tika pārvietota uz %s." msgid "Table %s has been copied to %s." msgstr "Tabula %s tika pārkopēta uz %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Tabulas nosaukums nav norādīts!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Mainīt datu kārtošanas laukus" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(atsevišķi)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Pārvietot tabulu uz (datubāze.tabula):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Tabulas opcijas" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Pārsaukt tabulu uz" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopēt tabulu uz (datubāze.tabula):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Pārslēgties uz nokopēto tabulu" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Tabulas apkalpošana" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmentēt tabulu" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabula %s tika atsvaidzināta" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Atsvaidzināt tabulu (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Dati tabulai" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Nav datubāzu" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Tabulas apkalpošana" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 #, fuzzy msgid "Check" msgstr "Čehu" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "Restaurēt tabulu" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Pārbaudīt referenciālo integritāti:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Rādīt tabulas" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Diska vietas lietošana" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efektīvs" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Rindas statistika" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamisks" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Rindas garums" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Rindas izmērs" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Iekšējās relācijas" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy msgid "Distinct values" msgstr "Pārlūkot ārējās vērtības" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add new field" msgid "Add SPATIAL index" msgstr "Pievienot jaunu lauku" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Nav" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabula %s tika izdzēsta" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Primārā atslēga pievienota uz lauka %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Indekss tieka pievienots uz %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Parādīt PHP informāciju" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Pievienot %s lauku(s)" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Izdrukas versija" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Relāciju pārskats" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Ieteikt tabulas sruktūru" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Pievienot %s lauku(s)" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Tabulas beigās" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Tabulas sākumā" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Pēc %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12415,74 +12459,41 @@ msgstr "" msgid "Create version" msgstr "Servera versija" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Izpildīt \"vaicājumu pēc parauga\" (aizstājējzīme: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "SQL vaicājums" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Atcelt" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Pieejamie MIME tipi" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME tipiem, kas parādīti slīprakstā, nav atsevišķas transformācijas " "funkcijas" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Pieejamās transformācijas" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Apraksts" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Jums nav pietiekoši tiesību, lai atrastos šeit tagad!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profils tika modificēts." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/mk.po b/po/mk.po index c8b76eb71c..2d8fdaf631 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: macedonian_cyrillic \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "прикажи ги сите" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Број на страници:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "OK" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Име на клуч" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Опис" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Користи ја оваа вредност" @@ -105,90 +105,91 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Базата на податоци %1$s е креирана" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Коментар на базата на податоци: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Коментар на табелата" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Имиња на колони" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Default" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Врски кон" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Коментари" @@ -197,14 +198,14 @@ msgstr "Коментари" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Не" @@ -217,123 +218,123 @@ msgstr "Не" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Да" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Прикажи содржина (шема) на базата" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Табелите не се пронајдени во базата на податоци." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "избери се" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "ништо" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Името на базата на податоци не е зададено!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Базата на податоци %s е преименувана во %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Базата на податоци %s е ископирана во %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Преименувај ја базата на податоци во" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Избриши ја базата на податоци." -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Базата на податоци %s не е прифатена" -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy msgid "Drop the database (DROP)" msgstr "Базата на податоци не постои" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Копирај ја базата на податоци во" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Структура и податоци" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Само податоци" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пред копирање" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Додади AUTO_INCREMENT вредност" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Додади ограничувања" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Префрли се на копираната база на податоци" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Подредување" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -345,61 +346,61 @@ msgstr "" "Дополнителните можности за работа со поврзаните табели се исклучени. За да " "дознаете зошто, кликнете %sовде%s." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Релациона шема" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Табела" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Записи" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Големина" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "се користи" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Направено" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Последна измена" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Последна проверка" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -411,122 +412,122 @@ msgstr[1] "%s табела" msgid "You have to choose at least one column to display" msgstr "Морате да изберете барем една колона за приказ" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Премини на копираната табела" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Подредуваање" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Растечки редослед" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Опаѓачки редослед" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Прикажи" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Критериум" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "и" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "или" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Промени" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Додади/избриши поле за критериум" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Додади/избриши колона" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Ажурирај" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Користи табели" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL упит на базата на податоци %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Изврши SQL" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Пристапот не е допуштен" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "барем еден од зборовите" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "сите зборови" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "точен израз" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "како регуларен израз" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати од пребарувањето за \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -534,31 +535,31 @@ msgid_plural "%1$s matches inside table %2$s" msgstr[0] "%s погодоци во табелата %s" msgstr[1] "%s погодоци во табелата %s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Приказ на податоци од табелата" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -566,260 +567,261 @@ msgid_plural "Total: %s matches" msgstr[0] "вкупно: %s погодоци" msgstr[1] "вкупно: %s погодоци" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Пребарување низ базата на податоци" -#: db_search.php:292 +#: db_search.php:295 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Зборови или вредности кои се бараат (џокер знак \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Барај:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Зборовите се одвојуваат со празно место (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "во табела(и):" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" msgstr "во табела(и):" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Табелите не се пронајдени во базата на податоци." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "непознат" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Табелата %s е испразнета" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Прегледот %s е избришан" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Табелата %s е избришана" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 #, fuzzy msgid "Replication" msgstr "Релации" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Вкупно" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s е основно складиште на овој MySQL сервер." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Обележаното:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "обележи ги сите" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Преглед за печатење" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Испразни" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Бриши" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Проверка на табелата" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Оптимизација на табелата" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Поправка на табелата" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Анализа на табелата" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Додај префикс кон табелата" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Замени го префиксот на табелата" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Копирај табела со префикс" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Речник на податоци" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "База на податоци" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Последна Верзија" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Креирано" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Ажурирано" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Статус" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Акција" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Избришете го податоците за тракирање од табелава" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 #, fuzzy msgid "Versions" msgstr "Персиски" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "Проверка на табелата" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "База на податоци" @@ -834,18 +836,18 @@ msgstr "Вид на упит" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Додади ново поле" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Нема доволно простор за снимање на податотеката %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -853,12 +855,12 @@ msgstr "" "Податотека %s постои на серверот, променете го името на податотеката или " "изберете опција за пишување врз неа." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "На веб серверот не му е допуштено да ја сочува податотеката %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Содржината на базата на податоци е сочувана во податотеката %s." @@ -868,185 +870,185 @@ msgstr "Содржината на базата на податоци е сочу msgid "Invalid export type" msgstr "Тип на извоз" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Додади ново поле" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Линиите се завршуваат со" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Додади нов корисник" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Додади нов корисник" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Додади %s полиња" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy msgid "Add geometry" msgstr "Додади нов корисник" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Маркерот е избришан." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Податотеката не е можно да се прочита" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Назад" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin преферира веб прелистувачи кои подржуваат рамки." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" командата е оневозможена." @@ -1056,7 +1058,7 @@ msgstr "\"DROP DATABASE\" командата е оневозможена." msgid "Do you really want to execute \"%s\"?" msgstr "Дали навистина сакате да " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!" @@ -1106,7 +1108,7 @@ msgstr "Додади ново поле" msgid "Edit Index" msgstr "Ажурирање на следниот запис" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -1127,16 +1129,16 @@ msgstr "Името на host-от е празно!" msgid "The user name is empty!" msgstr "Не е внесен назив на корисник!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Лозинка е празна!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Лозинките не се идентични!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1158,25 +1160,26 @@ msgstr "Избриши ги селектираните корисници" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Промени" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Избор на сервер" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "SQL упит" @@ -1187,24 +1190,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Вкупно" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1226,7 +1229,7 @@ msgstr "Избор на сервер" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 #, fuzzy msgid "Processes" msgstr "Листа на процеси" @@ -1247,7 +1250,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "Статистики за записите" @@ -1292,14 +1295,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1361,32 +1364,32 @@ msgstr "" msgid "Bytes received" msgstr "Примено" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Конекции" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "бајти" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1402,11 +1405,11 @@ msgstr "%s табела" msgid "Questions" msgstr "Персиски" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Сообраќај" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1430,11 +1433,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "нема" @@ -1534,7 +1537,7 @@ msgstr "Општи особини на релациите" msgid "Current settings" msgstr "Општи особини на релациите" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1622,7 +1625,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Време" @@ -1730,10 +1733,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Извоз" @@ -1788,9 +1791,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1804,11 +1807,11 @@ msgstr "Локален" msgid "Processing Request" msgstr "Листа на процеси" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Не е избрана ни една база на податоци." @@ -1820,9 +1823,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "ОК" @@ -1878,19 +1881,19 @@ msgstr "Додади ново поле" msgid "Show indexes" msgstr "Прикажи мрежа" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Исклучи проверка на надворешни клучеви" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Овозможено" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1928,7 +1931,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1970,8 +1973,8 @@ msgstr "SQL упит" msgid "No rows selected" msgstr "Нема селектирани записи" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Промени" @@ -1979,18 +1982,18 @@ msgstr "Промени" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Сочувај" @@ -2004,7 +2007,7 @@ msgstr "SQL упит" msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2056,12 +2059,12 @@ msgstr "SQL резултат" msgid "Data point content" msgstr "Големина на покажувачите на податоци" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Игнорирај" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Копирај" @@ -2083,7 +2086,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2176,7 +2179,7 @@ msgstr "Генерирај" msgid "Change Password" msgstr "Промена на лозинка" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2290,27 +2293,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2318,37 +2321,37 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "дек" @@ -2397,32 +2400,32 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Саб" @@ -2555,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "во секунда" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "во минута" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "на час" @@ -2585,45 +2588,261 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +msgid "Save edited data" +msgstr "Основен директориум на податоците" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Додади/избриши колона" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Почеток" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Претходна" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Следен" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Крај" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Саб" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows per page" +msgid "Number of rows" +msgstr "Број на записи на страница" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Пон" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "хоризонтален" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "хоризонтален (ротирани заглавија)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "вертикален" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Изврши запамтен упит" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Подредување по клуч" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "Операции" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Дел на текстот" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Полн текст" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "Релациона шема" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Релациона шема" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Транформации на веб прелистувачот" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Записот е избришан" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Прекини" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Бројот на записи може да биде приближен. За подетални информации види FAQ " +"3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "во упитот" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Приказ на записи од" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "вкупно" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "време на извршување на упитот %01.4f секунди" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Преглед за печатење (целосен текст)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Прикажи PDF шема" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Верзија на серверот" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Врската не е пронајдена" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." @@ -2632,26 +2851,41 @@ msgstr "" "Бројот на записи може да биде приближен. За подетални информации види FAQ " "3.11" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "вашиот веб прелистувач треба да допушти cookies" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "вашиот веб прелистувач треба да допушти cookies" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Клучеви" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Единствен" @@ -2664,8 +2898,8 @@ msgstr "" msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2687,130 +2921,130 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "База на податоци" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Сервер" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Структура" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Нов запис" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Операции" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Упит по пример" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Привилегии" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Рутини" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Корисник" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Бинарен дневник" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Променливи" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Кодни страници" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Складишта" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Грешка" @@ -2837,7 +3071,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Нема селектирани записи" msgstr[1] "Нема селектирани записи" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2928,16 +3162,107 @@ 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 +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 +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 +msgid "Value" +msgstr "Вредност" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Пребарување" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Нов запис" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Избери полиња (најмалку едно)" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Додади услови за пребарување (делот \"WHERE\" од упитот):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Број на записи на страница" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Редослед на приказ:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Прегледни ги надворешните вредности" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "SQL упит" + +#: 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 "Направи \"упит по пример\" (џокер знак: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Направи \"упит по пример\" (џокер знак: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Поништи" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "превземи" @@ -2956,7 +3281,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3253,20 +3578,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Не може да се поврзам: лоши подесувања." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%s Добредојдовте" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3282,48 +3607,42 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "вашиот веб прелистувач треба да допушти cookies" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Најави се" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Корисничко име:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Лозинка:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Избор на сервер" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "вашиот веб прелистувач треба да допушти cookies" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" @@ -3331,13 +3650,13 @@ msgstr "" "Немаше никаква активност %s или повеќе секунди, ве молиме најавете се " "повторно" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Не можам да се пријавам на MySQL серверот" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Погрешно корисничко име/лозинка. Пристапот не е допуштен." @@ -3369,7 +3688,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Табели" @@ -3381,13 +3700,13 @@ msgstr "Табели" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Податоци" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Пречекорување" @@ -3414,30 +3733,22 @@ msgstr "Провери привилегии за базата на подато msgid "Check Privileges" msgstr "Провери привилегии" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3449,218 +3760,196 @@ msgstr "" "$cfg['PmaAbsoluteUri'] директивата МОРА да биде подесена во " "конфигурациската податотека!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" "Би требало да го надоградите вашиот %s сервер на верзија %s или понова." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Максимална големина: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Документација" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL упит" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL порака: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Прескокни ги објаснувањата на SQL-от" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Освежи" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Прескокни ја проверката на SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Провери SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Складишта" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Нед" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. во %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s денови, %s часови, %s минути и %s секунди" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Рутини" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Почеток" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Претходна" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Следен" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Крај" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Премин на базата "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директориум за праќање на веб серверот " -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Директориумот кој го избравте за праќање не е достапен" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Печати" @@ -3692,8 +3981,8 @@ msgid "Closed" msgstr "Наводникот не е затворен" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Оневозможено" @@ -3845,9 +4134,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Поништи" @@ -4058,10 +4347,6 @@ msgstr "Предложи структура на табелата" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4120,7 +4405,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Сочувај како податотека" @@ -4130,7 +4415,7 @@ msgid "Character set of the file" msgstr "Кодна страна на податотеката:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Формат" @@ -4249,7 +4534,7 @@ msgid "MIME type" msgstr "MIME-типови" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Релации" @@ -5786,9 +6071,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Лозинка" @@ -6064,32 +6349,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Бројот на записи може да биде приближен. За подетални информации види FAQ " -"3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Промена на лозинка" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Нема лозинка" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Повтори внес" @@ -6114,13 +6391,13 @@ msgstr "Креирај нова база на податоци" msgid "Create" msgstr "Креирај" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Нема привилегии" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "Направи нова страница" @@ -6128,9 +6405,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Име" @@ -6316,25 +6593,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Верзија на серверот" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Верзија на серверот" @@ -6445,197 +6722,29 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -msgid "Save edited data" -msgstr "Основен директориум на податоците" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Додади/избриши колона" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Саб" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of rows" -msgstr "Број на записи на страница" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Пон" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "хоризонтален" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "хоризонтален (ротирани заглавија)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "вертикален" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Изврши запамтен упит" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Подредување по клуч" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "Операции" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Дел на текстот" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Полн текст" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "Релациона шема" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Релациона шема" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Транформации на веб прелистувачот" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Записот е избришан" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Прекини" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "во упитот" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Приказ на записи од" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "вкупно" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "време на извршување на упитот %01.4f секунди" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Преглед за печатење (целосен текст)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Прикажи PDF шема" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Верзија на серверот" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Врската не е пронајдена" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Информации за верзијата" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Основен директориум на податоците" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Заеднички дел на патеката до директроиумот за сите InnoDB датотеки со " "податоци." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Податотеки со податоци" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Чекор на автоматско проширување" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6643,11 +6752,11 @@ msgstr "" " Големина на чекорот на проширување на големината на табелите кои автоматски " "се прошируваат кога ќе се наполнат." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Големина на баферот" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6655,79 +6764,79 @@ msgstr "" "Големина на меморискиот бафер кој го користи InnoDB за кеширање на податоци " "и за индексите на своите табели." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Бафер" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB статус" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Искористеност на баферот" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "страница" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Слободни страници" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Валкани страници" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Страници со податоци" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Страници кои треба да бидат ускладени" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Зафатени страници" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Заглавени страници" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Активност на баферот" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Барања за читање" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Барање за упис" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Промашувања при читање" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Чекања на упис" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Промашувања при читање во %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Чекања на упис во %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Големина на покажувачите на податоци" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6735,11 +6844,11 @@ msgstr "" "Default големина на покажувачите во бајти, се користи при CREATE TABLE за " "MyISAM табелите кога не е зададена опцијата MAX_ROWS" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Режим на автоматско опоравување" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6747,11 +6856,11 @@ msgstr "" "Режим на автоматско опоравување на оштетени MyISAM табели, подесен при " "стартовање на серверот со опцијата --myisam-recover." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Максимална големина на привремените податотеки за подредување" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6761,11 +6870,11 @@ msgstr "" "при повторно креирање на MyISAM индекси (во тек REPAIR TABLE, ALTER TABLE, " "или LOAD DATA INFILE операции)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Максимална голема на привремени податотеки при креирање на индекси" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6775,11 +6884,11 @@ msgstr "" "индекси биде поголема отколку при користење на кешот за овде зададената " "вредност, користи го методот на кеширања на клучевите" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Нишки на поправка" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6788,11 +6897,11 @@ msgstr "" "креираат (секој индекс во сопствена нишка) за време на процесот на поправка " "со подредување." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Големина на меѓупросторот за подредување" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6801,72 +6910,72 @@ msgstr "" "операцијата REPAIR TABLE или при креирање на индекси со CREATE INDEX или " "ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6874,49 +6983,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 #, fuzzy msgid "Log buffer size" msgstr "Големина на меѓупросторот за подредување" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6924,20 +7033,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Релации" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6997,15 +7106,15 @@ msgstr "Приказ на податоци од табелата" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Пратено" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7080,14 +7189,14 @@ msgstr "Достапни MIME-типови" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Host" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Време на креирање" @@ -7288,21 +7397,12 @@ msgstr "Поглед" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." @@ -7397,12 +7497,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Имиња на колони" @@ -7469,22 +7569,17 @@ msgstr "MySQL 4.0 компатибилно" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Функција" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Бинарен" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, fuzzy #| msgid "Because of its length,
    this field might not be editable " msgid "Because of its length,
    this column might not be editable" @@ -7492,76 +7587,63 @@ msgstr "" "Поради големина на полето
    можеби нема да може да ја менувате неговата " "содржина" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Бинарен - не менувај" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "директориум за праќање на веб серверот" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Нов запис" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Внеси како нов запис" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Назад на претходната страница" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Додади уште еден нов запис" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Врати се на оваа страница" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Ажурирање на следниот запис" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Вредност" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7578,38 +7660,38 @@ msgstr "нема" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Пет" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Испрати" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Додади ново поле" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Дали навистина сакате да " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Нема измени" @@ -7821,94 +7903,94 @@ msgstr "" msgid "This format has no options" msgstr "Не постојат опции за овој формат" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "не е како што треба" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "ОК" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Овозможено" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Општи особини на релациите" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Прикажи својства" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Креирање на PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Прикажувам коментари на колоните" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Транформации на веб прелистувачот" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Ве молиме погледнете во документацијата за тоа како се ажурира табелата " "Column_comments" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Запамтен SQL упит" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL историја" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "нема опис" @@ -7916,7 +7998,7 @@ msgstr "нема опис" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7928,13 +8010,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Назив на корисник" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Подредуваање" @@ -7948,7 +8030,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Променлива" @@ -7962,38 +8044,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Било кој корисник" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Користи текст поле" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Било кој host" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Локален" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Овој host" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Користи ја табелата на host-от" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8007,7 +8089,7 @@ msgstr "Генерирање на лозинка" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8039,100 +8121,101 @@ msgstr "Табелата %s е избришана" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Пратено" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy msgid "Error in processing request" msgstr "Листа на процеси" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Вид на настан" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Вид на настан" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Промени" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Изврши запамтен упит" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Статус" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Крај" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Комплетен INSERT (со имиња на полињата)" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8163,7 +8246,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -8183,122 +8266,122 @@ msgstr "Табелата %s е избришана" msgid "Routine %1$s has been created." msgstr "Табелата %s е избришана" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Рутини" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Рутини" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Направено" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Должина/Вредност*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Додади ново поле" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Избриши ја базата на податоци." -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Должина/Вредност*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Опции на табелата" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Вид на упит" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дозволува извршување на stored рутини." -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8319,41 +8402,41 @@ msgstr "Табелата %s е избришана" msgid "Trigger %1$s has been created." msgstr "Табелата %s е избришана" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Додади нов корисник" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "Назив на корисник" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Време" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8455,7 +8538,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8465,7 +8548,7 @@ msgstr "Табелата \"%s\" не постои!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8473,7 +8556,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Подесете ги координатите за табелата %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8485,27 +8568,27 @@ msgstr "Шема на базата \"%s\" - Страница %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Релациона шема" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Содржина" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Атрибути" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Дополнително" @@ -8625,7 +8708,7 @@ msgstr "" msgid "Current Server" msgstr "Сервер" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Пребарување низ базата на податоци" @@ -8644,7 +8727,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Пребарување низ базата на податоци" @@ -8664,7 +8747,7 @@ msgstr "Изврши SQL упит(и) на базата %s" msgid "Run SQL query/queries on database %s" msgstr "Изврши SQL упит(и) на базата %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" @@ -8676,11 +8759,11 @@ msgstr "Календар" msgid "Columns" msgstr "Имиња на колони" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Запамти SQL упит" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "дади дозвола на секој корисник да пристапува на овој упит." @@ -8775,7 +8858,7 @@ msgstr "" "SQL валидаторот не можеше да биде стартуван. Проверете да ли се инсталирани " "неопходните PHP екстензии опишане во %sдокументацијата%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8806,8 +8889,8 @@ msgstr "" "во следниов облик: а" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Клуч" @@ -8861,13 +8944,13 @@ msgstr "нема" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Примарен" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Текст клуч" @@ -8881,20 +8964,20 @@ msgstr "" msgid "after %s" msgstr "после полето %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Додади %s полиња" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Морате да изберете барем една колона за приказ" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Вид на складиште" @@ -8902,45 +8985,6 @@ msgstr "Вид на складиште" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Пребарување" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Избери полиња (најмалку едно)" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Додади услови за пребарување (делот \"WHERE\" од упитот):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Број на записи на страница" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Редослед на приказ:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Прегледни ги надворешните вредности" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Направи \"упит по пример\" (џокер знак: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9125,13 +9169,13 @@ msgstr "" msgid "Manage your settings" msgstr "Општи особини на релациите" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Измените се сочувани" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9142,7 +9186,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9173,7 +9217,7 @@ msgstr "Колација за MySQL врска" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9199,9 +9243,9 @@ msgstr "Верзија на серверот" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Корисник" @@ -9332,146 +9376,146 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Базата на податоци не постои" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Промени го редоследот во табелата" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Промени го редоследот во табелата" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Направи нова страница" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Изберете база на податоци" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Traditional Chinese" msgid "Toggle relation lines" msgstr "Традиционален кинески" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Изврши SQL" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "прикажи ги сите" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "Релационен поглед" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Извоз" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "во упитот" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Промени го името на табелата во " -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Назив на корисник" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Креирај" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9486,62 +9530,62 @@ msgstr "Табелата %s е избришана" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "страница" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Увоз на податотека" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Нема селектирани записи" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Креирај нов клуч" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Назив на корисник" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 #, fuzzy msgid "Internal relation added" msgstr "Внатрешни релации" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 #, fuzzy msgid "Relation deleted" msgstr "Релационен поглед" @@ -9554,89 +9598,89 @@ msgstr "" msgid "Modifications have been saved" msgstr "Измените се сочувани" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Увоз на податотека" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Увоз на податотека" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Се" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s табелата не е пронајдена или не е поставена во %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9646,18 +9690,18 @@ msgstr "Табелата \"%s\" не постои!" msgid "Select binary log to view" msgstr "Изберете бинарен дневник за преглед" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "Полиња" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Прикажи скратени упити" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Прикажи комплетни упити" @@ -9673,7 +9717,7 @@ msgstr "Позиција" msgid "Original position" msgstr "Оргинална позиција" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Информации" @@ -9681,7 +9725,7 @@ msgstr "Информации" msgid "Character Sets and Collations" msgstr "Кодни страници и подредување" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9689,24 +9733,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s базата на податоци успешно е избришана." msgstr[1] "%s базата на податоци успешно е избришана." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Статистика на базата на податоци" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Вклучи статистики" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9718,160 +9762,160 @@ msgstr "" msgid "Storage Engines" msgstr "Видови на складишта" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Прикажи содржина (шема) на базите" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Почеток" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "Персиски" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Оневозможено" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Ги вклучува сите привилегии освен GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Дозволува промена на структурата на постоечките табели." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Дозволува промена и бришење на stored рутини." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Дозволува креирање на нови бази на податоци и табели." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Дозволува креирање на stored рутини." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Дозволува креирање на нови табела." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Дозволува креирање на привремени табели..." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозволува креирање, бришење и преименување на корсиничките имиња." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Дозволува креирање на нови погледи." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Дозволува бришење на податоци." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Дозволува бришење на бази на податоци и табели." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Дозволува бришење на табели." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Дозволува извршување на stored рутини." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Дозволува увоз на податоци и нивен извоз во податотеки." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозволува додавање на корисници и привилегии без повтроно вчитавање на " "табелата на привилегии." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Дозволува креирање и бришење на клучева." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Дозволува вметнување и замена на података." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Дозволува заклучување на табели на тековните процеси." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Го ограничува бројот на упити кои корисникот може да ги постави на серверот " "за еден час." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9879,63 +9923,63 @@ msgstr "" "Го ограничува бројот на команди кои ги менуваат табелите или базите на " "податоци кои корисникот може да ги изврши за еден час." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Нема ефект во оваа верзији на MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозволува повтоно вчитување на подесувањата на серверот и празнење на кешот " "на серверот." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава права на кориснику да праша каде се главните/помошни сервери." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Потребно заради помошните сервери за репликација." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Дозволува читање на податоци." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Дава пристап на комплетната листа на базите на податоци." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозволува извршување на SHOW CREATE VIEW упити." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Дозволува гасење на серверот." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9945,177 +9989,177 @@ msgstr "" "Неопходно за повеќето административни опции како што е подесување на " "глобални променливи или прекин на процеси наостанатите корисници." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Дозволува креирање и бришење на клучева." -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Дозволува измена на податоци." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Нема привилегии." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "нема" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Привилегии поврзани со табелата" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" "Напомена: MySQL имињата на привилегите мора да бидат со латинични букви" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Администрација" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Глобални привилегии" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Привилегии во врска со базата на податоци" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Ограничување на ресурси" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Напомена: Поставувањето на овие опции на 0 (нула) ги отстранува " "ограничувањата." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Податоци за најавувањето" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Немој да ја менуваш лозинката" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисникот не е пронајден." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s веќе постои!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Додадовте нов корисник." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Ги ажуриравте привилегиите за %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ги забранивте привилегиите за %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинката за %s успешно е променета." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Бришам %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Повторно ги вчитувам привилегиите" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Изабраните корисници успешно се избришани." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Привилегиите се успешно вчитани." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Промена на привилегии" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Забрани" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Извоз" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Било кој" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Привилегии" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегии" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Преглед на корисници" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Овозможи" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Избриши ги селектираните корисници" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" "Избриши ги базите на податоци кои се именувани исто како и корисниците." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10129,49 +10173,49 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Привилегии врзани за колоните" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Додади привилегии на следната база" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Пред џокер знаците _ и % треба да стои знакот \\ ако ги користите самостојно" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Додади привилегии на следната табела" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Промени ги информациите за најавувањето / Копирај го корисникот" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Направи нов корисник со исти привилегии и ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... сочувај го стариот." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... избриши ги старите од табелата на корисници." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... прво одземи ги сите привилегии на корисниците а потоа избриши ги." -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10179,94 +10223,94 @@ msgstr "" " ... избриши го стариот корисник од табелата на корисници а потоа повторно " "вчитај ги привилегиите." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегии за базата на податоци "%s"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Корисници кои имаат пристап "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "глобално" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "Специфично за базата на податоци" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "џокер" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "Прегледот %s е избришан" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Привилегиите се успешно вчитани." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10275,272 +10319,272 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Изберете база на податоци" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Текст клуч" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Само структура" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Само структура" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесот %s е успешно прекинат." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin не можеше да го прекине процесот %s. Веројатно веќе е затворен." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 #, fuzzy msgid "Query cache" msgstr "Вид на упит" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 #, fuzzy msgid "Delayed inserts" msgstr "Користи одложен внес" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 #, fuzzy msgid "Show open tables" msgstr "Прикажи табели" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Информации за работата" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Освежи" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Немој да ја менуваш лозинката" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy msgid "Show only alert values" msgstr "Прикажи табели" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy msgid "Show unformatted values" msgstr "Прикажи табели" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Релации" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Вид на упит" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "Функција" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10548,119 +10592,119 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Име" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Примено" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Пратено" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Неуспешни обиди" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Прекинато" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Наредба" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10668,78 +10712,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10747,7 +10791,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10755,42 +10799,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10798,33 +10842,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10833,243 +10877,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Кодна страна на податотеката:" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -11077,99 +11121,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11177,18 +11221,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11196,69 +11240,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Вид на упит" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Саб" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Додади ново поле" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Освежи" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Додади/избриши колона" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11267,7 +11311,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11275,18 +11319,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11294,11 +11338,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11306,90 +11350,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Избриши ја базата на податоци." -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Избери табели" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Додади нов корисник" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "SQL упит" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Статистики за записите" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "избери се" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Вид на упит" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11397,7 +11441,7 @@ msgid_plural "%d seconds" msgstr[0] "во секунда" msgstr[1] "во секунда" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11405,131 +11449,131 @@ msgid_plural "%d minutes" msgstr[0] "се користи" msgstr[1] "се користи" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL упит" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Конекции" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Серверски променливи и подесувања" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Вредност на сесијата" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Глобална вредност" @@ -11821,180 +11865,180 @@ msgstr "" msgid "Wrong data" msgstr "Базата на податоци не постои" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Дали навистина сакате да " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL резултат" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Генерирал" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирање на табелата `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Назив" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Изабраните корисници успешно се избришани." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Изабраните корисници успешно се избришани." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "мар" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Имиња на колони" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Складишта" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Увоз на податотека" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "SQL упит" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Вредност" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Вредност" -#: tbl_create.php:31 +#: tbl_create.php:30 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Корисник %s веќе постои!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Табелата %s е избришана" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Прикажи содржина (шема) на табелите" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Додади/избриши колона" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Вкупно" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Сочувај како податотека" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -12012,32 +12056,32 @@ msgstr "Не можам да го променам клучот во PRIMARY (п msgid "No index parts defined!" msgstr "Делови од клучот не се дефинирани!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Додади ново поле" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Add new field" msgid "Edit index" msgstr "Додади ново поле" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Име на клуч :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" може да биде име само на примарниот клуч!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Тип на клуч :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Додади во клучот  %s колона(и)" @@ -12060,279 +12104,279 @@ msgstr "Табелата %s е преместена во %s." msgid "Table %s has been copied to %s." msgstr "Табелата %s е копирана во %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Името на табелата е празно!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Промени го редоследот во табелата" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(по едно поле)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Премести ја табелата во (база.табела):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Опции на табелата" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Промени го името на табелата во" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Копирај ја табелата во (база.табела):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Премини на копираната табела" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Можете да извршите:" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Дефрагментирај ја табелата" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Табелата %s е освежена" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Освежување на табелата (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Приказ на податоци од табелата" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Базата на податоци не постои" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Можете да извршите:" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 #, fuzzy msgid "Check" msgstr "Чешки" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "Поправка на табелата" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Провери го референцијалниот интегритет:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Прикажи табели" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Големина" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Ефективни" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Статистики за записите" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "динамички" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Должина на запис" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Големина на запис" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Внатрешни релации" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy msgid "Distinct values" msgstr "Прегледни ги надворешните вредности" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add new field" msgid "Add SPATIAL index" msgstr "Додади ново поле" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "нема" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Табелата %s е избришана" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Примарниот клуч %s е додаден" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Клучот е додаден %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Прикажи информации за PHP" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Додади %s полиња" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Преглед за печатење" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Релационен поглед" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Предложи структура на табелата" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Додади %s полиња" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "на крајот од табелата" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "на почетокот од табелата" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "после полето %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Направи клуч на %s колони" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12489,73 +12533,40 @@ msgstr "" msgid "Create version" msgstr "Верзија на серверот" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Направи \"упит по пример\" (џокер знак: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "SQL упит" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Поништи" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Достапни MIME-типови" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-типовите прикажани во курзив немаат одвоене функции на трансформација." -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Достапни трансформации" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Опис" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Немате право на пристап овде!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Профилот е променет" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/ml.po b/po/ml.po index 1984d23eff..0e559c9027 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2011-09-27 08:42+0200\n" "Last-Translator: \n" "Language-Team: Malayalam \n" @@ -16,79 +16,79 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "എല്ലാം കാണിക്കൂ" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "താൾ:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "പോകൂ" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "കീനാമം" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "വിവരണം" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "ഈ വില ഉപയോഗിക്കൂ" @@ -104,88 +104,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "വിവരശേഖര അഭിപ്രായം: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "നിര" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "ശൂന്യം" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "സ്വതേ" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "കണ്ണികൾ" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "അഭിപ്രായങ്ങൾ" @@ -194,14 +195,14 @@ msgstr "അഭിപ്രായങ്ങൾ" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "ഇല്ല" @@ -214,181 +215,181 @@ msgstr "ഇല്ല" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "അതേ" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "വിവരശേഖരത്തിൽ ഒരു പട്ടികയും കണ്ടെത്താനായില്ല." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "ഒന്നും തിരഞ്ഞെടുക്കാതിരിക്കുക" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "വിവരശേഖരത്തിനു പേര് നൽകിയിട്ടില്ല!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "%s എന്ന വിവരശേഖരം %s എന്ന പേരിലേക്ക് മാറ്റിയിരിക്കുന്നു" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "%s എന്ന വിവരശേഖരം %s എന്ന പേരിലേക്ക് പകർത്തിയിരിക്കുന്നു" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "വിവരശേഖരത്തിന്റ്റ പേര് മാറ്റുക" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "വിവരശേഖരം നീക്കുക" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "വിവരശേഖരം ഉപേക്ഷിക്കുക (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "വിവരശേഖരം പകർത്തുക" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "ഘടന മാത്രം" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "ഘടനയും വിവരവും" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "വിവരം മാത്രം" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "%s ചേർക്കുക" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "നിബന്ധന" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "പട്ടിക" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "വരികൾ" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "വലിപ്പം" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "ഉപയോഗത്തിൽ" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "സൃഷ്‌ടി" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "അവസാനം നവീകരിച്ചത്" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "അന്തിമ പരിശോധന" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -399,395 +400,396 @@ msgstr[1] "%s പട്ടികകൾ" msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "തരംതിരിക്കുക" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "ആരോഹണം" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "അവരോഹണം" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "പ്രദർശിപ്പിക്കുക" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "മാനദണ്ഡം" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "ചേര്‍ക്കുക" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "ഉം" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "മായ്ക്കുക" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "അല്ലെനങ്കിൽ" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "തിരുത്തുക" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "മാനദണ്ഡ വരികൾ ചേർക്കുക/മായക്കുക" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "അഭ്യര്‍ത്ഥന നവീകറിക്കുക" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "പട്ടികകൾ ഉപയോഗിക്കുക" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "അഭ്യർത്ഥന സമർപ്പിക്കുക" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "" -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "" @@ -799,27 +801,27 @@ msgstr "" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -828,174 +830,174 @@ msgstr "" msgid "Invalid export type" msgstr "" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -1004,7 +1006,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1044,7 +1046,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "" @@ -1062,16 +1064,16 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "" @@ -1088,23 +1090,24 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "" @@ -1114,24 +1117,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "" @@ -1151,7 +1154,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "" @@ -1169,7 +1172,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "" @@ -1210,14 +1213,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "" @@ -1269,32 +1272,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "" @@ -1310,11 +1313,11 @@ msgstr "%s പട്ടിക" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "" @@ -1334,11 +1337,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "" @@ -1431,7 +1434,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "" @@ -1509,7 +1512,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "" @@ -1599,10 +1602,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1650,9 +1653,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1664,11 +1667,11 @@ msgstr "" msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1680,9 +1683,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "" @@ -1722,15 +1725,15 @@ msgstr "" msgid "Show indexes" msgstr "" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "" @@ -1758,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1797,8 +1800,8 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "" @@ -1806,18 +1809,18 @@ msgstr "" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "" @@ -1829,7 +1832,7 @@ msgstr "" msgid "Show search criteria" msgstr "" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "" @@ -1873,12 +1876,12 @@ msgstr "" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -1898,7 +1901,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "" @@ -1981,7 +1984,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "" @@ -2070,63 +2073,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "" @@ -2164,32 +2167,32 @@ msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "" @@ -2302,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "" @@ -2332,70 +2335,266 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "" @@ -2408,8 +2607,8 @@ msgstr "" msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "" @@ -2430,128 +2629,128 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "" @@ -2576,7 +2775,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2664,16 +2863,96 @@ 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 +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 +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 +msgid "Value" +msgstr "" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2692,7 +2971,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -2981,20 +3260,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3006,58 +3285,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "" @@ -3089,7 +3364,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "" @@ -3101,13 +3376,13 @@ msgstr "" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "" @@ -3132,233 +3407,211 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "അച്ചടിക്കുക" @@ -3388,8 +3641,8 @@ msgid "Closed" msgstr "" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "" @@ -3530,9 +3783,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "" @@ -3736,10 +3989,6 @@ msgstr "വിവരശേഖര അഭിപ്രായം: " msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3792,7 +4041,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "" @@ -3801,7 +4050,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "" @@ -3905,7 +4154,7 @@ msgid "MIME type" msgstr "" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "" @@ -5359,9 +5608,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -5628,30 +5877,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "" @@ -5672,22 +5915,22 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -5838,25 +6081,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -5963,383 +6206,238 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6347,48 +6445,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6396,18 +6494,18 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6454,14 +6552,14 @@ msgstr "" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6519,14 +6617,14 @@ msgstr "" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "" @@ -6711,21 +6809,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6818,12 +6907,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "" @@ -6888,91 +6977,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6987,32 +7060,32 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "" @@ -7222,90 +7295,90 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "" @@ -7313,7 +7386,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7325,13 +7398,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7344,7 +7417,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "" @@ -7358,38 +7431,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7403,7 +7476,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7434,88 +7507,89 @@ msgstr "" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7544,7 +7618,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7563,105 +7637,105 @@ msgstr "" msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -7679,36 +7753,36 @@ msgstr "" msgid "Trigger %1$s has been created." msgstr "" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -7792,7 +7866,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -7801,7 +7875,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -7809,7 +7883,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -7820,27 +7894,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "" @@ -7946,7 +8020,7 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -7964,7 +8038,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -7983,7 +8057,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -7992,11 +8066,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8078,7 +8152,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8098,8 +8172,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "" @@ -8143,13 +8217,13 @@ msgstr "" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "" @@ -8162,17 +8236,17 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8180,41 +8254,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8322,11 +8361,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8337,7 +8376,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8364,7 +8403,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "" @@ -8384,9 +8423,9 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "" @@ -8494,126 +8533,126 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "" @@ -8625,51 +8664,51 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "" @@ -8681,87 +8720,87 @@ msgstr "" msgid "Modifications have been saved" msgstr "" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "" @@ -8769,17 +8808,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -8795,7 +8834,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "" @@ -8803,7 +8842,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -8811,24 +8850,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." msgstr[1] "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -8838,369 +8877,369 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9209,138 +9248,138 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9349,251 +9388,251 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -9601,115 +9640,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -9717,78 +9756,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -9796,7 +9835,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -9804,42 +9843,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -9847,33 +9886,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -9882,242 +9921,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10125,99 +10164,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10225,18 +10264,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10244,61 +10283,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10307,7 +10346,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10315,18 +10354,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10334,11 +10373,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10346,214 +10385,214 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -10837,157 +10876,157 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "നിര" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "" @@ -11003,28 +11042,28 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11047,258 +11086,258 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show all" msgid "Showing tables" msgstr "എല്ലാം കാണിക്കൂ" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Use this value" msgid "Distinct values" msgstr "ഈ വില ഉപയോഗിക്കൂ" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add/Delete columns" msgid "Move columns" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -11446,65 +11485,37 @@ msgstr "" msgid "Create version" msgstr "" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "വിവരണം" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/mn.po b/po/mn.po index c7b4d48869..58552a0813 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" @@ -13,21 +13,21 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Бүгдийг харах" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Хуудасны дугаар:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -36,58 +36,58 @@ msgstr "" "Зорилтот хөтчийн цонх шинэчлэгдсэнгүй. Магадгүй та эх цонхыг хаасан эсвэл " "таны хөтөч хамгаалалтын тохиргооны улмаас шинэчлэлтийг хориглогдсон" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Яв" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Түлхүүрийн нэр" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Тайлбар" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Уг утгыг хэрэглэх" @@ -103,90 +103,91 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "ӨС-ийн тайлбар: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Хүснэгтийн тайлбар" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Баганын нэрс" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Хоосон" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Анхдагч" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Холбоос" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Тайлбар" @@ -195,14 +196,14 @@ msgstr "Тайлбар" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Үгүй" @@ -215,126 +216,126 @@ msgstr "Үгүй" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Тийм" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "ӨС-ийн схем харах" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "ӨС-д хүснэгт олдсонгүй." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Бүгдийг сонгох" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Бүх сонгосныг болих" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Өгөгдлийн сангийн нэр хоосон!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "ӨС %s-н нэр нь %s-ээр солигджээ" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "ӨС %s нь %s руу хуулагдлаа" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:470 +#: db_operations.php:476 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "%s өгөгдлийн сан устгагдсан." -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy #| msgid "Copy database to" msgid "Drop the database (DROP)" msgstr "Өгөгдлийн сан хуулах нь" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Өгөгдлийн сан хуулах нь" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Зөвхөн бүтэц" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Бүтэц ба өгөгдөл" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Зөвхөн өгөгдөл" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "хуулахын өмнө CREATE DATABASE" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Нэмэх %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT утга нэмэх" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Тогтмол нэмэх" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Хуулагдсан ӨС руу шилжих" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Жишилт" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| "ditional features for working with linked tables have been ctivated. To d " @@ -346,61 +347,61 @@ msgstr "" "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s " "дарж шалгах." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Хамааралтай схем" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Хүснэгт " -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Мөрүүд" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Хэмжээ" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "хэрэглэгдэж байна" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Үүсгэлт" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Сүүлийн шинэчлэл" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Сүүлийн шалгалт" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -412,122 +413,122 @@ msgstr[1] "%s хүснэгт(үүд)" msgid "You have to choose at least one column to display" msgstr "Харуулахын тулд ядаж нэг багана сонго" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Хуулагдсан хүснэгт рүү шилжих" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Эрэмбэлэх" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Өсөхөөр" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Буурахаар" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Харах" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Хэмжүүр" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Оруулах" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "БА" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Устгах" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Эсвэл" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Өөрчлөх" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Мөр Нэмэх/устгах" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Багана нэмэх/устгах" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Update асуулт" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Хүснэгт хэрэглэх" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "ӨС %s дахь SQL-асуулт:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Асуултыг илгээх" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Хандах эрхгүй" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "Үгүүдийн ядаж нэгээр" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "бүх үг" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "яг цав өгүүлбэр" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Хайлтын үр дүн \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -535,31 +536,31 @@ msgid_plural "%1$s matches inside table %2$s" msgstr[0] "%s олдоц(ууд) хүснэгт %s-д" msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Хүснэгтийн өгөгдлийг устгах" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -567,260 +568,261 @@ msgid_plural "Total: %s matches" msgstr[0] "Нийт: %s олдоц(ууд)" msgstr[1] "Нийт: %s олдоц(ууд)" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Өгөгдлийн санд хайх" -#: db_search.php:292 +#: db_search.php:295 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Үг(үүд) ба утга(ууд) -ыг хайх (түлхүүр \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Хайх:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Їгнїїд хоосон зайгаар (\" \") хуваагдана." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Хүснэгт(үүд) дотор:" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" msgstr "Хүснэгт(үүд) дотор:" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "ӨС-д хүснэгт олдсонгүй." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "үлмэдэх" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Хүснэгт %s нь хоослогдлоо" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Харц %s нь устгагдсан" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Хүснэгт %s нь устгагдлаа" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Олшруулалт" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Нийт" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Сонгогдсонтой:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Бүгдийг чагтлах" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Гаргах" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Хэвлэхээр харах" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Хоосон" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Устгах" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Хүснэгт шалгах" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Хүснэгтийг зүгшрүүлэх" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Хүснэгт засах" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Хүснэгтийг задлах" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Өгөгдлийн толь" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "ӨС" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Статус" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Үйлдэл" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "" @@ -833,30 +835,30 @@ msgstr "Асуултын төрөл" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Шинэ талбар нэмэх" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Файл %s-г хадгалах зай хүрэлцэхгүй байна." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" "Файл %s нь сервэр дээр байна, нэрээ соль эсвэл давхарлах сонголтыг шалга." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Вэб-сервэр файл %s-г хадгалахад зөвшөөрөлгүй байна." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Асгалт %s файлд хадгалагдсан." @@ -867,184 +869,184 @@ msgstr "Асгалт %s файлд хадгалагдсан." msgid "Invalid export type" msgstr "Гаргах" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Шинэ талбар нэмэх" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Шугамыг төгсгөгч" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "Тогтмол нэмэх" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "%s талбар(ууд) нэмэх" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add a new User" msgid "Add geometry" msgstr "Шинэ хэрэглэгч нэмэх" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Тэмдэглэл харуулах" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Тэмдэглэгээ устгагдсан." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Файл уншигдахгүй байна" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Оруулах нэмэлтүүд дуудагдсангүй, суулгацаа шалгана уу!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Тэмдэглэл %s нь үүсгэгдлээ" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Оруулалт амжилттай дууслаа, %d асуудал ажиллав." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Өмнөх" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin нь ямар ч хөтөч дээр фрейм гаргах чадвартай." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"ӨС устгах\" нь хаалттай." @@ -1054,7 +1056,7 @@ msgstr "\"ӨС устгах\" нь хаалттай." msgid "Do you really want to execute \"%s\"?" msgstr "Та үнэхээр " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?" @@ -1104,7 +1106,7 @@ msgstr "Шинэ талбар нэмэх" msgid "Edit Index" msgstr "Дараагийн мөрийг засах" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -1125,16 +1127,16 @@ msgstr "Хостын нэр хоосон!" msgid "The user name is empty!" msgstr "Хэрэглэгчийн нэр хоосон!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Нууц үг хоосон байна!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Нууц їгнїїд ялгаатай байна!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1157,25 +1159,26 @@ msgstr "Сонгогдсон хэрэглэгчдийг хасах" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Засах" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Сервэр сонго" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy #| msgid "Showing SQL query" msgid "Live query chart" @@ -1187,24 +1190,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Нийт" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1226,7 +1229,7 @@ msgstr "Сервэр сонго" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Процессууд" @@ -1246,7 +1249,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy #| msgid "Databases statistics" msgid "Query statistics" @@ -1297,14 +1300,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "кБ" @@ -1366,32 +1369,32 @@ msgstr "" msgid "Bytes received" msgstr "Ирсэн" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Холболт" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Байт" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1408,11 +1411,11 @@ msgstr "%s хүснэгт(үүд)" msgid "Questions" msgstr "Хамаарал" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Гуйвуулга" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1436,11 +1439,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Байхгүй" @@ -1540,7 +1543,7 @@ msgstr "Ерөнхий хамаатай онцлог" msgid "Current settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1630,7 +1633,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Цаг" @@ -1739,10 +1742,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Оруулах" @@ -1800,9 +1803,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "Болих" @@ -1816,11 +1819,11 @@ msgstr "" msgid "Processing Request" msgstr "Процессууд" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "ӨС сонгогдоогүй." @@ -1832,9 +1835,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "Бэлэн" @@ -1890,19 +1893,19 @@ msgstr "Шинэ талбар нэмэх" msgid "Show indexes" msgstr "Тор харуулах" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Гадаад түлхүүр шалгалтыг хаах" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Нээлттэй" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1942,7 +1945,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1987,8 +1990,8 @@ msgstr "SQL асуудал харуулах" msgid "No rows selected" msgstr "Сонгогдсон мөргүй" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Солих" @@ -1996,18 +1999,18 @@ msgstr "Солих" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "%d нь мөрийн буруу дугаар байна." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Хадгалах" @@ -2023,7 +2026,7 @@ msgstr "асуултад" msgid "Show search criteria" msgstr "SQL асуудал харуулах" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2075,12 +2078,12 @@ msgstr "Асуудлын үр дүнгийн үйлдэл" msgid "Data point content" msgstr "Өгөгдөл заагчийн хэмжээ" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Үл тоох" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Хуулах" @@ -2102,7 +2105,7 @@ msgstr "Гадаад түлхүүр сонгох" msgid "Please select the primary key or a unique key" msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2195,7 +2198,7 @@ msgstr "Бий болгох" msgid "Change Password" msgstr "Нууц үг солих" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2310,27 +2313,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2338,37 +2341,37 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "12р" @@ -2417,32 +2420,32 @@ msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Бя" @@ -2576,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "секундэд" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "минутад" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "цагт" @@ -2606,70 +2609,295 @@ msgstr "" msgid "Font size" msgstr "Үсгийн хэмжээ" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Багана нэмэх/устгах" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Эхлэл" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Өмнөх" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Цааш" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Төгс" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "Талбаруудын тоо" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Да" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "хөндлөн" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "хөндлөн (эргүүлэгдсэн толгойнууд)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "босоо" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Түлхүүрээр эрэмбэлэх" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Сонголтууд" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Бичвэрийн зарим хэсэг" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Бүтэн бичвэр" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Хамааралтай схем" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Хөтчийн өөрчлөл" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Мөр устгагдсан" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Алах" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "May be approximate. See FAQ 3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "асуултад" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Мөрүүдийг харуулж байна " + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "Нийт" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Асуулт нь %01.4f сек авлаа" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Асуудлын үр дүнгийн үйлдэл" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "PDF-схем харуулах" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +#| msgid "Create" +msgid "Create view" +msgstr "Үүсгэх" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Холбоос олдсонгүй" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Шинэ phpMyAdmin цонх нээх" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Энэ газарт Cookies нээлттэй байх ёстой." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "Энэ газарт Cookies нээлттэй байх ёстой." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Индексүүд" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Үл давтагдах" @@ -2682,8 +2910,8 @@ msgstr "" msgid "Cardinality" msgstr "Ерөнхий" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "" @@ -2704,130 +2932,130 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Өгөгдлийн сангууд" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Сервэр" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Бүтэц" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Оруулах" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Үйлдлүүд" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Хүснэг хоосон үзэгдэж байна!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Өгөгдлийн сан хоосон санагдаж байна!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Асуулт (Query)" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Онцгой эрхүүд" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Дизайнч" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Хэрэглэгч" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Хоёртын log" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Утгууд" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Кодлолууд" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Хөдөлгүүрүүд" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Алдаа" @@ -2854,7 +3082,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Сонгогдсон мөргүй" msgstr[1] "Сонгогдсон мөргүй" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2951,16 +3179,108 @@ 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 +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 +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 +msgid "Value" +msgstr "Утга" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Хайх" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Оруулах" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Талбар сонгох (ядаж нэгийг):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Хайлтын нөхцөл нэмэх(\"where\" хэсгийн бие):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Хуудас дахь мөрийн тоо" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Харуулах эрэмбэ:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "in query" +msgid "Additional search criteria" +msgstr "асуултад" + +#: 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 "\"жишээ асуулт\" хийх (тэмдэгт: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "\"жишээ асуулт\" хийх (тэмдэгт: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Да.эхлэх" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Сэдэв %s-д олдсон зургийн зам буруу байна!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Боломжит харагдац байхгүй байна." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "авах" @@ -2979,7 +3299,7 @@ msgstr "Сэдэв %s олдсонгүй!" msgid "Theme path not found for theme %s!" msgstr "Сэдэв %s сэдвийн зам олдохгүй байна!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3278,13 +3598,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Холбогдсонгүй: тохируулга буруу." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%s-д тавтай морилно уу" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3293,7 +3613,7 @@ msgstr "" "Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та " "%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3307,60 +3627,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Энэ газарт Cookies нээлттэй байх ёстой." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Нэвтрэх" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Сервэр" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Нэвтрэгч:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Нууц үг:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Сервэр сонго" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Энэ газарт Cookies нээлттэй байх ёстой." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s секунд ба түүнээс их идэвхгүй байжээ, дахин нэвтэрнэ үү" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL руу нэвтэрч чадсангүй" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Нэвтрэгч/нууц үг буруу. Хандах боломжгүй" @@ -3392,7 +3706,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Хүснэгт" @@ -3404,13 +3718,13 @@ msgstr "Хүснэгт" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Өгөгдөл" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Толгой дээр" @@ -3439,33 +3753,25 @@ msgstr ""%s" өгөгдлийн сангийн онцгой эрх ш msgid "Check Privileges" msgstr "Онцгой эрх шалгах" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3476,218 +3782,196 @@ msgid "" msgstr "" "$cfg['PmaAbsoluteUri'] -ыг тохиргооны файлд тохируулах хэрэгтэй!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервэрийн буруу индекс нь: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "ХИ хэмжээ: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Баримт" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-асуулт" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL хэлэх нь: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL тайлбар" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "SQL тайлбарлахыг орхих" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP-кодгүй" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-код үүсгэх" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Да.дуудах" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL шалгалтыг алгасах" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL-ийг батлах" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Хөдөлгүүрүүд" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Ня" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y оны %B сарын %d., %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s өдөр, %s цаг, %s минут, %s секунд" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Шинэ талбар нэмэх" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Эхлэл" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Өмнөх" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Цааш" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Төгс" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr ""%s" өгөгдлийн сан руу үсрэх." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Хэвлэх" @@ -3719,8 +4003,8 @@ msgid "Closed" msgstr "Хаагдаагүй хашилт" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Хаагдсан" @@ -3871,9 +4155,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Да.эхлэх" @@ -4085,10 +4369,6 @@ msgstr "Хүснэгтийн бүтцийг таниулах" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4147,7 +4427,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Илгээх" @@ -4156,7 +4436,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Тогтнол" @@ -4272,7 +4552,7 @@ msgid "MIME type" msgstr "MIME-төрөл" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Хамаарал" @@ -5794,9 +6074,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Нууц үг" @@ -6073,30 +6353,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "May be approximate. See FAQ 3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Нууц үг солих" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Нууц үггүй" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Дахин бич" @@ -6121,22 +6395,22 @@ msgstr "Шинэ ӨС үүсгэх" msgid "Create" msgstr "Үүсгэх" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Онцгой эрхгүй" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Нэр" @@ -6329,26 +6603,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "General relation features" msgid "committed on %1$s by %2$s" msgstr "Ерөнхий хамаатай онцлог" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "General relation features" msgid "authored on %1$s by %2$s" @@ -6474,201 +6748,37 @@ msgstr "" msgid "Language" msgstr "Хэл" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Багана нэмэх/устгах" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "Талбаруудын тоо" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Да" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "хөндлөн" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "хөндлөн (эргүүлэгдсэн толгойнууд)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "босоо" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Түлхүүрээр эрэмбэлэх" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Сонголтууд" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Бичвэрийн зарим хэсэг" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Бүтэн бичвэр" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Хамааралтай схем" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Хөтчийн өөрчлөл" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Мөр устгагдсан" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Алах" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "асуултад" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Мөрүүдийг харуулж байна " - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "Нийт" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Асуулт нь %01.4f сек авлаа" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Асуудлын үр дүнгийн үйлдэл" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "PDF-схем харуулах" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -#| msgid "Create" -msgid "Create view" -msgstr "Үүсгэх" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Холбоос олдсонгүй" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Хувилбарын мэдээлэл" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Өгөгдлийн үндсэн хавтас" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Бүх InnoDB өгөгдлийн файлын хавтсын замын үндсэн хэсэг." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Өгөгдлийн файлууд" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Авто нэмэгдэлт" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Буффер pool хэмжээ" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6676,79 +6786,79 @@ msgstr "" "Энэ хүснэгтийн кэш өгөгдөл, индекст хэрэглэх InnoDB санах ойн буфферийн " "хэмжээ." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Буффер Pool" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB байдал" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Буффер Pool Хэрэглээ" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "хуудсууд" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Чөлөөт хуудсууд" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Бохир хуудсууд" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Хуудсуудын агуулсан өгөгдөл" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Хуудсууд зайлагдсан" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Завгүй хуудсууд" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Latched хуудсууд" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Буффер Pool Идэвхжил" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Унших гуйлт" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Бичих гуйлт" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Уншилт алдагдсан" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Бичихээр хүлээх" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Уншилт алдсан нь %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Бичихээр хүлээгдэх нь %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Өгөгдөл заагчийн хэмжээ" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6756,11 +6866,11 @@ msgstr "" "Анхдагч заагчийн хэмжээ байтаар илэрхийлэгдэх ба, CREATE TABLE -ээр MyISAM " "хүснэгтийг MAX_ROWS сонголт тодорхойлогдоогүй үед хэрэглэгдэнэ." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Авто сэргээх горим" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6768,11 +6878,11 @@ msgstr "" "Горим нь эвдэрсэн MyISAM хүснэгтийг автоматаар засна, серверийн эхлэлийн --" "myisam-recover сонголтоор." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Завсрын эрэмбэлэх файлын ХИ хэмжээ" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6781,11 +6891,11 @@ msgstr "" "Завсрын MySQL файлын ХИ хэмжээ нь MyISAM индексийг да-үүсгэхэд (REPAIR " "TABLE, ALTER TABLE, болон LOAD DATA INFILE -ын үед) хэрэглэгдэнэ." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Индекс үүсгэлт дэх завсрын файлын ХИ хэмжээ" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6795,11 +6905,11 @@ msgstr "" "тодорхойлогдсон хэмжээгээр key cache хэрэглэх хэрэгтэй, key cache аргыг " "илүүд үзвэл." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Thread засах" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6807,11 +6917,11 @@ msgstr "" "Хэрэв энэ утга нь 1 -ээс их байвал, эрэмбэлэх процессоор Засах үед MyISAM " "хүснэгтийн индексүүд нь зэрэгцээгээр (индекс бүрт өөрийн процесс) үүсгэгдсэн." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Буфферийн хэмжээг эрэмбэлэх" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6819,72 +6929,72 @@ msgstr "" "REPAIR TABLE -ийн үед MyISAM индексийг эрэмбэлэх эсвэл CREATE INDEX болон " "ALTER TABLE -ээр индекс үүсгэх үед буффер хуваарилагдсан." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6892,48 +7002,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6941,20 +7051,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Хамаарал" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -7015,14 +7125,14 @@ msgstr "Хүснэгтийн өгөгдлийг устгах" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Үзэгдэл" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7096,14 +7206,14 @@ msgstr "Идэвхтэй MIME-төрлүүд" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Хост" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Үүссэн цаг" @@ -7303,21 +7413,12 @@ msgstr "Харц" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Шинэ phpMyAdmin цонх нээх" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." @@ -7415,12 +7516,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Хүснэгтийн нэр" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Баганын нэрс" @@ -7488,97 +7589,79 @@ msgstr "SQL нийцтэй горим" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Функц" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Нуух" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Хоёртын " -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Хоёртын өгөгдөл - засагдахгүй " -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "web-сервэр түлхэх хавтас" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Оруулах" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "ба тэгээд" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Шинэ мөр оруулаад" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Буцах" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Өөр шинэ мөр оруулах" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Энэ хуудас руу буцах" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Дараагийн мөрийг засах" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Утга" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7595,38 +7678,38 @@ msgstr "Байхгүй" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Ба" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Илгээ" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Шинэ талбар нэмэх" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Та үнэхээр " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Солигдохгүй" @@ -7838,93 +7921,93 @@ msgstr "" msgid "This format has no options" msgstr "Энэ тогтнол сонголтгүй" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Бэлэн биш" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "Бэлэн" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Нээлттэй" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Ерөнхий хамаатай онцлог" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Онцлог харуулах" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF-схемийн үүсгэлт" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Баганын тайлбарыг харуулж байна" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Хөтчийн өөрчлөл" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Column_comments Хүснэгтийн хэрхэн шинэчлэх талаар баримтжууллаас харна уу" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Тэмдэглэгдсэн SQL-асуулт" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL түүх" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "тайлбаргүй" @@ -7932,7 +8015,7 @@ msgstr "тайлбаргүй" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7944,13 +8027,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Хэрэглэгчийн нэр" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7963,7 +8046,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Хувьсагч" @@ -7977,38 +8060,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Дурын хэрэглэгч" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Бичвэр талбар хэрэглэх" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Дурын хост" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Энэ хост" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Хост хүснэгт хэрэглэх" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8022,7 +8105,7 @@ msgstr "Нууц үг бий болгох" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8055,101 +8138,102 @@ msgstr "Хүснэгт %s нь устгагдлаа" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Event" msgid "Edit event" msgstr "Үзэгдэл" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Процессууд" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Хэрэг явдлын төрөл" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Хэрэг явдлын төрөл" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Солих" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Төгс" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Оруулалтыг дуусгах" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8180,7 +8264,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -8202,120 +8286,120 @@ msgstr "Хүснэгт %s нь устгагдлаа" msgid "Routine %1$s has been created." msgstr "Хүснэгт %s нь устгагдлаа" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Баганын нэрс" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Шууд холбоос" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Урт/Утгууд*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Шинэ талбар нэмэх" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Урт/Утгууд*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Хүснэгтийн сонголтууд" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Асуултын төрөл" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8335,44 +8419,44 @@ msgstr "Хүснэгт %s нь устгагдлаа" msgid "Trigger %1$s has been created." msgstr "Хүснэгт %s нь устгагдлаа" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new User" msgid "Edit trigger" msgstr "Шинэ хэрэглэгч нэмэх" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "сервэрийн нэр" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Цаг" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Хүснэгтийн буруу нэр" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8478,7 +8562,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8488,7 +8572,7 @@ msgstr "Хүснэгт \"%s\" байхгүй байна!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8496,7 +8580,7 @@ msgid "Please configure the coordinates for table %s" msgstr "%s хүснэгтийн координатыг тохируулна уу" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8508,27 +8592,27 @@ msgstr "\"%s\" өгөгдлийн сангийн схем - Хуудас %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Хамааралтай схем" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Агуулгын хүснэгт" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Атрибутууд" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Нэмэлт" @@ -8648,7 +8732,7 @@ msgstr "Үл мэдэгдэх хэл: %1$s." msgid "Current Server" msgstr "Сервэр" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8666,7 +8750,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -8685,7 +8769,7 @@ msgstr "%s сервэр дээр SQL асуудал/асуудлууд ажил msgid "Run SQL query/queries on database %s" msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажиллуулах" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8696,11 +8780,11 @@ msgstr "" msgid "Columns" msgstr "Баганын нэрс" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" @@ -8784,7 +8868,7 @@ msgstr "" "SQL баталгаажуулагч эхлэгдсэнгүй. Хэрэв PHP өргөтгөл суугдсан бол шалгана " "уу, %sбаримтжуулалд%s тодорхойлогдсон." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8816,8 +8900,8 @@ msgstr "" "оруулна уу: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Индекс" @@ -8870,13 +8954,13 @@ msgstr "Байхгүй" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Үндсэн" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Бүтэнбичвэр" @@ -8890,20 +8974,20 @@ msgstr "" msgid "after %s" msgstr "%s-ы дараа" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s талбар(ууд) нэмэх" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Та багадаа нэг талбар нэм." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Агуулах хөдөлгүүр" @@ -8911,45 +8995,6 @@ msgstr "Агуулах хөдөлгүүр" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Хайх" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Талбар сонгох (ядаж нэгийг):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Хайлтын нөхцөл нэмэх(\"where\" хэсгийн бие):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Хуудас дахь мөрийн тоо" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Харуулах эрэмбэ:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "\"жишээ асуулт\" хийх (тэмдэгт: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9118,13 +9163,13 @@ msgstr "" msgid "Manage your settings" msgstr "Ерөнхий хамаатай онцлог" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Өөрчлөлт хадгалагдав" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9137,7 +9182,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9168,7 +9213,7 @@ msgstr "MySQL холболтын кодлол" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9194,9 +9239,9 @@ msgstr "Сервэрийн хувилбар" msgid "Protocol version" msgstr "Протоколын хувилбар" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Хэрэглэгч" @@ -9326,148 +9371,148 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "ӨС байхгүй" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "хүснэгтийн нэр" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "хүснэгтийн нэр" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Хүснэгт үүсгэх" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Өгөгдлийн сан сонго" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Харуулах/Нуух зүүн цэс" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Байрлал хадгалах" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Холбоо үүсгэх" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Да.дууд" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Тусламж" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Шууд бус холбоос" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Шууд холбоос" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Жижиш/Том Бүгдийг" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "Холбоо сонгохдоо, дарах нь :" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Оруулах/Гаргах PDF схемийн координат" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Асуултыг илгээх" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Цэс зөөх" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Нуух/Харуулах бүгдийг" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Нуух/Харуулах Холбоо байхгүй Хүснэгтүүд" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Хүснэгтийн тоо" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Холбоог устгах" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Холбоо устав" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Гаргах" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "асуултад" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy #| msgid "Rename table to" msgid "Rename to" msgstr "Хүснэгтийг да.нэрлэх" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Хэрэглэгчийн нэр" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Үүсгэх" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9481,61 +9526,61 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "хуудсууд" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Файл оруулах" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Гаргах/Оруулах хэмжээс" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Шинэ индекс үүсгэх" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Хэрэглэгчийн нэр" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Гаргах/Оруулах хэмжээс" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "сайшаагдсан" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Дотоод холбоо нэмэгдэв" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Холбоо устав" @@ -9547,91 +9592,91 @@ msgstr "" msgid "Modifications have been saved" msgstr "Өөрчлөлт хадгалагдав" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Файл оруулах" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Файл оруулах" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Бүх" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s хүснэгт олдсонгүй эсвэл %s-д сонгогдоогүй" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9641,17 +9686,17 @@ msgstr "Хүснэгт \"%s\" байхгүй байна!" msgid "Select binary log to view" msgstr "Харах хоёртын log сонго" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Файлууд" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Бүтэн асуулт харуулах" @@ -9667,7 +9712,7 @@ msgstr "Байрлал" msgid "Original position" msgstr "Жинхэнэ байрлал" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Мэдээлэл" @@ -9675,7 +9720,7 @@ msgstr "Мэдээлэл" msgid "Character Sets and Collations" msgstr "Кодлол ба жишилт" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9683,24 +9728,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s ӨС амжилттай устгагдлаа." msgstr[1] "%s ӨС амжилттай устгагдлаа." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Өгөгдлийн сангийн статистик" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Нээлттэй статистик" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9711,155 +9756,155 @@ msgstr "" msgid "Storage Engines" msgstr "Агуулах хөдөлгүүрүүд" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "ӨС-ийн схем харах" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Эхлэл" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Хаагдсан" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Байгаа хүснэгтийн бүтцийг өөрчлөхийг зөвшөөрөх." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Шинэ өгөгдлийн сан, хүснэгт үүсгэхийг зөвшөөрөх." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Хадгалагдсан заншил үүсгэхийг зөвшөөрөх." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Хэрэглэгчийн эрхийг үүсгэх, устгах, да.нэрлэхийг зөвшөөрөх." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Шинэ харц үүсгэхийг зөвшөөрөх." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Өгөгдөл устгахыг зөвшөөрөх." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "ӨС, хүснэгт устгахыг зөвшөөрөх " -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Хүснэгт устгахыг зөвшөөрөх." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Өгөгдөл оруулах, файл руу гаргахыг зөвшөөрөх." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Хэрэглэгч болон онцгой эрхийг онцгой эрхийн хүснэгтийг дуудалгүй нэмэхийг " "зөвшөөрөх." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Цаг тутамд шинээр холбогдох хэрэглэгчийн тоог хязгаарлах." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Цаг тутамд хэрэглэгчийн асуулт (query) илгээхийг хязгаарлах." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9867,58 +9912,58 @@ msgstr "" "Цаг тутамд хэрэглэгчийн хүснэгт эсвэл өгөгдлийн сан солих командыг " "хязгаарлах." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "MySQL-ын энэ хувилбарт үйлчлэлгүй." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Сервэрийн тохиргоог дахин дуудахыг зөвшөөрөх." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Өгөгдөл уншихыг зөвшөөрөх." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Өгөгдлийн сангийн бүрэн жагсаалт руу хандахыг өгөх." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW асуултыг хийхийг зөвшөөрөх." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Сервэрийг унтраахыг зөвшөөрөх." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9927,174 +9972,174 @@ msgstr "" "Хэрэв ХИ холболтын тоо гүйцсэн ч холбогдохыг зөвшөөрөх. Бусад хэрэглэгчийн " "процессыг үгүй хийх эсвэл глобал утгыг өөрчлөх шаардлагатай болно." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Өгөгдөл солихыг зөвшөөрөх." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Онцгой эрхгүй." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Байхгүй" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Хүснэгтийн тусгай онцгой эрхүүд" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Тэмдэглэл: MySQL онцгой эрхийн нэр нь англиар илэрхийлэгдсэн " -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Зохион байгуулалт" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Глобал онцгой эрх" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Онцгой эрх, өгөгдлийн сангийн эрх" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Нөөцийн хязгаар" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Тэмдэглэл: Тохируулгын сонголтыг 0 (тэг) болговол хязгаарыг хасна." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Нэвтрэх мэдээлэл" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Нууц үгийг солихгүй" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Хэрэглэгч олдсонгүй." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Хэрэглэгч %s оршин байна!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Шинэ хэрэглэгч нэмэгдлээ." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, fuzzy, php-format msgid "You have updated the privileges for %s." msgstr "Онцгой эрх шинэчлэгдлээ" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Онцгой эрх %s -ыг хүчингүй болголоо" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "%s-ы нууц үг солигдлоо." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "%s-г устгаж байна" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Устгахаар хэрэглэгч сонгогдсонгүй!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Онцгой эрхийг дахин дуудаж байна" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Онцгой эрхүүдийг засах" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Хүчингүй" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Гаргах" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Дурын" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Онцгой эрхүүд" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Онцгой эрхүүд" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "User overview" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Хандив" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй " "болгох." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10107,48 +10152,48 @@ msgstr "" "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Онцгой эрх, баганын эрх" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Дараах өгөгдлийн санд онцгой эрх нэмэх" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... хуучныг үлдээх." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... хэрэглэгчийн хүснэгтүүдээс устгах." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга." -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10156,94 +10201,94 @@ msgstr "" " ... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин " "дууд." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Хэрэглэгчдийн хандсан нь "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "Өгөгдлийн сангийн эрх" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "загвар" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "Харц %s нь устгагдсан" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10252,269 +10297,269 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Зөвхөн бүтэц" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Зөвхөн бүтэц" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s нь устгагдав." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin нь thread %s-ийг хааж чадсангүй. Энэ аль хэдийн хаагдсан байна." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Баригч" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Асуудлын нөөцлөл" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Thread-үүд" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Завсрын өгөгдөл" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Давталттай оруулалт" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Түлхүүрийн нөөцлөл" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Нэгдэл" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Эрэмбэлж байна" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Хэлэлцээр зохицуулагч" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Бүх хүснэгтийг цэвэрлэх (хаах)" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Дагавар хостыг харуулах" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Дагавар төлвийг харуулах" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Асуудлын утгыг цэвэрлэх" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Ажиллах үеийн мэдээлэл" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Да.дуудах" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Нууц үгийг солихгүй" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Хамаарал" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Асуултын төрөл" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "Мэдээлэл" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10522,102 +10567,102 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Баримтжуулал" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Ирсэн" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Илгээгдэв" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "ХИ. давхацсан холболтууд" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Бүтэлгүйтсэн оролдлого" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Таслагдсан" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Команд" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -10627,16 +10672,16 @@ msgstr "" "хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд " "хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10648,11 +10693,11 @@ msgstr "" "оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг " "нэмэгдүүлэхийг хүсэж байж болно." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10660,7 +10705,7 @@ msgstr "" "Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн " "хүснэгтүүдийн тоо." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10668,7 +10713,7 @@ msgstr "" "Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-" "аар бичигдсэн мөрүүдийн тоо." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10676,23 +10721,23 @@ msgstr "" "Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай " "хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ." -#: server_status.php:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "дотоод COMMIT хэлэлцээриийн тоо." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Хүснэгтээс мөр устгасан тоо." -#: server_status.php:1334 +#: 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 " @@ -10702,7 +10747,7 @@ msgstr "" "NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. " "Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм." -#: server_status.php:1335 +#: 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, " @@ -10712,7 +10757,7 @@ msgstr "" "бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 " "FROM foo, энд col1 индекслэгдсэн байна." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10720,7 +10765,7 @@ msgstr "" "Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны " "асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10730,7 +10775,7 @@ msgstr "" "та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд " "нэмэгдэж байдаг." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10738,7 +10783,7 @@ msgstr "" "Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь " "голчлон ORDER BY ... DESC-д хэрэглэгддэг." -#: server_status.php:1339 +#: 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 " @@ -10750,7 +10795,7 @@ msgstr "" "Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд " "түлхүүрийг зөв ашиглаагүй байх." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10762,35 +10807,35 @@ msgstr "" "ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь " "асуудалд зөв бичигдээгүйг илтгэнэ." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Одоогоор бохир байгаа хуудсын тоо." -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо." -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Чөлөөтэй байгаа хуудсуудын тоо." -#: server_status.php:1348 +#: 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 " @@ -10800,7 +10845,7 @@ msgstr "" "одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас " "хасагдсан." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10812,11 +10857,11 @@ msgstr "" "InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт " "хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ." -#: server_status.php:1351 +#: 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." @@ -10824,7 +10869,7 @@ msgstr "" "InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй " "эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10832,11 +10877,11 @@ msgstr "" "InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн " "шалгалтыг InnoDB хийснийг илэрхийлнэ." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо." -#: server_status.php:1354 +#: 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." @@ -10844,7 +10889,7 @@ msgstr "" "InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик " "уншилтын тоо." -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10853,244 +10898,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Уншихаар хүлээгдэж буй тухайн тоо." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Бичихээр хүлээгдэж буй тухайн тоо." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Өгөгдөл уншилтийн нийт тоо." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Өгөгдөл бичилтийн нийт тоо." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар." -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Тэмдэглэл бичих хүсэлтийн тоо." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Тэмдэглэлийн файл руу бичих хүлээлт." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Оруулсан файлын тогтнол" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -11098,99 +11143,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Эрэмбэлэгдсэн мөрийн тоо." -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11198,18 +11243,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11217,69 +11262,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Түлхүүрийн нөөцлөл" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Шинэ талбар нэмэх" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Да.дуудах" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Багана нэмэх/устгах" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 #, fuzzy msgid "Monitor Instructions" msgstr "Мэдээлэл" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11288,7 +11333,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11296,18 +11341,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11315,11 +11360,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11327,93 +11372,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Хүснэгтүүд сонго" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Хүснэгтийн буруу нэр" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "Шинэ хэрэглэгч нэмэх" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "Мөрийн статистик" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Бүгдийг сонгох" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Асуултын төрөл" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11421,7 +11466,7 @@ msgid_plural "%d seconds" msgstr[0] "секундэд" msgstr[1] "секундэд" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11429,132 +11474,132 @@ msgid_plural "%d minutes" msgstr[0] "хэрэглэгдэж байна" msgstr[1] "хэрэглэгдэж байна" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy #| msgid "Execute bookmarked query" msgid "Executed queries" msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "ХИ. давхацсан холболтууд" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Сервэрийн утгууд болон тохиргоонууд" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Сессон утга" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Глобал утга" @@ -11842,179 +11887,179 @@ msgstr "" msgid "Wrong data" msgstr "ӨС байхгүй" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Та үнэхээр " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "PHP кодоор харуулах" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL-ийг батлах" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL-үр дүн" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Үүсгэгч" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Хүснэгт `%s`-ийн индекс асуудалтай" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Хаяг" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "3-р" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Баганын нэрс" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Хөдөлгүүрүүд" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Тайлангийн гарчиг" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Утга" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Утга" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Хүснэгт %s нь оршин байна!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Хүснэгтийн схем харах" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Багана нэмэх/устгах" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Нийт" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Илгээх" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12032,33 +12077,33 @@ msgstr "Индексийг PRIMARY болгож чадсангүй!" msgid "No index parts defined!" msgstr "Тодорхойлогдсон индексийн хэсэггүй!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Шинэ талбар нэмэх" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Add new field" msgid "Edit index" msgstr "Шинэ талбар нэмэх" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Индексийн нэр :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" нь үндсэн түлхүүрийн нэр ба зөвхөн байх хэрэгтэй!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Индексийн төрөл :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Индекст нэмэх %s багана(ууд)" @@ -12081,278 +12126,278 @@ msgstr "Хүснэгт %s нь %s руу зөөгдөв." msgid "Table %s has been copied to %s." msgstr "%s хүснэгт %s руу хуулагдлаа." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Хүснэгтийн нэр хоосон байна!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Хүснэгтийг эрэмбэлэлтээр өөрчлөх" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(дан)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Хүснэгтийг зөөх (өгөгдлийн сан.хүснэгт):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Хүснэгтийн сонголтууд" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Хүснэгтийг да.нэрлэх" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Хүснэгт хуулах(өгөгдлийн сан.хүснэгт):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Хуулагдсан хүснэгт рүү шилжих" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Хүснэгтийн ашиглалт" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Хүснэгт янзлах" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Хүснэгт %s нь flushed боллоо" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Хүснэгтийн өгөгдлийг устгах" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy #| msgid "Copy database to" msgid "Delete the table (DROP)" msgstr "Өгөгдлийн сан хуулах нь" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Үнэн зөв өгөгдлийг шалгах:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Хүснэгтүүдийг харуулах" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Ашиглалтын зай" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Эффекттэй" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Мөрийн статистик" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "динамик" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Мөрийн урт" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Мөрийн хэмжээ " -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, fuzzy, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Гадаад түлхүүр үүсгэхэд алдаа гарлаа %1$s (өгөгдлийн төрлөө шалга)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Дотоод хамаарал" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Онцгой утгуудыг харах" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add new field" msgid "Add SPATIAL index" msgstr "Шинэ талбар нэмэх" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Байхгүй" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Хүснэгт %s нь устгагдлаа" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "%s-д үндсэн түлхүүр нэмэгдлээ" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "%s-д индекс нэмэгдсэн байна" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "PHP -ийн мэдээлэл харах" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "%s талбар(ууд) нэмэх" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Хэвлэхээр харах" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Хамаарал харах" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Хүснэгтийн бүтцийг таниулах" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s талбар(ууд) нэмэх" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Хүснэгтийн төгсгөлд" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Хүснэгтийн эхэнд" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "%s-ы дараа" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr " %s багануудад индекс үүсгэх" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12507,74 +12552,40 @@ msgstr "" msgid "Create version" msgstr "" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "\"жишээ асуулт\" хийх (тэмдэгт: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "in query" -msgid "Additional search criteria" -msgstr "асуултад" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Да.эхлэх" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Идэвхтэй MIME-төрлүүд" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-types printed in italics do not have a seperate transformation function" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Идэвхтэй өөрчлөлт" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Тайлбар" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Танд хангалттай эрх байхгүй!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Профиль шинэчлэгдлээ." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/ms.po b/po/ms.po index 6f91f8bd54..f1d0b9280b 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: malay \n" @@ -14,79 +14,79 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Papar semua" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Muka Surat:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Pergi" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Nama Kekunci" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Keterangan" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Guna nilai ini" @@ -104,91 +104,92 @@ msgstr "" msgid "Database %1$s has been created." msgstr "angkalan data %s telah digugurkan." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 #, fuzzy msgid "Database comment: " msgstr "Komen jadual" -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Komen jadual" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Nama Kolum" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Asal" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Pautan ke" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Komen" @@ -197,14 +198,14 @@ msgstr "Komen" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Tidak" @@ -217,125 +218,125 @@ msgstr "Tidak" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ya" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Lihat longgokan (skema) pangkalan data" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Tiada jadual dijumpai pada pangkalan data." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Sila pilih pangkalan data" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Nyahpilih Semua" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 #, fuzzy msgid "The database name is empty!" msgstr "Nama jadual adalah kosong" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Jadual %s telah ditukarnama ke %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Jadual %s telah disalin ke %s." -#: db_operations.php:443 +#: db_operations.php:449 #, fuzzy msgid "Rename database to" msgstr "Tukarnama jadual ke" -#: db_operations.php:470 +#: db_operations.php:476 #, fuzzy msgid "Remove database" msgstr "Tukarnama jadual ke" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "angkalan data %s telah digugurkan." -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy msgid "Drop the database (DROP)" msgstr "Tiada pangkalan data" -#: db_operations.php:516 +#: db_operations.php:522 #, fuzzy msgid "Copy database to" msgstr "Tiada pangkalan data" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Struktur sahaja" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktur dan data" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Data sahaja" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Tambah %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Tukar kepada pengkalan data yang di salin" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -347,62 +348,62 @@ msgstr "" "Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah " "tidak diaktifkan. Untuk mengetahuinya klik %shere%s." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Skema Hubungan" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Jadual" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Baris" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Saiz" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "sedang digunakan" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 #, fuzzy msgid "Creation" msgstr "Cipta" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Semakan Terakhir" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -414,121 +415,121 @@ msgstr[1] "%s jadual" msgid "You have to choose at least one column to display" msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Isih" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Menaik" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Menurun" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Papar" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriteria" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Dan" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Atau" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Ubahsuai" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Tambah/Padam Baris Kriteria" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Tambah/Padam Kolum Medan" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Kemaskini Kueri" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Guna Jadual" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL- kueri pada pangkalan data %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Hantar Kueri" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Akses dinafikan" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "sekurang-kurangnya satu perkataan" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "semua perkataan" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "Frasa tepat" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "sebagai penyataan regular (regexp)" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Hasil carian bagi \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -536,31 +537,31 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -568,264 +569,265 @@ msgid_plural "Total: %s matches" msgstr[0] "Jumlah: %s padanan" msgstr[1] "Jumlah: %s padanan" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Cari di pangkalan data" -#: db_search.php:292 +#: db_search.php:295 #, 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:297 +#: db_search.php:300 msgid "Find:" msgstr "Cari:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Perkataan dipisahkan oleh aksara ruang (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Di dalam jadual:" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" msgstr "Di dalam jadual:" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Tiada jadual dijumpai pada pangkalan data." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Jadual %s telah dikosongkan" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, fuzzy, php-format msgid "View %s has been dropped" msgstr "Medan %s telah digugurkan" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Jadual %s telah digugurkan" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Jumlah" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Dengan pilihan:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Tanda Semua" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Paparan Cetak" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Kosong" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Gugur" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Periksa Jadual" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimakan jadual" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Baiki jadual" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyze table" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 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:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 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:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Kamus Data" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Pangkalan Data" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 #, fuzzy msgid "Created" msgstr "Cipta" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Status" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Aksi" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 #, fuzzy msgid "Versions" msgstr "Operasi" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 #, fuzzy msgid "Structure snapshot" msgstr "Struktur sahaja" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "Periksa Jadual" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "Pangkalan Data" @@ -840,28 +842,28 @@ msgstr "Jenis Kueri" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 #, fuzzy msgid "Bad parameters!" msgstr "Tukarnama jadual ke" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -872,185 +874,185 @@ msgstr "" msgid "Invalid export type" msgstr "Eksport" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy msgid "Add a point" msgstr "Tambah medan baru" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Baris ditamatkan oleh" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Tambah Pengguna Baru" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Tambah Pengguna Baru" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy msgid "Add a polygon" msgstr "Tambah medan baru" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy msgid "Add geometry" msgstr "Tambah Pengguna Baru" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "TandaBuku telah dipadam." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Undur" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin lebih mesra dengan pelayar web menyokong-kerangka seperti " "mozilla." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ." @@ -1060,7 +1062,7 @@ msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ." msgid "Do you really want to execute \"%s\"?" msgstr "Adakah anda ingin " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1104,7 +1106,7 @@ msgstr "Indeks" msgid "Edit Index" msgstr "Indeks" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format msgid "Add %d column(s) to index" msgstr "Tambah medan baru" @@ -1124,16 +1126,16 @@ msgstr "Nama hos adalah kosong!" msgid "The user name is empty!" msgstr "Kata Pengenalan kosong!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Katalaluan adalah kosong!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Katalaluan tidak sama!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1153,25 +1155,26 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Ubah" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Pilihan Pelayan" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "kueri-SQL" @@ -1182,24 +1185,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Jumlah" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1221,7 +1224,7 @@ msgstr "Pilihan Pelayan" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Proses-proses" @@ -1241,7 +1244,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "Statistik Baris" @@ -1286,14 +1289,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1351,32 +1354,32 @@ msgstr "" msgid "Bytes received" msgstr "DiTerima" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Hubungan" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1392,11 +1395,11 @@ msgstr "%s jadual" msgid "Questions" msgstr "Operasi" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Kesibukan" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1419,11 +1422,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Tiada" @@ -1523,7 +1526,7 @@ msgstr "Ciri-ciri hubungan am" msgid "Current settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy msgid "Chart Title" msgstr "Tiada Jadual" @@ -1608,7 +1611,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Masa" @@ -1712,10 +1715,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksport" @@ -1770,9 +1773,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1787,11 +1790,11 @@ msgstr "Local" msgid "Processing Request" msgstr "Proses-proses" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1803,9 +1806,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1856,17 +1859,17 @@ msgstr "Indeks" msgid "Show indexes" msgstr "Papar grid" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Membenarkan" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1904,7 +1907,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1946,8 +1949,8 @@ msgstr "kueri-SQL" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Ubah" @@ -1955,18 +1958,18 @@ msgstr "Ubah" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Simpan" @@ -1980,7 +1983,7 @@ msgstr "kueri-SQL" msgid "Show search criteria" msgstr "kueri-SQL" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2032,12 +2035,12 @@ msgstr "Hasil SQL" msgid "Data point content" msgstr "Kandungan" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Abai" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2058,7 +2061,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2152,7 +2155,7 @@ msgstr "Dijana oleh" msgid "Change Password" msgstr "Ubah Katalaluan" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2266,27 +2269,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2294,37 +2297,37 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dis" @@ -2373,32 +2376,32 @@ msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sab" @@ -2531,16 +2534,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "per jam" @@ -2561,70 +2564,296 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Tambah/Padam Kolum Medan" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Mula" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Terdahulu" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Berikut" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Tamat" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Sab" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows per page" +msgid "Number of rows" +msgstr "Bilangan baris per halaman" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Isn" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "mengufuk" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "menegak" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "Operasi" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Sebahagian Teks" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Teks Penuh" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "Skema Hubungan" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Skema Hubungan" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +msgid "Hide browser transformation" +msgstr "Informasi MasaJana" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Baris telah dipadam" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Bunuh" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "pada kueri" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Papar baris" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "jumlah" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Papar Skema PDF" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Versi Pelayan" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Pautan tidak dijumpai" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Cecikut mestilah dihidupkan ketika ini." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "Cecikut mestilah dihidupkan ketika ini." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unik" @@ -2637,8 +2866,8 @@ msgstr "" msgid "Cardinality" msgstr "Kardinaliti" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2660,131 +2889,131 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "pangkalan data" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Pelayan" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktur" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Selit" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operasi" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Kueri" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilej" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Pengguna" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Binari" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Pemboleh-pembolehubah" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Ralat" @@ -2809,7 +3038,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2898,16 +3127,108 @@ 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 +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 +#, 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 +msgid "Value" +msgstr "Nilai" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Cari" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Selit" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Pilih medan (sekurang-kurangnya satu):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Tambah kriteria carian (badan bagi klausa \"where\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Bilangan baris per halaman" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Turutan paparan:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "kueri-SQL" + +#: 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 "Lakukan \"kueri melalui contoh\" (wilidcard: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Lakukan \"kueri melalui contoh\" (wilidcard: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Ulangtetap" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2926,7 +3247,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3222,20 +3543,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Selamat Datang ke %s" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3247,61 +3568,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Cecikut mestilah dihidupkan ketika ini." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Logmasuk" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 #, fuzzy msgid "Server:" msgstr "Pelayan" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Namapengguna:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Katalaluan:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Pilihan Pelayan" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Cecikut mestilah dihidupkan ketika ini." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Tidak boleh log-masuk ke server MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Salah kata pengenalan/kata laluan. Akses dilarang." @@ -3333,7 +3648,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Jadual-jadual" @@ -3345,13 +3660,13 @@ msgstr "Jadual-jadual" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Melebihi" @@ -3378,30 +3693,22 @@ msgstr "" msgid "Check Privileges" msgstr "Tiada Privilej" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3412,213 +3719,191 @@ msgid "" msgstr "" "$cfg[PmaAbsoluteUri] MESTI disetkan di dalam fail konfigurasi." -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentasi" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "kueri-SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL berkata: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Terangkan Kod SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Tanpa Kod PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Cipta Kod PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Melangkau Pengesahan SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Mengesahkan SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Aha" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s minit dan %s saat" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Mula" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Terdahulu" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Berikut" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Tamat" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direktori muatnaik pelayan-web" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Cetak" @@ -3650,8 +3935,8 @@ msgid "Closed" msgstr "Tanda quote tidak disertakan" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Tidak Membenarkan" @@ -3803,9 +4088,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Ulangtetap" @@ -4012,10 +4297,6 @@ msgstr "Cadangkan struktur jadual" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4072,7 +4353,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Simpan sebagai fail" @@ -4082,7 +4363,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4196,7 +4477,7 @@ msgid "MIME type" msgstr "" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 #, fuzzy msgid "Relations" msgstr "Operasi" @@ -5712,9 +5993,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Katalaluan" @@ -5987,30 +6268,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Ubah Katalaluan" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Tiada Katalaluan" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Ulang-taip" @@ -6033,13 +6308,13 @@ msgstr "Cipta pangkalan data baru" msgid "Create" msgstr "Cipta" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Tiada Privilej" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "Cipta Halaman baru" @@ -6047,9 +6322,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nama" @@ -6232,25 +6507,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Versi Pelayan" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Versi Pelayan" @@ -6361,406 +6636,241 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Tambah/Padam Kolum Medan" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Sab" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of rows" -msgstr "Bilangan baris per halaman" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Isn" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "mengufuk" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "menegak" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "Operasi" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Sebahagian Teks" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Teks Penuh" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "Skema Hubungan" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Skema Hubungan" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -msgid "Hide browser transformation" -msgstr "Informasi MasaJana" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Baris telah dipadam" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Bunuh" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "pada kueri" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Papar baris" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "jumlah" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Papar Skema PDF" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Versi Pelayan" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Pautan tidak dijumpai" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 #, fuzzy msgid "Version information" msgstr "Informasi MasaJana" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 #, fuzzy msgid "Data files" msgstr "Data sahaja" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 #, fuzzy msgid "Pages to be flushed" msgstr "Jadual %s telah dibuangkan" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6768,48 +6878,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6817,19 +6927,19 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy msgid "Related Links" msgstr "Operasi" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6885,15 +6995,15 @@ msgstr "Melonggok data bagi jadual" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Hantar" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6962,14 +7072,14 @@ msgstr "Paparkan Ciri-ciri" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Hos" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Masa dijana" @@ -7164,21 +7274,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)" @@ -7273,12 +7374,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Nama Kolum" @@ -7343,96 +7444,78 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Fungsi" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binari" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binari - jgn diubah" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "direktori muatnaik pelayan-web" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Selit" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Selitkan baris baru" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Tambah baris yang baru" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 #, fuzzy msgid "Go back to this page" msgstr "Kembali ke muka sebelumnya" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Nilai" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7449,36 +7532,36 @@ msgstr "Tiada" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Jum" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Hantar" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Adakah anda ingin " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Tiada perubahan" @@ -7689,92 +7772,92 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "tidak OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Membenarkan" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Ciri-ciri hubungan am" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Paparkan Ciri-ciri" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Ciptaan bagi PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Memaparkan Komen Kolum" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Tandabuku kueri-SQL" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "tiada keterangan" @@ -7782,7 +7865,7 @@ msgstr "tiada keterangan" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7794,13 +7877,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Kata Pengenalan" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Isih" @@ -7814,7 +7897,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Pembolehubah" @@ -7829,38 +7912,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Sebarang pengguna" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Sebarang hos" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7874,7 +7957,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7906,99 +7989,100 @@ msgstr "Jadual %s telah digugurkan" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Hantar" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proses-proses" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy msgid "Event name" msgstr "Jenis Kueri" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 #, fuzzy msgid "Event type" msgstr "Jenis Kueri" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Ubah" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Status" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Tamat" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Kemasukkan Selesai" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8028,7 +8112,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -8048,114 +8132,114 @@ msgstr "Jadual %s telah digugurkan" msgid "Routine %1$s has been created." msgstr "Jadual %s telah digugurkan" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Nama Kolum" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy msgid "Direction" msgstr "Cipta" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Panjang/Nilai*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy msgid "Remove last parameter" msgstr "Tukarnama jadual ke" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Panjang/Nilai*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy msgid "Return options" msgstr "Statistik pangkalan data" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Jenis Kueri" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8174,41 +8258,41 @@ msgstr "Jadual %s telah digugurkan" msgid "Trigger %1$s has been created." msgstr "Jadual %s telah digugurkan" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Tambah Pengguna Baru" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "Kata Pengenalan" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Masa" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8307,7 +8391,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8317,7 +8401,7 @@ msgstr "Jadual \"%s\" tidak wujud!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8325,7 +8409,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Sila konfigurasikan kordinat bagi jadual %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8337,27 +8421,27 @@ msgstr "Skema bagi pangkalan data \"%s\" database - Laman %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Skema Hubungan" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Kandungan" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atribut" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Ekstra" @@ -8473,7 +8557,7 @@ msgstr "" msgid "Current Server" msgstr "Pelayan" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Cari di pangkalan data" @@ -8492,7 +8576,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Cari di pangkalan data" @@ -8512,7 +8596,7 @@ msgstr "Laksana kueri SQL pada pangkalan data %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8523,11 +8607,11 @@ msgstr "" msgid "Columns" msgstr "Nama Kolum" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8623,7 +8707,7 @@ msgstr "" "Pengesahan SQL tidak dapat disahkan. Sila semak sama ada anda telah memasang " "sambungan php seperti yang tercatit di %sdocumentation%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8653,8 +8737,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indeks" @@ -8707,13 +8791,13 @@ msgstr "Tiada" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Utama" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Tekspenuh" @@ -8727,19 +8811,19 @@ msgstr "" msgid "after %s" msgstr "Selepas %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Tambah medan baru" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8747,46 +8831,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Cari" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Pilih medan (sekurang-kurangnya satu):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Tambah kriteria carian (badan bagi klausa \"where\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Bilangan baris per halaman" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Turutan paparan:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Lakukan \"kueri melalui contoh\" (wilidcard: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8896,13 +8940,13 @@ msgstr "" msgid "Manage your settings" msgstr "Ciri-ciri hubungan am" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Pengubahsuaian telah disimpan" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8913,7 +8957,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8942,7 +8986,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -8968,9 +9012,9 @@ msgstr "Versi Pelayan" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Pengguna" @@ -9094,144 +9138,144 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Tiada pangkalan data" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Alter table order by" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Alter table order by" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Cipta Halaman baru" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Sila pilih pangkalan data" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Hantar Kueri" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "Papar semua" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "Paparan Hubungan" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Eksport" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "pada kueri" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Tukarnama jadual ke" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Kata Pengenalan" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Cipta" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy msgid "Active options" msgstr "Aksi" @@ -9245,58 +9289,58 @@ msgstr "Jadual %s telah digugurkan" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Penggunaan" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Cipta indeks baru" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Kata Pengenalan" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 #, fuzzy msgid "Internal relation added" msgstr "Ciri-ciri hubungan am" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 #, fuzzy msgid "Relation deleted" msgstr "Paparan Hubungan" @@ -9309,87 +9353,87 @@ msgstr "" msgid "Modifications have been saved" msgstr "Pengubahsuaian telah disimpan" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Semua" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Jadual %s tidak dijumpai atau ditetapkan pada %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9399,18 +9443,18 @@ msgstr "Jadual \"%s\" tidak wujud!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "Medan" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -9426,7 +9470,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "" @@ -9434,7 +9478,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -9442,25 +9486,25 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "angkalan data %s telah digugurkan." msgstr[1] "angkalan data %s telah digugurkan." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statistik pangkalan data" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 #, fuzzy msgid "Enable Statistics" msgstr "Statistik pangkalan data" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9470,387 +9514,387 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 #, fuzzy msgid "View dump (schema) of databases" msgstr "Lihat longgokan (skema) pangkalan data" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Mula" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "Versi PHP" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Tidak Membenarkan" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 #, fuzzy msgid "No privileges." msgstr "Tiada Privilej" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Tiada" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: Nama privilej MySQL adalah dinyatakan dalam B.Inggeris" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 #, fuzzy msgid "Global privileges" msgstr "Tiada Privilej" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 #, fuzzy msgid "Login Information" msgstr "Informasi MasaJana" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Jangan tukar katalaluan" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Tiada pengguna dijumpai." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Anda telah menambah pengguna baru." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Anda telah mengemaskini privilej bagi %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Anda telah menarikbalik privilej Keistimewaan untuk %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Ubah Privilej" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "TarikBalik" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Eksport" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Sebarang" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Privilej" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilej" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 #, fuzzy msgid "Grant" msgstr "Cetak" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9859,140 +9903,140 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy msgid "User has been added." msgstr "Medan %s telah digugurkan" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "Thread %s was successfully killed." msgid "Master server changed successfully to %s" msgstr "Bebenang %s telah berjaya dimatikan." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10001,270 +10045,270 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Sila pilih pangkalan data" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Tekspenuh" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Struktur sahaja" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Struktur sahaja" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Bebenang %s telah berjaya dimatikan." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin tidak dapat mematikan bebenang %s. Ianya mungkin telah ditutup." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 #, fuzzy msgid "Query cache" msgstr "Jenis Kueri" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 #, fuzzy msgid "Delayed inserts" msgstr "Penyelitan Lanjutan" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 #, fuzzy msgid "Show open tables" msgstr "Papar jadual" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Informasi MasaJana" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy msgid "Refresh rate: " msgstr "Dijana oleh" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Jangan tukar katalaluan" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy msgid "Show only alert values" msgstr "Papar jadual" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy msgid "Show unformatted values" msgstr "Papar jadual" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy msgid "Related links:" msgstr "Operasi" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Jenis Kueri" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "Fungsi" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10272,117 +10316,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Penyataan" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "DiTerima" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Hantar" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Percubaan Gagal" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "DiBatalkan" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Arahan" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10390,78 +10434,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10469,7 +10513,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10477,42 +10521,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10520,33 +10564,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10555,243 +10599,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Fail bagi set Aksara:" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10799,99 +10843,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10899,18 +10943,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10918,68 +10962,68 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy msgid "Thread cache hit rate (calculated value)" msgstr "Jenis Kueri" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sab" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy msgid "Add chart" msgstr "Tambah medan baru" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Dijana oleh" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Tambah/Padam Kolum Medan" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10988,7 +11032,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10996,18 +11040,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11015,11 +11059,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11027,89 +11071,89 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy msgid "Preset chart" msgstr "Tukarnama jadual ke" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Pilih Jadual" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Tambah Pengguna Baru" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "kueri-SQL" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Statistik Baris" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Sila pilih pangkalan data" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Jenis Kueri" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Records" msgid "%d second" @@ -11117,7 +11161,7 @@ msgid_plural "%d seconds" msgstr[0] "Rekod" msgstr[1] "Rekod" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11125,131 +11169,131 @@ msgid_plural "%d minutes" msgstr[0] "sedang digunakan" msgstr[1] "sedang digunakan" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "kueri-SQL" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Hubungan" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Pembolehubah dan Penetapan Pelayan" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Nilai Sessi" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Nilai Global" @@ -11541,177 +11585,177 @@ msgstr "" msgid "Wrong data" msgstr "Tiada pangkalan data" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Adakah anda ingin " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Mengesahkan SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Hasil SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Dijana oleh" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Label" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "angkalan data %s telah digugurkan." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Mac" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Nama Kolum" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy msgid "Chart title" msgstr "Tiada Jadual" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "kueri-SQL" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Nilai" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Nilai" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Jadual %s telah digugurkan" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Lihat longgokan (skema) pangkalan data" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Tambah/Padam Kolum Medan" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Jumlah" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Simpan sebagai fail" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -11729,30 +11773,30 @@ msgstr "Tidak boleh menukar indekx ke PRIMARY!" msgid "No index parts defined!" msgstr "Tiada bahagian indeks ditakrifkan!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Print view" msgid "Edit index" msgstr "Paparan Cetak" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Nama indeks :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" mesti nama dan semesti dari kekunci utama!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Jenis indeks :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Tambah ke indeks  %s kolum" @@ -11775,274 +11819,274 @@ msgstr "Jadual %s telah dipindahkan ke %s." msgid "Table %s has been copied to %s." msgstr "Jadual %s telah disalin ke %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Nama jadual adalah kosong" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(persatu)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Pindahkan jadual ke (pangkalandata.jadual):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Tukarnama jadual ke" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Salin jadual ke (pangkalandata.jadual):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Penyenggaraan Jadual" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Jadual %s telah dibuangkan" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Buang jadual (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Melonggok data bagi jadual" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Tiada pangkalan data" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Penyenggaraan Jadual" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "Baiki jadual" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Semak integriti rujukan:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Papar jadual" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Penggunaan ruang" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Berkesan" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Statistik Baris" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Panjang baris" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Saiz baris" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy msgid "Internal relation" msgstr "Ciri-ciri hubungan am" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Session value" msgid "Distinct values" msgstr "Nilai Sessi" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Tiada" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Jadual %s telah digugurkan" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Kekunci utama telah ditambah pada %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Indeks telah ditambah pada %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Papar maklumat PHP" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy msgid "Move columns" msgstr "Tambah medan baru" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Paparan Cetak" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Paparan Hubungan" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Cadangkan struktur jadual" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy msgid "Add column" msgstr "Tambah medan baru" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Pada Akhir Jadual" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Pada Awalan Jadual" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Selepas %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12196,71 +12240,38 @@ msgstr "" msgid "Create version" msgstr "Versi Pelayan" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Lakukan \"kueri melalui contoh\" (wilidcard: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "kueri-SQL" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Ulangtetap" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy msgctxt "for MIME transformation" msgid "Description" msgstr "tiada keterangan" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Anda tidak mempunyai hak mencukupi untuk berada disini sekarang!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profil telah dikemaskini." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/nb.po b/po/nb.po index 02965c97ae..9eaaf6dca6 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Vis alle" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Sidenummer:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,58 +37,58 @@ 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:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Utfør" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Nøkkel" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Beskrivelse" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Bruk denne verdien" @@ -106,88 +106,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databasen %1$s har blitt opprettet." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Database kommentar: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Kolonne" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Standard" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Linker til" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Kommentarer" @@ -196,14 +197,14 @@ msgstr "Kommentarer" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nei" @@ -216,122 +217,122 @@ msgstr "Nei" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ja" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Vis dump (skjema) av database" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Ingen tabeller i databasen." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Velg alle" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Fjern alle valgte" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Databasen er uten navn!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Databasen %s har endret navn til %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Databasen %s har blitt kopiert til %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Endre databasens navn til" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Fjern database" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Databasen %s har blitt slettet" -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Kopier databasen til" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Kun struktur" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktur og data" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Bare data" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE før kopiering" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Legg til %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Legg til AUTO_INCREMENT verdi" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Legg til begrensninger" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Bytt til kopiert database" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Sammenligning" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -339,59 +340,59 @@ msgid "" msgstr "" "phpMyAdmin konfigurasjonslager har blitt deaktivert. Finn ut hvorfor %sher%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Rediger eller eksporter relasjonsskjema" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabell" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Rader" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Størrelse" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "i bruk" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Opprettet" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Sist oppdatert" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Sist kontrollert" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -402,117 +403,117 @@ msgstr[1] "%s tabeller" msgid "You have to choose at least one column to display" msgstr "Du må velge minst en kolonne for visning" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Bytt til %svisuell bygger%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sorter" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Stigende" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Synkende" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Vis" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriterier" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Sett inn" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "og" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Slett" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Eller" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Endre" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Legg til/Slett kriterierad" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Legg til/Slett kolonner" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Oppdater spørring" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Bruk tabeller" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-spørring i database %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Kjør spørring" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Ingen tilgang" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "minst ett av ordene" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "alle ordene" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "med den nøyaktige setningen" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "som \"regular expression\"" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Søkeresultat for \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -521,278 +522,279 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Slett treffene for %s tabellen?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totalt: %s treff" msgstr[1] "Totalt: %s treff" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Søk i database" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Ord eller verdier å søke med (jokertegn: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Finn:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Ord er separert med et mellomrom (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "I tabellene:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "I kolonne:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Ingen tabeller funnet i databasen" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "ukjent" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har blitt tømt" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Visningen %s har blitt slettet" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har blitt slettet" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Overvåkning er aktiv." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Overvåkning er ikke aktiv." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikering" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Sum" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Med avkrysset:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Merk alle" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Merk overheng" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporter" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Tøm" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Slett" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Kontroller tabell" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimiser tabell" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Reparer tabell" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyser tabell" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Legg prefiks til tabell" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Erstatt tabellprefiks" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopier tabell med prefiks" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dataordbok" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Overvåkede tabeller" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Database" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Siste versjon" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Opprettet" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Oppdatert" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Status" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Handling" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Slett overvåkningsdata for denne tabellen" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "aktiv" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "ikke aktiv" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versjoner" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Overvåkningsrapport" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Strukturøyeblikksbilde" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Ikke overvåkede tabeller" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Overvåk tabell" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Databaselogg" @@ -804,16 +806,16 @@ msgstr "Feil type!" msgid "Selected export type has to be saved in file!" msgstr "Valgte eksporteringstype krever lagring til ei fil!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Feil parametere!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ikke nok plass til å lagre fila %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -821,12 +823,12 @@ msgstr "" "Fila %s eksisterer alt på serveren, endre navnet eller merk av for " "overskriving av fil." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webserveren har ikke tillatelse til å lagre fila %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump har blitt lagret til fila %s." @@ -835,86 +837,86 @@ msgstr "Dump har blitt lagret til fila %s." msgid "Invalid export type" msgstr "Ugyldig eksport-type" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Verdi for kolonnen \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Bruk OpenStreetMaps som baselag" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Linjestreng" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Ytre ring" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Indre ring" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Legg til linjestreng" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Legg til en indre ring" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Polygon" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Legg til polygon" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Legg til geometri" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Utdata" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -922,7 +924,7 @@ msgstr "" "Velg \"GeomFromText\" fra kolonnen \"Funksjon\" og lim inn teksten nedenfor " "inn i feltet \"Verdi\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -931,21 +933,21 @@ msgstr "" "Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen" "%s for måter å omgå denne begrensningen." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Vis bokmerke" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Bokmerket har blitt slettet." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Fila kunne ikke leses" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -954,7 +956,7 @@ msgstr "" "Du forsøkte å laste en komprimert fil som det ikke er støtte for (%s). Enten " "så er ikke støtte implementert eller den er slått av i din konfigurasjon." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -964,28 +966,28 @@ msgstr "" "filstørrelsen oversteg maksimum størrelse tillatt i din PHP konfigurasjon. " "Se FAQ 1.16" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Kan ikke konvertere filens tegnsett uten tegnsett konverteringsbibliotek" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Kan ikke starte importeringsprogramtilleggene, kontroller din installasjon!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Bokmerke %s opprettet" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen er fullført, %d spørringer utført." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -993,7 +995,7 @@ msgstr "" "Skripttidsabrudd passert, hvis du ønsker å fortsette importen kan du " "gjennopplaste fila og importeringen vil fortsette." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1002,23 +1004,23 @@ msgstr "" "at phpMyAdmin ikke vil være istand til å fullføre importeringen uten at du " "øker php tidsgrensen." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Tilbake" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin er mer brukervennlig med en rammekapabel nettleser." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-uttrykk er avslått." @@ -1028,7 +1030,7 @@ msgstr "\"DROP DATABASE\"-uttrykk er avslått." msgid "Do you really want to execute \"%s\"?" msgstr "Vil du virkelig " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Du er i ferd med å SLETTE en komplett database!" @@ -1068,7 +1070,7 @@ msgstr "Legg til index" msgid "Edit Index" msgstr "Rediger indeks" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Legg %d kolonne(r) til index" @@ -1086,16 +1088,16 @@ msgstr "Vertsnavnet er tomt!" msgid "The user name is empty!" msgstr "Brukernavnet er tomt!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Passordet er blankt!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Passordene er ikke like!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Legg til bruker" @@ -1112,23 +1114,24 @@ msgstr "Fjern valgte brukere" msgid "Close" msgstr "Lukk" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Rediger" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Live trafikk-graf" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Live tilkbl./prosess-graf" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Live spørrings-graf" @@ -1138,24 +1141,24 @@ msgstr "Statistikkdata" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Totalt" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Annet" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1175,7 +1178,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Prosesser" @@ -1193,7 +1196,7 @@ msgstr "Spørringer siden sist oppdatering" msgid "Questions (executed statements by the server)" msgstr "Spørringer (executed statements av serveren)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Spørringsstatistikk" @@ -1234,14 +1237,14 @@ msgid "System swap" msgstr "System swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1293,32 +1296,32 @@ msgstr "Bytes sendt" msgid "Bytes received" msgstr "Bytes mottatt" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "tilkoblinger" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1332,11 +1335,11 @@ msgstr "%d tabell(er)" msgid "Questions" msgstr "Spørringer" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Trafikk" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Innstillinger" @@ -1356,11 +1359,11 @@ msgstr "Legg graf til grid" msgid "Please add at least one variable to the series" msgstr "Legg minst én variabel til serien" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Ingen" @@ -1465,7 +1468,7 @@ msgstr "Endre dine innstillinger" msgid "Current settings" msgstr "Flere innstillinger" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1559,7 +1562,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Tid" @@ -1668,10 +1671,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" @@ -1731,9 +1734,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "Avbryt" @@ -1745,11 +1748,11 @@ msgstr "Laster" msgid "Processing Request" msgstr "Prosessforespørsel" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Feil i prosesseringsforespørsel" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Ingen databaser er valgt." @@ -1761,9 +1764,9 @@ msgstr "Dropper kolonne" msgid "Adding Primary Key" msgstr "Legger til primærnøkkel" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1809,19 +1812,19 @@ msgstr "Utfør indeks(er)" msgid "Show indexes" msgstr "Vis rutenett" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Slå av kontroll av fremmednøkler" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Påslått" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1859,7 +1862,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET-editor" @@ -1899,8 +1902,8 @@ msgstr "Vis spørringsboks" msgid "No rows selected" msgstr "Ingen rader valgt" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Endre" @@ -1910,18 +1913,18 @@ msgstr "Endre" msgid "Query execution time" msgstr "Maks kjøretid" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Lagre" @@ -1933,7 +1936,7 @@ msgstr "Skjul søkekriterier" msgid "Show search criteria" msgstr "Vis søkekriterier" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1985,12 +1988,12 @@ msgstr "Spørringsresultatshandlinger" msgid "Data point content" msgstr "Datapekerstørrelse" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2012,7 +2015,7 @@ msgstr "Velg fremmednøkkel" msgid "Please select the primary key or a unique key" msgstr "Velg primærnøkkelen eller en unik nøkkel" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Velg kolonne for visning" @@ -2103,7 +2106,7 @@ msgstr "Generer" msgid "Change Password" msgstr "Endre passord" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Mer" @@ -2200,63 +2203,63 @@ msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Des" @@ -2297,32 +2300,32 @@ msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Lør" @@ -2438,16 +2441,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "per sekund" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "per minutt" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "per time" @@ -2468,21 +2471,232 @@ msgstr "" msgid "Font size" msgstr "Fontstørrelse" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +#| msgid "Save directory" +msgid "Save edited data" +msgstr "Lagringsmappe" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Restore column order" +msgstr "CHAR textarea kolonner" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Start" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Forrige" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Neste" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Slutt" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "CHAR textarea rows" +msgid "Start row" +msgstr "CHAR textarea rader" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows:" +msgid "Number of rows" +msgstr "Antall rader:" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "More" +msgid "Mode" +msgstr "Mer" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "vannrett" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horisontal (roterte overskrifter)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "loddrett" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Sorter etter nøkkel" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Innstillinger" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Delvis tekst" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Hele strenger" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Relasjonsnøkkel" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Relasjonsvisningskolonne" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Vis binært innhold" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Vis BLOB innhold" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Vis binært innhold som HEX" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Nettvisertransformasjon" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Raden er slettet" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Avslutt" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "Kan være unøyaktig. Se FAQ 3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "i spørring" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Viser rader" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "totalt" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Spørring tok %01.4f sek" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Spørringsresultatshandlinger" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Forhåndsvisning (med all tekst)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Vis PDF-skjema" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +#| msgid "Create User" +msgid "Create view" +msgstr "Opprett bruker" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Link ikke funnet" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Opplastingsfila er større enn upload_max_filesize direktivet definert i php." "ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2490,53 +2704,68 @@ msgstr "" "Opplastingsfila er større enn MAX_FILE_SIZE direktivet som ble spesifisert i " "HTML-skjemaet." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Opplastingsfila ble bare delvis opplastet." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Mangler en midlertidig mappe." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Klarte ikke å skrive fila til harddisken." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Filopplasting stoppet av utvidelse." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Ukjent feil oppstod under filopplastingen." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" "Feil oppstod under forsøk på flytting av den opplastede fila, se FAQ 1.11" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Åpne nytt phpMyAdmin vindu" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Cookies må være slått på forbi dette punkt." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indekser" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unik" @@ -2549,8 +2778,8 @@ msgstr "Pakket" msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kommentar" @@ -2573,130 +2802,130 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Databaser" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Tjener" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktur" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Sett inn" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operasjoner" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Overvåkning" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tabellen ser ut til å være tom!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Databasen ser ut til å være tom!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Spørring ved eksempel (Query by Example)" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilegier" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Hendelser" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Bruker" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synkroniser" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binærlogg" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variabler" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Tegnsett" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Motorer" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Feil" @@ -2721,7 +2950,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rader innsatt." msgstr[1] "%1$d rader innsatt." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2822,16 +3051,110 @@ 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 +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 +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 +msgid "Value" +msgstr "Verdi" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Søk" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Sett inn" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Velg kolonner (minst ett):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Legg til søkekriterier (innhold i \"where\"-setningen):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Antall poster per side" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Visningsrekkefølge:" + +#: libraries/TableSearch.class.php:813 +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 "Maks antall rader som kan framvises" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Se de eksterne verdiene" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Additional search criteria" +msgstr "Skjul søkekriterier" + +#: 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 "Utfør en \"spørring ved eksempel\" (jokertegn: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Utfør en \"spørring ved eksempel\" (jokertegn: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +#| msgid "Control user" +msgid "How to use" +msgstr "Kontrollbruker" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Tilbakestill" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Ingen gyldig bildesti for stilen %s ble funnet!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Ingen forhandsvisning tilgjengelig." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "velg" @@ -2850,7 +3173,7 @@ msgstr "Stilen %s ble ikke funnet!" msgid "Theme path not found for theme %s!" msgstr "Stilsti ble ikke funnet for stilen %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3149,13 +3472,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Kan ikke koble til: ugyldige innstillinger." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Velkommen til %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3164,7 +3487,7 @@ 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." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3180,61 +3503,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Cookies må være slått på forbi dette punkt." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Logg inn" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Du kan skrive vertsnavn/IP adresse og port separert med mellomrom." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Tjener" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Brukernavn:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Passord:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Tjenervalg" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Cookies må være slått på forbi dette punkt." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Innlogging uten passord er forbudt av konfigurasjonen (see AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Ingen aktivitet på %s sekunder eller mer, du må logge inn på nytt" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Kan ikke logge inn til MySQL tjeneren" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Ugyldig brukernavn/passord. Ingen tilgang." @@ -3268,7 +3585,7 @@ msgstr "delt" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabeller" @@ -3280,13 +3597,13 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Overheng" @@ -3311,32 +3628,24 @@ msgstr "Kontroller privilegier for databasen "%s"." msgid "Check Privileges" msgstr "Kontroller privilegier" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Could not save configuration" msgid "Failed to read configuration file" msgstr "Kunne ikke lagre konfigurasjonen" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Kunne ikke laste standard konfigurasjonsfil fra: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3348,216 +3657,194 @@ msgstr "" "$cfg['PmaAbsoluteUri'] variabelen MÅ være innstilt i din " "konfigurasjonsfil!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Ugyldig tjenerindeks: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du burde oppgradere til %s %s eller nyere." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentasjon" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-spørring" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Kunne ikke koble til SQL validerer!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Ikke forklar SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "uten PHP kode" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Lag PHP kode" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Oppdater" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Ikke teste SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Test SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Inline redigering av denne spørringa" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profilering" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Søn" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B, %Y %H:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dager, %s timer, %s minutter og %s sekunder" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutiner" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Start" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Forrige" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Neste" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Slutt" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Hopp til databasen "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Klikk for å velge" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Bla gjennom datamaskinen:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen du anga for opplasting kan ikke nåes" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Det er ingen filer å laste opp" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Skriv ut" @@ -3587,8 +3874,8 @@ msgid "Closed" msgstr "Lukket" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Avslått" @@ -3730,9 +4017,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Tilbakestill" @@ -3956,10 +4243,6 @@ msgstr "Foreslå tabellstruktur" msgid "Show binary contents as HEX by default" msgstr "Vis binært innhold som heksadesimal som standard" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Vis binært innhold som HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Vis databaser som en liste istedet for en nedfallsliste" @@ -4016,7 +4299,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Maks kjøretid" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Lagre som fil" @@ -4025,7 +4308,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4129,7 +4412,7 @@ msgid "MIME type" msgstr "MIME-type" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relasjoner" @@ -5749,9 +6032,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Passord" @@ -6038,12 +6321,6 @@ msgstr "" msgid "Details..." msgstr "Detaljer..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "Kan være unøyaktig. Se FAQ 3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6051,18 +6328,18 @@ msgstr "" "Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Endre passord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Intet passord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Gjenta" @@ -6085,22 +6362,22 @@ msgstr "Opprett ny database" msgid "Create" msgstr "Opprett" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Ingen privilegier" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Navn" @@ -6268,26 +6545,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Kodingskonvertering" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "Opprett versjon %s av %s.%s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -6413,192 +6690,27 @@ msgstr "" msgid "Language" msgstr "Språk" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -#| msgid "Save directory" -msgid "Save edited data" -msgstr "Lagringsmappe" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Restore column order" -msgstr "CHAR textarea kolonner" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "CHAR textarea rows" -msgid "Start row" -msgstr "CHAR textarea rader" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of rows" -msgstr "Antall rader:" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "More" -msgid "Mode" -msgstr "Mer" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "vannrett" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horisontal (roterte overskrifter)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "loddrett" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Sorter etter nøkkel" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Innstillinger" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Delvis tekst" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Hele strenger" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Relasjonsnøkkel" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Relasjonsvisningskolonne" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Vis binært innhold" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Vis BLOB innhold" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Nettvisertransformasjon" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Raden er slettet" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Avslutt" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "i spørring" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Viser rader" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "totalt" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Spørring tok %01.4f sek" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Spørringsresultatshandlinger" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Forhåndsvisning (med all tekst)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Vis PDF-skjema" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -#| msgid "Create User" -msgid "Create view" -msgstr "Opprett bruker" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Link ikke funnet" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Versionsinformasjon" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Datalagringsmappe" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Felles del av filsti for alle InnoDB datafiler." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Datafiler" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Autoforstørrende økning" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6606,11 +6718,11 @@ msgstr "" "Økningen som brukes for å forstørre et autoforstørrende tabellager når den " "blir full." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Mellomlagerstørrelse" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6618,79 +6730,79 @@ msgstr "" "størrelsen på datalageret InnoDB bruker for å mellomlagre data og indekser " "for sine tabeller." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Mellomlager" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB status" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Mellomlagerbruk" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "sider" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Ledige sider" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Endrede sider" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Sider som inneholder data" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Sider som skal tømmes" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Opptatte sider" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Tilknyttede sider" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Mellomlageraktivitet" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Leseforespørsler" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Skriveforespørsler" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Lesebommer" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Skriveforsinkelser" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Lesebommer i %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Skriveforsinkelser i %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Datapekerstørrelse" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6698,11 +6810,11 @@ msgstr "" "Standard pekerstørrelse i bytes, som brukes av CREATE TABLE for MyISAM " "tabeller når ingen MAX_ROWS innstillinger er spesifisert." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Automatisk gjennopprettignsmodus" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6710,11 +6822,11 @@ msgstr "" "Modusen for automatisk gjennoppretting av MyISAM tabeller som har kræsjet, " "konfigurert via --myisam-recover tjeneroppstartsinnstillingen." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Maksimum størrelse for midlertidige sorteringsfiler" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6724,11 +6836,11 @@ msgstr "" "den gjennoppretter en MyISAM indeks (med spørringene REPAIR TABLE, ALTER " "TABLE, eller LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Maksimum størrelse for midlertidige filer under indeksopprettelse" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6738,11 +6850,11 @@ msgstr "" "bli større enn å bruke nøkkelmellomlager med størrelsen spesifisert her, så " "bruk nøkkellagermetoden." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Reparer tråder" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6750,11 +6862,11 @@ msgstr "" "Hvis denne verdien er større enn 1 så blir MyISAM tabellindekser opprettet " "parallelt (hver indeks i sin egen tråd) under REPAIR av sorteringsprosessen." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Sorteringsbufferstørrelse" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6762,11 +6874,11 @@ msgstr "" "Bufferet som brukes ved sortering av MyISAM indekser under en REPAIR TABLE " "eller når indekser blir opprettet med CREATE INDEX eller ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Indeksmellomlagerstørrelse" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6774,11 +6886,11 @@ msgstr "" "Dette er mengden minne tilordnet indeksmellomlageret. Standard verdi er " "32MB. Minnet tilordnet her brukes kun for mellomlagring av indekssider." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Radmellomlagerstørrelse" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6788,11 +6900,11 @@ msgstr "" "Standard verdi er 32MB. Dette minnet blir brukt til å mellomlagre endringer " "til \"handle data\" (.xtd) og radpeker (.xtr) filer." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Loggmellomlagerstørrelse" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6800,11 +6912,11 @@ msgstr "" "Mengden minne tilordnet transaksjonsloggmellomlageret brukt til å " "mellomlagre transakjsonsloggdata. Standard verdi er 16MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Loggfilterskel" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6812,11 +6924,11 @@ msgstr "" "Størrelsen til en transaksjonslogg før rollover, og en ny logg blir " "opprettet. Standard verdi er 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Transaksjonsbufferstørrelse" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6824,11 +6936,11 @@ msgstr "" "Størrelsen til det globale transaksjonsloggmellomlageret (databasemotoren " "tilordner 2 mellomlager med denne størrelsen). Standard verdi er 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Kontrollpunktfrekvens" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6836,11 +6948,11 @@ msgstr "" "Mengden data skrevet til transaksjonsloggen før en punktsjekk blir utført. " "Standard verdi er 24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Dataloggterskel" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6852,11 +6964,11 @@ msgstr "" "verdien av denne variabelen kan økes for å øke den totale mengden data som " "kan lagres i databasen." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Søppelterskel" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6864,11 +6976,11 @@ msgstr "" "Prosentandelen søppel på en dataloggfil før den komprimeres. Dette er en " "verdi mellom 1 og 99. Standard er 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Loggbufferstørrelse" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6878,27 +6990,27 @@ msgstr "" "verdi er 256MB. Databasemotoren tillordner ett buffer per tråd, men bare " "hvis tråden er påkrevd å skrive en datalogg." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Datafil vekststørrelse" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Vekststørrelsen til \"handle data\" filene (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Radfil vekststørrelse" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Vekststørrelsen til radpekerfilene (.xtr)." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Antall loggfiler" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6910,20 +7022,20 @@ msgstr "" "gamle logger bli slettet, ellers så vil de bli gitt nytt navn og gitt det " "neste høyeste nummeret." -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Relasjoner" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6980,14 +7092,14 @@ msgstr "Dataark for tabell" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Hendelse" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7053,14 +7165,14 @@ msgstr "Vis MIME-typer" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Vert" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Generert den" @@ -7258,23 +7370,14 @@ msgstr "Visning" msgid "Export contents" msgstr "Eksporter innhold" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Åpne nytt phpMyAdmin vindu" - #: libraries/gis_visualization.lib.php:135 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." msgstr "Ingen data funnet for graf." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7378,12 +7481,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Tabellnavn" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Kolonnenavn" @@ -7461,98 +7564,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funksjon" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Skjul" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binær" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binær - må ikke redigeres" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "webtjener opplastingskatalog" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Sett inn" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, 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:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "og så" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Sett inn som ny rad" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Sett inn som ny rad og ignorer feil" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Returner" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Sett inn en ny post" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Tilbake til denne siden" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Rediger neste rad" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Verdi" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" @@ -7567,38 +7652,38 @@ msgstr "Ingen" msgid "Convert to Kana" msgstr "Konverter til Kana" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fr" msgid "From" msgstr "Fre" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Send" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Apply index(s)" msgid "Add prefix" msgstr "Utfør indeks(er)" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Vil du virkelig " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Ingen endring" @@ -7810,85 +7895,85 @@ msgstr "Endre navigasjonsrammen" msgid "This format has no options" msgstr "Dette formatet har ingen valg" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "ikke OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Påslått" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Generelle relasjonsegenskaper" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Vis egenskaper" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Lag PDF-dokumenter" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Vis kolonnekommentarer" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Nettvisertransformasjon" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 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:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Lagret SQL-spørring" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-historie" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Vedvarende forbindelser" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Raske steg for å sette opp avansert funksjonalitet:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Opprett nødvendige tabeller med examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Opprett en pma bruker og gi tilgang til disse tabellene." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7896,12 +7981,12 @@ msgstr "" "Slå på avansert funksjonalitet i konfigurasjonsfila (config.inc.php), f.eks. med eksempel fra config.sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-logginn til phpMyAdmin for å laste den oppdaterte konfigurasjonsfila." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "ingen beskrivelse" @@ -7909,7 +7994,7 @@ msgstr "ingen beskrivelse" msgid "Slave configuration" msgstr "Slavekonfigurasjon" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Endre eller rekonfigurer mastertjener" @@ -7923,13 +8008,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Brukernavn" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -7942,7 +8027,7 @@ msgid "Slave status" msgstr "Slavestatus" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variabler" @@ -7958,38 +8043,38 @@ msgstr "" "Kun slaver startet med --report-host=host_name opsjonen er synlig i denne " "lista." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Legg til slavereplikasjonsbruker" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Alle brukere" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Bruk tekstfelt" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Alle verter" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Denne vert" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Vis vert tabell" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8005,7 +8090,7 @@ msgstr "Generer passord" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -8039,103 +8124,104 @@ msgstr "Tabellen %1$s har blitt opprettet." msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Edit server" msgid "Edit event" msgstr "Rediger tjener" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_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:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." msgid "Details" msgstr "Detaljer..." -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Hendelsestype" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Hendelsestype" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Endre" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Oppstart" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Slutt" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "Komplette inserts" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8166,7 +8252,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -8188,122 +8274,122 @@ msgstr "Kolonne %s har blitt slettet" msgid "Routine %1$s has been created." msgstr "Tabellen %1$s har blitt opprettet." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Redigeringsmodus" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutiner" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Direkte linker" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Lengde/Sett*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Utfør indeks(er)" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Fjern database" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Returtype" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Lengde/Sett*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tabellinnstillinger" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Sikkerhet" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, 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:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8325,44 +8411,44 @@ msgstr "Kolonne %s har blitt slettet" msgid "Trigger %1$s has been created." msgstr "Tabellen %1$s har blitt opprettet." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new server" msgid "Edit trigger" msgstr "Legg til en ny tjener" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Triggere" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Tid" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Ugylding tabellnavn" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8476,7 +8562,7 @@ msgstr "Det er ingen filer å laste opp" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8485,7 +8571,7 @@ msgstr "Tabellen %s eksisterer ikke!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8493,7 +8579,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Vennligst konfigurer koordinatene for tabell %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8506,27 +8592,27 @@ msgstr "Skjema for %s databasen - Side %s" msgid "This page does not contain any tables!" msgstr "Fila %s inneholder ingen nøkkel id" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Relasjonsskjema" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Innholdsfortegnelse" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Attributter" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Ekstra" @@ -8638,7 +8724,7 @@ msgstr "Ukjent språk: %1$s." msgid "Current Server" msgstr "Gjeldende tjener" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Kildedatabase" @@ -8656,7 +8742,7 @@ msgstr "Fjerntjener" msgid "Difference" msgstr "Differanse" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Måldatabase" @@ -8675,7 +8761,7 @@ msgstr "Kjør SQL spørring/spørringer på tjener %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Fjern" @@ -8684,11 +8770,11 @@ msgstr "Fjern" msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "La alle brukere ha adgang til dette bokmerket" @@ -8785,7 +8871,7 @@ msgstr "" "SQL-kontrolleren kunne ikke startes. Vennligst sjekk at du har installert de " "nødvendige php-tilleggene som beskrevet i %sdokumentasjonen%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." @@ -8812,8 +8898,8 @@ msgstr "" "eller annen "escaping" med dette formatet: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indeks" @@ -8865,13 +8951,13 @@ msgstr "Ingen" msgid "As defined:" msgstr "Som definert:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primær" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Fulltekst" @@ -8885,17 +8971,17 @@ msgstr "" msgid "after %s" msgstr "Etter %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Legg til %s kolonne(r)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Du må sette inn minst en kolonne." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Lagringsmotor" @@ -8903,43 +8989,6 @@ msgstr "Lagringsmotor" msgid "PARTITION definition" msgstr "Partisjonsdefinisjon" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Søk" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Velg kolonner (minst ett):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Legg til søkekriterier (innhold i \"where\"-setningen):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Antall poster per side" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Visningsrekkefølge:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Se de eksterne verdiene" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Utfør en \"spørring ved eksempel\" (jokertegn: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9089,13 +9138,13 @@ msgstr "" msgid "Manage your settings" msgstr "Endre dine innstillinger" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Endringene er lagret" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9106,7 +9155,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Kunne ikke lagre konfigurasjonen" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9139,7 +9188,7 @@ msgstr "Kollasjon av MySQL-oppkobling" msgid "Appearance Settings" msgstr "Andre hovedinnstillinger" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Flere innstillinger" @@ -9163,9 +9212,9 @@ msgstr "Vis versjoner" msgid "Protocol version" msgstr "Protokollversjon" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Bruker" @@ -9317,146 +9366,146 @@ msgstr "" "Tjeneren kjører med Suhosin. Sjekk %sdokumentasjonen%s for potensielle " "problemer." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Ingen databaser" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Endre tabellrekkefølge ved" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Endre tabellrekkefølge ved" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Opprett tabell" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Vennligst velg en database" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Skjul/Vis venstre meny" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Lagre posisjon" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Opprett relasjon" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Oppdater" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Hjelp" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Vinklede linker" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Direkte linker" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Lås til ruter" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Liten/Stor alle" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Veksle mellom liten/stor" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "For å velge relasjon, klikk :" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Eksporter koordinater for PDF skjema" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Kjør spørring" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Flytt meny" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Skjul/Vis alle" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Skjul/Vis tabeller uten relasjoner" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Antall tabeller" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Slett relasjon" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Relasjon slettet" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Eksporter" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "i spørring" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy #| msgid "Rename view to" msgid "Rename to" msgstr "Endre tabellens navn" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Brukernavn" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Opprett" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9470,61 +9519,61 @@ msgstr "Siden har blitt opprettet" msgid "Page creation failed" msgstr "Sideopprettelsen feilet" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "sider" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importer filer" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Lag en ny indeks" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Brukernavn" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "anbefalt" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Feil: relasjoner eksisterer allerede." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Feil: Relasjon ikke opprettet." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relasjon lagt til" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Intern relasjon lagt til" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relasjon slettet" @@ -9536,97 +9585,97 @@ msgstr "Feil oppstod under lagring av Designerkoordinater." msgid "Modifications have been saved" msgstr "Endringene er lagret" -#: prefs_forms.php:82 +#: prefs_forms.php:85 #, fuzzy #| msgid "Submitted form contains errors" msgid "Cannot save settings, submitted form contains errors" msgstr "Innsendt skjema inneholder feil" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Could not import configuration" msgstr "Kunne ikke laste standard konfigurasjonsfil fra: %1$s" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Importer filer" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 #, fuzzy #| msgid "Other core settings" msgid "You have no saved settings!" msgstr "Andre hovedinnstillinger" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 #, fuzzy #| msgid "Server configuration" msgid "Merge with current configuration" msgstr "Tjenerinnstillinger" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importer filer" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Alle" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabellen ble ikke funnet eller ikke konfigurert i %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The %s table doesn't exist!" msgid "File doesn't exist" @@ -9636,17 +9685,17 @@ msgstr "Tabellen %s eksisterer ikke!" msgid "Select binary log to view" msgstr "Velg binærlogg for visning" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Filer" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Forkort vist spørring" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Vis hele spørringen" @@ -9662,7 +9711,7 @@ msgstr "Posisjon" msgid "Original position" msgstr "Original posisjon" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informasjon" @@ -9670,7 +9719,7 @@ msgstr "Informasjon" msgid "Character Sets and Collations" msgstr "Tegnsett og sammenligninger" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9678,24 +9727,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s databasene har blitt slettet." msgstr[1] "%s databasene har blitt slettet." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statistikk for databaser" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Masterreplikasjon" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Slavereplikasjon" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Slå på statistikk" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9707,155 +9756,155 @@ msgstr "" msgid "Storage Engines" msgstr "Lagringsmotorer" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Vis dumpet skjema av databaser" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Start" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Versjon" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Avslått" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Inkluder alle privilegier unntatt GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Tillater endring av struktur på eksisterende tabeller." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Tillater endring og sletting av lagrede rutiner." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Tillater oppretting av nye databaser og tabeller." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Tillater oppreting av lagrede rutiner." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Tillater oppretting av nye tabeller." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Tillater oppretting av midlertidige tabeller." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillater oppretting, sletting og navneendring av brukerkontoer." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Tillater oppretting av nye visninger." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Tillater sletting av data." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Tillater sletting av databaser og tabeller." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Tillater sletting av tabeller." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Tillater å sette opp hendelser for hendelseskalenderen" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Tillater utføring av lagrede rutiner." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Tillater import og eksport av data til og fra filer." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillater å legge til brukere og privilegier uten å oppfriske " "privilegietabellene." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Tillater oppretting og sletting av indekser." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Tillater å legge til og erstatte data." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Tillater låsing av tabeller for den kjørende tråden." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Begrenser antall nye tilkoblinger brukeren kan åpne per time." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begrenser antall spørringer brukeren kan sende til tjeneren per time." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9863,61 +9912,61 @@ msgstr "" "Begrenser antall kommandoer som kan endre tabeller eller databaser brukeren " "kan utføre per time." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Tillater visning av prosessene til alle brukere" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "har ingen effekt i denne versjonen av MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillater oppfrisking av tjenerinnstillinger og oppfrisking av mellomlager." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Gir tillatelse til brukeren til å spørre hvor replikasjonsslaver eller -" "tjenere er." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Trenges av replikasjonsslavene." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Tillater lesing av data." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Gir adgang til komplett liste over databaser." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillater utføring av SHOW CREATE VIEW spørringer." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Tillater avslutting av tjener." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9927,168 +9976,168 @@ msgstr "" "fleste administrative operasjoner som å sette globale variabler eller " "avslutting av andre brukeres tråder." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Tillater opprettelse og sletting av triggere" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Tillater endring av data." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Ingen privilegier." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Ingen" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Tabell-spesifikke privilegier" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "OBS: MySQL privilegiumnavn er på engelsk" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administrasjon" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globale privilegier" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Databasespesifikke privilegier" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Ressursbegrensninger" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Merk: Ved å sette disse til 0 (null) fjernes begrensningen." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Innlogingsinformasjon" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Ikke endre passordet" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Ingen bruker(e) funnet." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Brukeren %s finnes fra før!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Du har lagt til en ny bruker." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har oppdatert privilegiene til %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har fjernet privilegiene til %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Passordet til %s er endret." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Sletter %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Ingen brukere merket for sletting!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Oppfrisker privilegiene" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "De valgte brukerne har blitt slettet." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Oppfriskingen av privilegiene lyktes." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Rediger privilegier" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Tilbakekall" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Eksporter" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Alle" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Privilegier" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegier" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Brukeroversikt" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Rettighet" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Fjern valgte brukere" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10101,133 +10150,133 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Kolonne-spesifikke privilegier" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Legg til privilegier til følgende database" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Legg til privilegier til følgende tabell" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Endre innloggingsinformasjon / kopiere bruker" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Opprett ny bruker med de samme privilegier og ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... behold den gamle." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... slett den gamle fra brukertabellene." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Brukerdatabase" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "Opprett database med samme navn og gi alle rettigheter" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gi alle privilegier for databasen "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Brukere som har adgang til "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "databasespesifikk" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "jokertegn" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "Visningen %s har blitt slettet" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Ukjent feil" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Kan ikke koble til master %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Kan ikke lese masterloggposisjon. Muligens privilegieproblem på master." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Kan ikke endre master" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "Mastertjener endret til %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Denne tjeneren er konfigurert som master i en replikasjonsprosess." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Vis masterstatus" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Vis tilkoblede slaver" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10236,11 +10285,11 @@ msgstr "" "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. " "Ønsker du å konfigurere den?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Masterkonfigurering" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10254,19 +10303,19 @@ msgstr "" "databasene) eller du kan velge å ignorere alle databaser som standard og " "tillate bare enkelte databaser å bli replikert. Vennligst velg modus:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Repliker alle databaser; Ignorer:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Ignorer alle databaser; repliker:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Vennligst velg databaser:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10274,7 +10323,7 @@ msgstr "" "Legg til følgende linjer på slutten av din my.cnf og restart MySQL tjeneren " "etterpå.." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10284,88 +10333,88 @@ msgstr "" "vil du se en melding som informerer deg at denne tjeneren er " "konfigurert som master" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread kjører ikke!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread kjører ikke!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Tjener er konfigurert som slave i en replikasjonsprosess. Ønsker du å:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Se slavestatustabell" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Synkroniser databaser med master" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Kontrollslave:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Full start" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Full stopp" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Resett slave" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "SQL Thread %s only" msgid "Start SQL Thread only" msgstr "Kun SQL tråd %s" -#: server_replication.php:358 +#: server_replication.php:359 #, fuzzy #| msgid "SQL Thread %s only" msgid "Stop SQL Thread only" msgstr "Kun SQL tråd %s" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "IO Thread %s only" msgid "Start IO Thread only" msgstr "Kun IO tråd %s" -#: server_replication.php:363 +#: server_replication.php:364 #, fuzzy #| msgid "IO Thread %s only" msgid "Stop IO Thread only" msgstr "Kun IO tråd %s" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Feilbehandling:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Å hoppe over feil kan føre til usynkroniserte master og slave!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Hopp over nåværende feil" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Hopp over neste" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "feil." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10374,163 +10423,163 @@ msgstr "" "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. " "Ønsker du å konfigurere den?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråd %s ble avsluttet med suksess." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunne ikke avslutte tråd %s. Den er sansynligvis alt avsluttet." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Handler" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Spørringsmellomlager" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Tråder" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Midlertidige data" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Forsinkede innsettinger" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Nøkkelmellomlager" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Sammenføyninger" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Sortering" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Transaksjonskoordinator" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Vis åpne tabeller" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Vis slaveverter" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Vis slavestatus" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Kjøringsinformasjon" -#: server_status.php:793 +#: server_status.php:792 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Se slavestatustabell" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Oppdater" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Filter" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Ikke endre passordet" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Vis åpne tabeller" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Vis åpne tabeller" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relasjoner" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Spørringstype" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "Informasjon" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10538,33 +10587,33 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Endre oppstartssiden" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Oversikt" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10572,19 +10621,19 @@ msgstr "" "Denne tjeneren jobber både som tjener og slave i " "replikasjonsprosessen." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" "Denne tjeneren er konfigurert som tjener i en replikasjonsprosess." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" "Denne tjeneren er konfigurert som slave i en replikasjonsprosess." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10592,11 +10641,11 @@ msgstr "" "For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Replikasjonsstatus" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10604,47 +10653,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Mottatt" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Sendt" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "maks. samtidige tilkoblinger" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Feilede forsøk" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Avbrutt" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Kommando" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -10654,17 +10703,17 @@ msgstr "" "som overskred verdien av binlog_size og brukte en midlertidig fil for å " "lagre spørringer fra transaksjonen." -#: server_status.php:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antall transaksjoner som brukte den midlertidige binærloggmellomlageret." -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10676,11 +10725,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Antall midlertidige filer mysqld har opprettet." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10688,7 +10737,7 @@ msgstr "" "Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under " "utføriing av spørringer." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10696,7 +10745,7 @@ msgstr "" "Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil " "oppstod (mest sannsynlig duplisert nøkkel)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10704,23 +10753,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Antall INSERT DELAYED rader skrevet." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Antall utførte FLUSH uttrykk." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Antall interne COMMIT uttrykk." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10730,7 +10779,7 @@ msgstr "" "tabell med et gitt navn. Dette blir kalt oppdaging (discovery). " "Handler_discover indikerer antall ganger tabeller har blitt oppdaget." -#: server_status.php:1335 +#: 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, " @@ -10740,7 +10789,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:1336 +#: server_status.php:1335 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." @@ -10749,7 +10798,7 @@ msgstr "" "er høyt gir dette en god indikasjon på at dine spørringer og tabeller er " "riktig indeksert." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10760,7 +10809,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:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10768,7 +10817,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:1339 +#: 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 " @@ -10780,7 +10829,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:1340 +#: server_status.php:1339 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 " @@ -10792,37 +10841,37 @@ msgstr "" "tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for " "å utnytte de indeksene du har." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Antall interne ROLLBACK kommandoer." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Antall sider som inneholder data (endret eller uendret)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Antall sider for tiden endret." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Antall tomme sider." -#: server_status.php:1348 +#: 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 " @@ -10831,7 +10880,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:1349 +#: server_status.php:1348 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 " @@ -10843,11 +10892,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:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på midlertidig mellomlager i sider." -#: server_status.php:1351 +#: 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." @@ -10855,7 +10904,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:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10863,11 +10912,11 @@ msgstr "" "Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB " "utfører en sekvensiell full tabellskanning." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Antall logiske leseforespørsler InnoDB har utført." -#: server_status.php:1354 +#: 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." @@ -10875,7 +10924,7 @@ msgstr "" "Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra " "mellomlageret og måtte utføre en enkelsidelesnining." -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10889,55 +10938,55 @@ msgstr "" "telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt " "innstilt så vil denne verdien være liten." -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Antall fsync() operasjoner så langt." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Antall ventende fsync() operasjoner." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Antall ventende lesinger." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Antall ventende skrivinger." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Mengden data lest så langt, i bytes." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Antall utførte lesninger." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Antall utførte skrivinger." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Mengden data skrevet så langt, i bytes." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -10945,35 +10994,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Antall loggskrivingsforespørsler." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Antall fysiske skrivinger til loggfila." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Antall fsync-skrivinger utført på loggfila." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Antall ventende loggfil-fsyncs." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Ventende loggfilskrivinger." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Antall bytes skrevet til loggfila." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Antall sider opprettet." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10981,51 +11030,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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Antall sidelesninger." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Antall sideskrivinger." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Antall ventende radlåsinger." -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder." -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brukt for å få radlåsinger, i millisekunder." -#: server_status.php:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Antall rader slettet fra InnoDB tabeller." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Antall rader satt inn i InnoDB tabeller." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Antall rader lest fra InnoDB tabeller." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Antall rader oppdatert i InnoDB tabeller." -#: server_status.php:1387 +#: 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." @@ -11034,7 +11083,7 @@ msgstr "" "ennå har blitt skrevet til harddisken. Dette var tidligere kjent som " "Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -11042,7 +11091,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:1389 +#: server_status.php:1388 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 " @@ -11051,17 +11100,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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Importfilformat" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -11071,26 +11120,26 @@ msgstr "" "stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan " "kalkuleres med Key_reads/Key_read_requests." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -11101,17 +11150,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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11119,38 +11168,38 @@ msgstr "" "Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din " "tabellmellomlagerverdi for liten." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Antall åpne filer." -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)." -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Antall åpne tabeller." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Mengden ledig minne i spørringsmellomlager." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Antall mellomlagertreff." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Antall spørringer lagt til i mellomlageret." -#: server_status.php:1408 +#: 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 " @@ -11163,7 +11212,7 @@ msgstr "" "og sist brukt (least recently used (LRU)) strategi for å finne hvilke " "spørringer som skal fjernes fra mellomlageret." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11171,19 +11220,19 @@ msgstr "" "Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. " "query_cache_type innstillingen)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Antall spørringer registrert i mellomlageret." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Totale antall blokker i spørringsmellomlageret." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -11191,11 +11240,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -11203,7 +11252,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:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11211,15 +11260,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11227,12 +11276,12 @@ msgstr "" "Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har " "gjentatt transaksjoner." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11240,12 +11289,12 @@ msgstr "" "Antall tråder som har brukt mer enn slow_launch_time sekunder under " "opprettelse." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11255,24 +11304,24 @@ msgstr "" "denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size " "systemvariabelen." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Antall sorteringer som ble utført med rekkefølger." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Antall sorterte rader." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -11284,7 +11333,7 @@ msgstr "" "først optimalisere dine spørringer, og deretter enten splitte din tabell " "eller tabeller eller bruke replikasjon." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11294,11 +11343,11 @@ msgstr "" "Threads_created/Connections. Hvis denne verdien er rød bør du øke din " "thread_cache_size." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Antall åpne tilkoblinger." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11309,75 +11358,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:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Overvåkning er ikke aktiv." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Antall tråder som ikke sover." -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "CHAR textarea rows" msgid "Start Monitor" msgstr "CHAR textarea rader" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Utfør indeks(er)" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Oppdater" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR textarea kolonner" -#: server_status.php:1627 +#: server_status.php:1626 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Feilbehandling:" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Gjennopprett standard verdi" -#: server_status.php:1632 +#: server_status.php:1631 #, fuzzy msgid "Monitor Instructions" msgstr "Informasjon" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11386,7 +11435,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11394,18 +11443,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11413,11 +11462,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11425,97 +11474,97 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Fjern database" -#: server_status.php:1680 +#: server_status.php:1679 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "Se slavestatustabell" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Velg tabeller" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Ugylding tabellnavn" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Legg til en ny tjener" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL spørringer" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Vis statistikk" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select page" msgid "Selected time range:" msgstr "Velg side" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Spørringstype" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11523,7 +11572,7 @@ msgid_plural "%d seconds" msgstr[0] "Sekund" msgstr[1] "Sekund" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11531,111 +11580,111 @@ msgid_plural "%d minutes" msgstr[0] "Minutt" msgstr[1] "Minutt" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Kunne ikke koble til kilden" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Kunne ikke koble til målet" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' database eksisterer ikke." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Struktursynkronisering" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Datasynkronisering" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "ikke tilstede" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Strukturdifferanse" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Datadifferanse" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Legg til kolonne(r)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Fjern kolonne(r)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Endre kolonne(r)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Fjern indeks(er)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Utfør indeks(er)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Oppdater rad(er)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Sett inn rad(er)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Ønsker du å slette alle tidligere rader fra måltabeller?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Utfør valgte endringer" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Synkroniser databaser" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Valgte måltabeller har blitt synkronisert med kildetabeller." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Måldatabase har blitt synkronisert med kildedatabase" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL spørringer" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Skriv inn manuelt" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Nåværende tilkobling" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Konfigurasjon: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11643,19 +11692,19 @@ msgstr "" "Måldatabase vil bli fullstendig synkronisert med kildedatabase. " "Kildedatabase vil forbli uforandret." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Tjenervariabler og -innstillinger" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Økts verdi" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Global verdi" @@ -12042,185 +12091,185 @@ msgstr "Nøkkelen bør inneholde tall, bokstaver [em]og[/em] spesielle tegn" msgid "Wrong data" msgstr "Ingen databaser" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Vil du virkelig " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Viser som PHP kode" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Validert SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL-resultat" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Generert av" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene i tabellen `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Navn" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabellen %1$s har blitt endrett" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "De valgte brukerne har blitt slettet." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Kolonne" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Inline" msgctxt "Chart type" msgid "Spline" msgstr "Inline" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Pakket" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Rapporttittel" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL spørringer" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Verdi" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Verdi" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Tabel %s eksisterer allerede!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Tabellen %1$s har blitt opprettet." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Vis dump (skjema) av tabell" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Vis tjenerutvalg" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "CHAR textarea columns" msgid "Label column" msgstr "CHAR textarea kolonner" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- ingen -" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Antall loggfiler" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Lagre som fil" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12238,33 +12287,33 @@ msgstr "Kan ikke endre indeks til PRIMARY!" msgid "No index parts defined!" msgstr "Ingen indeksdeler definert!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Apply index(s)" msgid "Add index" msgstr "Utfør indeks(er)" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Redigeringsmodus" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Indeksnavn :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" være navnet til og bare til en primærnøkkel!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Indekstype :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Legg til indeks %s kolonne(r)" @@ -12287,158 +12336,158 @@ msgstr "Tabellen %s har blitt flyttet til %s." msgid "Table %s has been copied to %s." msgstr "Tabellen %s er kopiert til %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Tabellnavnet er tomt!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Endre tabellrekkefølge ved" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(enkeltvis)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Flytt tabell til (database.tabell):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Tabellinnstillinger" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Endre tabellens navn" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopier tabell til (database.tabell):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Bytt til kopiert tabell" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Tabellvedlikehold" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmenter tabell" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabelen %s har blitt oppfrisket" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Oppfrisk tabellen (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" msgstr "Slett overvåkningsdata for denne tabellen" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy #| msgid "Go to database" msgid "Delete the table (DROP)" msgstr "Gå til database" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Partisjonsvedlikehold" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partisjon %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analyser" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Kontroller" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimaliser" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Gjenoppbygg" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Reparer" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Fjern partisjonering" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Sjekk referanseintegritet:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Vis tabeller" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Plassbruk" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Radstatistikk" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "statisk" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dynamisk" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Radlengde" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Radstørrelse" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Feil oppstod under forsøk på opprettelse av fremmednøkkel på %1$s " "(kontroller datatyper)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Interne relasjoner" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12446,115 +12495,115 @@ msgstr "" "En intern relasjon er ikke nødvendig når en tilsvarende FOREIGN KEY relasjon " "eksisterer." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Fremmednøkkelbegrensning" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Se gjennom distinkte verdier" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 #, fuzzy #| msgid "Adding Primary Key" msgid "Add primary key" msgstr "Legger til primærnøkkel" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Apply index(s)" msgid "Add SPATIAL index" msgstr "Utfør indeks(er)" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Ingen" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Kolonne %s har blitt slettet" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "En primærnøkkel har blitt lagt til %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "En indeks har blitt lagt til %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show versions" msgid "Show more actions" msgstr "Vis versjoner" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Fjern kolonne(r)" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Utskriftsvennlig forhåndsvisning" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Relasjonsvisning" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Foreslå tabellstruktur" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Legg til kolonne(r)" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Ved slutten av tabellen" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Ved begynnelsen av tabellen" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Etter %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Lag en indeks på %s kolonner" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "partisjonert" @@ -12721,76 +12770,38 @@ msgstr "Spor disse datamanipulasjonsspørringene:" msgid "Create version" msgstr "Opprett versjon" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Utfør en \"spørring ved eksempel\" (jokertegn: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Additional search criteria" -msgstr "Skjul søkekriterier" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -#, fuzzy -#| msgid "Maximum number of rows to display" -msgid "Maximum rows to plot" -msgstr "Maks antall rader som kan framvises" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -#| msgid "Control user" -msgid "How to use" -msgstr "Kontrollbruker" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Tilbakestill" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Få flere temaer!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Tilgjengelige MIME-typer" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-typer skrevet i kursiv har ikke en separat transformasjonsfunksjon" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Tilgjengelige transformationer" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Beskrivelse" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Du har ikke nok rettigheter til å være her nå!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profilen har blitt oppdatert." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "VIEW navn" diff --git a/po/nl.po b/po/nl.po index 96d60a5d9b..8582b060ca 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-04-23 16:55+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 0.10\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Toon alles" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Paginanummer:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,58 +37,58 @@ msgstr "" "Het doelvenster kon niet worden bijgewerkt. Misschien heeft u het venster " "afgesloten of uw browser blokkeert bijwerkingen van uw venster." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Start" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Sleutelnaam" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Beschrijving" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Gebruik deze waarde" @@ -106,88 +106,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databank %1$s werd aangemaakt." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Databankopmerking: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Tabelopmerkingen" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Kolom" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Leeg" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Standaardwaarde" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Verwijst naar" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Opmerkingen" @@ -196,14 +197,14 @@ msgstr "Opmerkingen" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nee" @@ -216,120 +217,120 @@ msgstr "Nee" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ja" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Bekijk een dump (schema) van databank" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Geen tabellen gevonden in de databank." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Selecteer alles" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Deselecteer alles" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "De databanknaam is leeg!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Databank %1$s werd hernoemd naar %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databank %1$s werd gekopieerd naar %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Hernoem databank naar" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Verwijder databank" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Databank %s werd verwijderd." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Verwijder de databank (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Kopiëer databank naar" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Alleen structuur" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Structuur en gegevens" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Alleen gegevens" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE vóór het kopiëren" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Voeg %s toe" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Voeg AUTO_INCREMENT-waarde toe" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Voeg beperkingen toe" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Overschakelen naar de gekopieerde databank" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Collatie" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -338,59 +339,59 @@ msgstr "" "De configuratie-opslag van phpMyAdmin is uitgeschakeld. Om te weten te komen " "waarom klik %shier%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Bewerk of exporteer relationeel schema" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabel" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Rijen" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Grootte" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "in gebruik" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Gecreëerd" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Laatst bijgewerkt" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Laatst gecontroleerd" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -401,210 +402,210 @@ msgstr[1] "%s tabellen" msgid "You have to choose at least one column to display" msgstr "Er moet ten minste 1 weer te geven kolom worden gekozen" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Overschakelen op %svisuele builder%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sorteren" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Oplopend" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Aflopend" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Toon" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Criterium" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Toevoegen" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "En" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Verwijder" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Of" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Aanpassen" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Criterium-rijen toevoegen/verwijderen" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Kolommen toevoegen/verwijderen" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Wijzig Query" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Tabellen gebruiken" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-query op databank %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Query uitvoeren" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Toegang geweigerd" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "ten minste een van de woorden" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "alle woorden" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "de exacte zin" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "als een reguliere expressie" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Zoekresultaten voor \"%s\" %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Totaal: %s overeenkomst" msgstr[1] "Totaal: %s overeenkomsten" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Zoeken in de databank" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Woorden of waarden waarnaar gezocht moet worden (wildcard: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Zoek:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Woorden worden gesplitst door een spatiekarakter (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "In de tabellen:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "In de kolom:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Geen tabellen gevonden in de databank" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "onbekend" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabel %s is leeg gemaakt" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "View %s is verwijderd" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabel %s is vervallen" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Tracking is ingeschakeld." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Tracking is niet actief." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -612,185 +613,186 @@ msgid "" msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replicatie" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Som" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Met geselecteerd:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Selecteer alles" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporteren" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Afdrukken" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Legen" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Verwijderen" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Controleer tabel" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimaliseer tabel" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Repareer tabel" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyseer tabel" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Voeg voorvoegsel toe aan tabel" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Vervang tabelvoorvoegsel" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Vervang tabel met voorvoegsel" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Data Woordenboek" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Tabellen met tracker" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Databank" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Laatste versie" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Aangemaakt" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Bijgewerkt" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Status" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Actie" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Verwijder tracking data voor deze tabel" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "ingeschakeld" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "niet actief" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versies" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Tracking-rapport" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Structuur-snapshot" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Tabellen zonder tracker" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Tabel tracken" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Databank-log" @@ -803,16 +805,16 @@ msgid "Selected export type has to be saved in file!" msgstr "" "Het geselecteerde export type dient als een bestand te worden opgeslagen!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Verkeerde parameters!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Onvoldoende ruimte om het bestand %s op te slaan." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -820,12 +822,12 @@ msgstr "" "Bestand %s bestaat al op de server, verander de bestandsnaam of activeer de " "optie overschrijven." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "De webserver heeft geen rechten om het bestand %s op te slaan." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump is bewaard als %s." @@ -834,88 +836,88 @@ msgstr "Dump is bewaard als %s." msgid "Invalid export type" msgstr "Ongeldig exporttype" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Waarde voor kolom \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Gebruik OpenStreetMaps als basislayer" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometrie" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Punt" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punt %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Voeg een punt toe" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Lijnstuk definitie" # https://nl.wikipedia.org/wiki/Aangeschreven_cirkel -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Aangeschreven cirkel" # https://nl.wikipedia.org/wiki/Ingeschreven_cirkel -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Ingeschreven cirkel" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Voeg een lijnstuk toe" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Voeg een ingeschreven cirkel toe" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Polygoon" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Voeg een veelhoek toe" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Een geometrie toevoegen" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Uitvoer" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -923,7 +925,7 @@ msgstr "" "Kies \"GeomFormText\" uit de kolom \"Functie\" en plaats de onderstaande " "string in het veld \"Waarde\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -932,21 +934,21 @@ msgstr "" "U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de " "%sdocumentatie%s voor mogelijkheden om dit te omzeilen." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Toon bladwijzer" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "De bladwijzer werd verwijderd." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Bestand kon niet worden gelezen" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -956,7 +958,7 @@ msgstr "" "uploaden. De ondersteuning is niet geïmplementeerd of uitgeschakeld in de " "configuratie." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -967,30 +969,30 @@ msgstr "" "de maximale bestandsgrootte zoals opgegeven in de PHP-configuratie. Zie [a@./" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Kan de karakterset van het bestand niet omzetten zonder de 'character set " "conversion' bibliotheek" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "De plugins voor het importeren konden niet worden geladen, controleer uw " "installatie!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Bladwijzer %s aangemaakt" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import is geslaagd, %d queries uitgevoerd." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -998,7 +1000,7 @@ msgstr "" "De maximale uitvoertijd is verstreken, indien u de import wil afmaken kunt u " "het bestand opnieuw invoeren." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1007,25 +1009,25 @@ msgstr "" "dit dat phpMyAdmin dit niet af kan maken tenzij de tijdsbeperkingen van PHP " "worden versoepeld." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Terug" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin werkt gebruiksvriendelijker met een browser die frames aan " "kan." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." @@ -1034,7 +1036,7 @@ msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." msgid "Do you really want to execute \"%s\"?" msgstr "Weet u zeker dat u de query \"%s\" wil uitvoeren?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "U staat op het punt een volledige databank te VERWIJDEREN!" @@ -1074,7 +1076,7 @@ msgstr "Index toevoegen" msgid "Edit Index" msgstr "Index bewerken" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Voeg %d kolom(men) toe aan index" @@ -1092,16 +1094,16 @@ msgstr "De machinenaam is leeg!" msgid "The user name is empty!" msgstr "De gebruikersnaam is leeg!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Het wachtwoord is leeg!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Gebruiker toevoegen" @@ -1118,23 +1120,24 @@ msgstr "Geselecteerde gebruikers worden verwijderd" msgid "Close" msgstr "Sluiten" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Wijzigen" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Grafiek met huidig dataverkeer" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Live conn./process grafiek" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Grafiek van actieve queries" @@ -1144,24 +1147,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Totaal" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Andere" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1181,7 +1184,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Processen" @@ -1199,7 +1202,7 @@ msgstr "Questions sinds laatste verversing" msgid "Questions (executed statements by the server)" msgstr "Questions (aantal door de server uitgevoerde opdrachten)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Querystatistieken" @@ -1245,14 +1248,14 @@ msgid "System swap" msgstr "Systeemwisselbestand" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1304,32 +1307,32 @@ msgstr "Doorgestuurde bytes" msgid "Bytes received" msgstr "Ontvangen bytes" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Verbindingen" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1343,11 +1346,11 @@ msgstr "%d tabel(len)" msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Verkeer" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Instellingen" @@ -1367,11 +1370,11 @@ msgstr "Grafiek toevoegen aan raster" msgid "Please add at least one variable to the series" msgstr "Gelieve tenminste één variabele toe te voegen aan de reeks" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Geen" @@ -1471,7 +1474,7 @@ msgstr "Instellingen wijzigen" msgid "Current settings" msgstr "Huidige instellingen" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Grafiektitel" @@ -1561,7 +1564,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Tijd" @@ -1663,10 +1666,10 @@ msgstr "" "configuratie is mislukt. Standaard configuratie wordt gebruikt in de " "plaats..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importeren" @@ -1714,9 +1717,9 @@ msgstr "Gebruikte variabele / formule" msgid "Test" msgstr "Test" -#: 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 +#: 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 msgid "Cancel" msgstr "Annuleren" @@ -1728,11 +1731,11 @@ msgstr "Laden" msgid "Processing Request" msgstr "Bezig met verwerken" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Fout tijdens het verwerken van de opdracht" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Er zijn geen databanken geselecteerd." @@ -1744,9 +1747,9 @@ msgstr "Kolom komt te vervallen" msgid "Adding Primary Key" msgstr "Primaire sleutel wordt toegevoegd" -#: 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 +#: 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 msgid "OK" msgstr "Correct" @@ -1786,15 +1789,15 @@ msgstr "Indexen verbergen" msgid "Show indexes" msgstr "Indexen tonen" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Controle op vreemde sleutels:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Ingeschakeld)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Uitgeschakeld)" @@ -1823,7 +1826,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET-editor" @@ -1864,8 +1867,8 @@ msgstr "SQL-queryveld tonen" msgid "No rows selected" msgstr "Geen rijen geselecteerd" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Veranderen" @@ -1873,18 +1876,18 @@ msgstr "Veranderen" msgid "Query execution time" msgstr "Query-uitvoertijd" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Opslaan" @@ -1896,7 +1899,7 @@ msgstr "Zoekcriteria verbergen" msgid "Show search criteria" msgstr "Zoekcriteria tonen" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Zoeken door in te zoomen" @@ -1946,12 +1949,12 @@ msgstr "Queryresultaten" msgid "Data point content" msgstr "Inhoud gegevenspunt" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Negeren" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Kopiëren" @@ -1971,7 +1974,7 @@ msgstr "Selecteer vreemde sleutel" msgid "Please select the primary key or a unique key" msgstr "Selecteer de primaire sleutel of een unieke sleutel" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Kies weer te geven veld" @@ -2063,7 +2066,7 @@ msgstr "Genereren" msgid "Change Password" msgstr "Wachtwoord wijzigen" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Meer" @@ -2154,63 +2157,63 @@ msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "dec" @@ -2248,32 +2251,32 @@ msgid "Sun" msgstr "zo" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "ma" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "do" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "za" @@ -2391,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "per seconde" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "per minuut" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "per uur" @@ -2423,21 +2426,207 @@ msgstr "" msgid "Font size" msgstr "Lettertypegrootte" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Sla aangepaste gegevens op" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Kolomvolgorde herstellen" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Begin" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Vorige" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Volgende" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Einde" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Eerste regel" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Aantal rijen" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Modus" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontale" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontale (omgedraaide headers)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "verticale" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "Hoofdingen iedere %s regels" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Sorteren op sleutel" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Opties" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Gedeeltelijke teksten" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Volledige teksten" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Relationele sleutel" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Relationele weergaveveld" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Toon binaire inhoud" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Toon BLOB-inhoud" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Toon binaire-inhoud als HEX" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Browsertransformaties verbergen" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Goed bekende tekst" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Goed gekende binaire waarde" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "stop proces" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Bij benadering. Zie [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/" +"a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "in de query" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Weergave van records" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "totaal" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "query duurde %01.4f sec" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Handelingen voor queryresultaat" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Afdrukken (met volledige teksten)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Grafiek weergeven" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "GIS-gegevens visualiseren" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "VIEW aanmaken" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Link niet gevonden" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Er zijn teveel foutmeldingen, sommige worden niet weergegeven." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Bestand is geen geüpload bestand." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Het geüploade bestand is groter dan de optie 'upload_max_filesize' uit uw " "php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2445,27 +2634,27 @@ msgstr "" "Het geüploade bestand overschrijdt de MAX_FILE_SIZE-optie die was opgegeven " "in het HTML-formulier." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Het geüploade bestand was slechts gedeeltelijk ontvangen." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "De map voor tijdelijke bestanden ontbreekt." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Opslaan van het bestand op de harde schijf is mislukt." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Upload afgebroken vanwege de extensie." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Onbekende fout bij het uploaden." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2473,26 +2662,39 @@ msgstr "" "Fout bij het verplaatsen van het geüploade bestand, zie [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Fout bij het verplaatsen van het geüploade bestand." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Het geüploade bestand kan niet gelezen (verplaatst) worden." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Nieuw phpMyAdmin-scherm openen" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Cookies moeten aan staan voorbij dit punt." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indexen" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unieke waarde" @@ -2505,8 +2707,8 @@ msgstr "Gecomprimeerd" msgid "Cardinality" msgstr "Kardinaliteit" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Opmerking" @@ -2529,128 +2731,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Databanken" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Structuur" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Invoegen" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Handelingen" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Traceren" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tabel lijkt leeg!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Databank lijkt leeg te zijn!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Query opbouwen" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Rechten" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Routines" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Gebeurtenissen" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Ontwerper" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Gebruikers" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synchroniseren" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binaire log" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variabelen" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Karaktersets" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Plug-ins" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Engines" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Fout" @@ -2675,7 +2877,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rij toegevoegd." msgstr[1] "%1$d rijen toegevoegd." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Fout bij het aanmaken van de PDF:" @@ -2771,16 +2973,100 @@ 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 +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 +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 +msgid "Value" +msgstr "Waarde" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "In de tabel zoeken" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Aanpassen/Invoegen" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Selecteer velden (minstens één):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Zoekcondities toevoegen (het \"where\"-gedeelte van de query):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Aantal rijen per pagina" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Volgorde van weergave:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Gebruik deze kolom om ieder punt een naam te geven" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Maximum aantal af te drukken regels" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Bekijk vreemde waarden" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Bijkomende zoekcriteria" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Voer een \"query als voorbeeld\" (wildcard: \"%\") uit op twee verschillende " +"kolommen" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Voer een query op basis van een vergelijking uit (wildcard: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Doorzoek/bewerk de punten" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Hoe te gebruiken" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Herstellen" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Geen geldig afbeeldingenpad voor thema %s gevonden!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Geen preview beschikbaar." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "neem het" @@ -2799,7 +3085,7 @@ msgstr "Thema %s niet gevonden!" msgid "Theme path not found for theme %s!" msgstr "Themapad niet gevonden voor thema %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Thema" @@ -3098,13 +3384,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Kan niet verbinden: ongeldige instellingen." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Welkom bij %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3113,7 +3399,7 @@ msgstr "" "U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u " "%1$ssetup script%2$s gebruiken om een te maken." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3129,42 +3415,38 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Gebruik van Blowfish van mcrypt is niet gelukt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Javascript moet ingeschakeld zijn voorbij dit punt" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Aanmelden" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "U kunt een machinenaam/IP-adres en poortnummer gescheiden door een spatie " "opgeven." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Gebruikersnaam:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Wachtwoord:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Serverkeuze" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Cookies moeten aan staan voorbij dit punt." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3172,19 +3454,19 @@ msgstr "" "Aanmelden zonder wachtwoord is niet toegestaan door de instellingen (zie " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Geen activiteit voor %s seconden of meer, meld a.u.b. opnieuw aan" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Kan niet aanmelden op de MySQL-server" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Verkeerde gebruikersnaam/wachtwoord. Toegang geweigerd." @@ -3216,7 +3498,7 @@ msgstr "gedeeld" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabellen" @@ -3228,13 +3510,13 @@ msgstr "Tabellen" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Overhead" @@ -3259,19 +3541,11 @@ msgstr "Controleer rechten op databank "%s"." msgid "Check Privileges" msgstr "Controleer rechten" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "mogelijk misbruik" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "numerieke toets gedetecteerd" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Lezen van het configuratiebestand is niet gelukt" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3280,12 +3554,12 @@ msgstr "" "hieronder te bekijken." # 'kon niet vanuit "%1$s" geladen worden' is juister. -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Standaard configuratiebestand kon niet geladen worden vanuit: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3293,206 +3567,192 @@ msgstr "" "De [code]$cfg['PmaAbsoluteUri'][/code] richtlijn MOET ingesteld zijn in het " "configuratiebestand!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Ongeldige serverindex: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ongeldige machinenaam voor server %1$s. Controleer uw configuratie." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Ongeldige authenticatiemethode opgegeven in configuratie:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "U moet upgraden naar %s %s of hoger." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "poging om GLOBALS te overschrijven" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "mogelijk misbruik" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "numerieke toets gedetecteerd" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Maximale grootte: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Documentatie" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-query" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL retourneerde: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Er kan geen verbinding worden gemaakt met de SQL-validator!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Verklaar SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Uitleg SQL overslaan" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "zonder PHP-code" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Genereer PHP-code" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Vernieuw" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL-validatie overslaan" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Valideer SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Rechtstreekse bewerking van deze query" # "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen # iets anders. -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Rechtstreeks" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profiling" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "zo" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y om %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagen, %s uren, %s minuten en %s seconden" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Ontbrekende parameter:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Begin" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Vorige" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Volgende" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Einde" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Ga naar databank "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Klik om te wisselen" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Blader op uw eigen pc:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecteer uit de web-server upload directory %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 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" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Er zijn geen bestanden om te uploaden" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Uitvoeren" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Afdrukken" @@ -3522,8 +3782,8 @@ msgid "Closed" msgstr "Gesloten" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Uitgeschakeld" @@ -3666,9 +3926,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Herstellen" @@ -3895,10 +4155,6 @@ msgstr "Tabel structuur acties verbergen" msgid "Show binary contents as HEX by default" msgstr "Toon binaire-inhoud standaard als HEX" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Toon binaire-inhoud als HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Toon een databankoverzicht als een lijst in plaats van een afrolmenu" @@ -3955,7 +4211,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Maximale uitvoertijd" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Opslaan als bestand" @@ -3964,7 +4220,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Opmaak" @@ -4068,7 +4324,7 @@ msgid "MIME type" msgstr "MIME-type" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relaties" @@ -5685,9 +5941,9 @@ msgstr "Vereist dat SQL-Validator geactiveerd is" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Wachtwoord" @@ -5979,14 +6235,6 @@ msgstr "Gelieve de rechten op de folder met de databank na te kijken." msgid "Details..." msgstr "Details..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Bij benadering. Zie [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/" -"a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -5995,18 +6243,18 @@ msgstr "" "is mislukt." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Wachtwoord wijzigen" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Geen wachtwoord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Type opnieuw" @@ -6028,22 +6276,22 @@ msgstr "Databank aanmaken" msgid "Create" msgstr "Aanmaken" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Geen rechten" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Naam" @@ -6203,25 +6451,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Omzetting van de codering:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s van tak %2$s" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "geen tak" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Git revisie" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "gecommit op %1$s door %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "geschreven door %2$s op %1$s" @@ -6340,175 +6588,29 @@ msgstr "Opmaakspecifieke opties:" msgid "Language" msgstr "Taal" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Sla aangepaste gegevens op" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Kolomvolgorde herstellen" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Eerste regel" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Aantal rijen" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Modus" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontale" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontale (omgedraaide headers)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "verticale" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Hoofdingen iedere %s regels" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Sorteren op sleutel" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Opties" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Gedeeltelijke teksten" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Volledige teksten" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Relationele sleutel" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Relationele weergaveveld" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Toon binaire inhoud" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Toon BLOB-inhoud" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Browsertransformaties verbergen" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Goed bekende tekst" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Goed gekende binaire waarde" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "De regel werd verwijderd" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "stop proces" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "in de query" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Weergave van records" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "totaal" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "query duurde %01.4f sec" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Handelingen voor queryresultaat" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Afdrukken (met volledige teksten)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Grafiek weergeven" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "GIS-gegevens visualiseren" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "VIEW aanmaken" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Link niet gevonden" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Versie-informatie" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Data home folder" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Het gemeenschappelijke deel van de directory waar alle InnoDB-" "gegevensbestanden staan." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Gegevensbestanden" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Zelfgroei stapgrootte" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6516,11 +6618,11 @@ msgstr "" "De hoeveelheid waarmee een zelfgroeiende tabelruimte groeit wanneer deze " "dreigt vol te raken." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Bufferpoolgrootte" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6528,79 +6630,79 @@ msgstr "" "De grootte van de geheugenbuffer dat InnoDB gebruikt voor het cachen van " "gegevens en indexen van zijn tabellen." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB Status" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Gebruik van Buffer Pool" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "pagina's" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Vrije pages" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Vervuilde pagina's" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Pagina's die gegevens bevatten" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Pages te schonen" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Pagina's in gebruik" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Latched pagina's" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Activiteit van Buffer Pool" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Leesverzoeken" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Schrijfverzoeken" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Leesmissers" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Schrijfvertragingen" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Leesmissers in %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Schrijfvertragingen in %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Datapointer-formaat" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6608,11 +6710,11 @@ msgstr "" "Het standaard pointerformaat in bytes, te gebruiken in de CREATE TABLE-" "opdracht voor MyISAM-tabellen, als de MAX_ROWS-optie niet is opgegeven." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Automatische herstelmodus" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6621,11 +6723,11 @@ msgstr "" "zoals opgegeven met de schakeloptie --myisam-recover bij het opstarten van " "de server." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Maximum grootte voor tijdelijke sorteerbestanden" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6635,12 +6737,12 @@ msgstr "" "tijdens het opnieuw aanmaken van MyISAM-indexen (tijdens REPAIR TABLE, ALTER " "TABLE of LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" "De maximale grote van het tijdelijke bestand voor het aanmaken van indexen" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6650,11 +6752,11 @@ msgstr "" "indexen groter is dan 'key cache' hier aangegeven, verkies dan de 'key " "cache'-methode." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Reparatiethreads" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6663,11 +6765,11 @@ msgstr "" "aangemaakt tijdens het repareren door het sorteerproces (elke index in zijn " "eigen thread)." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Sorteerbuffergrootte" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6676,11 +6778,11 @@ msgstr "" "van REPAIR TABLE of bij het aanmaken van indexen met CREATE INDEX of ALTER " "TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Indexcachegrootte" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6689,11 +6791,11 @@ msgstr "" "standaard is 32MB. Het geheugen dat hier is gereserveerd wordt enkel " "gebruikt voor het cachen van indexpagina's." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Recordcachegrootte" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6703,11 +6805,11 @@ msgstr "" "standaard is 32M. Dit geheugen wordt gebruikt om wijzigingen te cachen voor " "de handle data (.xtd) en rijpointer (.xtr) bestanden." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Logcachegrootte" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6716,11 +6818,11 @@ msgstr "" "gebruikt wordt om de transactieloggegevens op te slaan. Standaard is dit " "16MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Drempelwaarde voor logbestand" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6728,11 +6830,11 @@ msgstr "" "De grootte van de transactielog wanneer deze zal worden vervangen door een " "nieuw bestand. De standaardwaarde is 16M." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Transactiebuffergrootte" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6740,11 +6842,11 @@ msgstr "" "De grootte van de globale transactielogbuffer (de engine reserveert 2 " "buffers van dit formaat). Standaard is dit 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Checkpointfrequentie" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6753,11 +6855,11 @@ msgstr "" "voordat er een nieuw checkpoint wordt aangemaakt. De standaard waarde is " "24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "De drempelwaarde voor gegevenslog" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6769,11 +6871,11 @@ msgstr "" "voor alle tabellen. Deze waarde kan dan ook worden verhoogd om de maximale " "opslagcapaciteit van de databank te verhogen." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Garbage-drempelwaaarde" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6781,11 +6883,11 @@ msgstr "" "Het percentage van garbage in een gegevenslogbestand voor dat deze wordt " "geschoond. Dit is een waarde tussen 1 en 99. De standaard is 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Logbuffergrootte" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6795,27 +6897,27 @@ msgstr "" "gebruikt. De standaard is 256MB. De engine reserveert een buffer per thread, " "maar enkel indien de thread ook moet schrijven naar de data log." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Groeistapgrootte voor gegevensbestand" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "De groeistapgrootte van de handle data (.xtd) bestanden." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Groeistapgrootte voor rijbestand" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "De stapgrootte waarmee de rijpointer (.xtr) bestanden groeien." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Logbestandaantal" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6827,7 +6929,7 @@ msgstr "" "zullen oude bestanden worden verwijderd, anders worden oude logbestanden " "hernoemd met een opgehoogd volgnummer." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6836,11 +6938,11 @@ msgstr "" "Documentatie en meer informatie over PBXT kan gevonden worden op de " "%sPrimeBase XT home pagina%s." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Gerelateerde links" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "De PrimeBase XT Blog door Paul McCullagh" @@ -6887,14 +6989,14 @@ msgstr "Gegevens worden uitgevoerd voor tabel" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Gebeurtenis" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definitie" @@ -6952,14 +7054,14 @@ msgstr "Toon beschikbare MIME-types" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Machine" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Genereertijd" @@ -7167,21 +7269,12 @@ msgstr "Views" msgid "Export contents" msgstr "Exporteerinhoud" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Nieuw phpMyAdmin-scherm openen" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Geen gegevens beschikbaar voor GIS-visualisatie." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "poging om GLOBALS te overschrijven" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7281,12 +7374,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Tabelnaam" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Kolomnamen" @@ -7358,93 +7451,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Functie" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Verbergen" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binair" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binair - niet aanpassen" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "uploadfolder op webserver" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Aanpassen/Invoegen" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Herstart invoegen met %s rijen" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "en dan" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Toevoegen als nieuwe rij" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Toevoegen als nieuwe rij en foutmeldingen negeren" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Toon insert-query" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Terug" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Een nieuwe rij toevoegen" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Ga terug naar deze pagina" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Volgende rij bewerken" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Waarde" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rijnummer: %1$d" @@ -7460,32 +7537,32 @@ msgstr "Geen" msgid "Convert to Kana" msgstr "Omzetten naar Kana" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Van" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Naar" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Verzenden" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Tabelvoorvoegsel toevoegen" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Voorvoegsel toevoegen" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 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:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Geen verandering" @@ -7696,72 +7773,72 @@ msgstr "Navigatievenster herladen" msgid "This format has no options" msgstr "Dit formaat heeft geen opties" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Niet goed" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Ingeschakeld" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Algemene relatie-opties" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Toon Opties" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Aanmaken van PDF-bestanden" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Toon kolomopmerkingen" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Browsertransformaties" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Raadpleeg de documentatie over hoe u de tabel column_comments kunt bijwerkt" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Opgeslagen SQL-query" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-geschiedenis" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Persistente recent gebruikte tabellen" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Persistente interfacevoorkeuren voor tabellen" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Gebruikersvoorkeuren" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Snelle stappen voor het instellen van geavanceerde functies:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" @@ -7769,11 +7846,11 @@ msgstr "" # hem/haar/het past beter maar het geslacht van de gebruiker is # onvoorspelbaar. -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Maak een pma-gebruiker aan en verleen die toegang tot deze tabellen." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7782,13 +7859,13 @@ msgstr "" "inc.php) ingeschakeld worden, als voorbeeld kunt u gebruik maken van " "config.sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Meld opnieuw aan bij phpMyAdmin om het bijgewerkte configuratiebestand te " "laden." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "Geen beschrijving aanwezig" @@ -7796,7 +7873,7 @@ msgstr "Geen beschrijving aanwezig" msgid "Slave configuration" msgstr "Slave-instellingen" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Masterserver wijzigen" @@ -7811,13 +7888,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Gebruikersnaam" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Poort" @@ -7830,7 +7907,7 @@ msgid "Slave status" msgstr "Slave-status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variabelen" @@ -7846,38 +7923,38 @@ msgstr "" "Enkel slaves gestart met de optie --report-host=host_name zijn zichtbaar in " "deze lijst." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Gebruiker voor de slave-replicatie toevoegen" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Elke gebruiker" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Tekstveld gebruiken" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Elke machine" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "lokaal" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Deze machine" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Gebruik hosttabel" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7893,7 +7970,7 @@ msgstr "Wachtwoord genereren" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7926,90 +8003,91 @@ msgstr "" "Een of meer fouten zijn opgetreden tijdens het uitvoeren van uw opdracht:" "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Gebeurtenis bewerken" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fout tijdens het uitvoeren van de opdracht" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Details" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Gebeurtenisnaam" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Gebeurtenistype" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Veranderen naar %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Uitvoeren om" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Uitvoeren iedere" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Begin" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Einde" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Na afloop behouden" # Not the best translation, suggestions are welcome -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Naam" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: 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" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Gelieve een naam van een gebeurtenis in te geven" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" "Gelieve een geldige waarde in te geven voor het interval van de gebeurtenis." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Gelieve een geldige uitvoeringstijd in te geven voor de gebeurtenis." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Gelieve een geldig type in te geven voor de gebeurtenis." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 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:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Nieuw" @@ -8042,7 +8120,7 @@ msgstr "" "te gebruiken om problemen te vermijden." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ongeldig routine-type: \"%s\"" @@ -8061,69 +8139,69 @@ msgstr "Routine %1$s werd gewijzigd." msgid "Routine %1$s has been created." msgstr "Routine %1$s werd aangemaakt." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Routine aanpassen" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Routinenaam" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parameters" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Richting" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Lengte/Waarden" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Parameter toevoegen" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Laatste parameter verwijderen" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Return-type" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Return-lengte/waarden" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Return-opties" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Is vast bepaald" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Beveiligingstype" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "SQL-gegevenstoegang" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Gelieve een routinenaam in te geven" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ongeldige richting \"%s\" opgegeven voor parameter." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8131,37 +8209,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:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Gelieve een routinedefinitie op te geven." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Resultaten van uitgevoerde routine %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Routine uitvoeren" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Routineparameters" @@ -8179,36 +8257,36 @@ msgstr "Trigger %1$s werd gewijzigd." msgid "Trigger %1$s has been created." msgstr "Trigger %1$s werd aangemaakt." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Trigger bewerken" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Triggernaam" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Tijdstip" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "U moet een triggernaam ingeven" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "U moet een geldig tijdstip voor de trigger ingeven" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "U moet een geldige gebeurtenis voor de trigger ingeven" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "U moet een geldige tabelnaam ingeven" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "U moet een triggerdefinitie ingeven." @@ -8292,7 +8370,7 @@ msgstr "Er zijn geen gebeurtenissen om weer te geven." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8301,7 +8379,7 @@ msgstr "De tabel %s bestaat niet!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8309,7 +8387,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Configureer de coördinaten voor de tabel %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8320,27 +8398,27 @@ msgstr "Schema van de databank %s - Pagina %s" msgid "This page does not contain any tables!" msgstr "Deze pagina bevat geen tabellen!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "SCHEMA ERROR: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Relationeel schema" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Inhoudsopgave" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Attributen" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8448,7 +8526,7 @@ msgstr "Onbekende taal: %1$s." msgid "Current Server" msgstr "Huidige server" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Brondatabank" @@ -8466,7 +8544,7 @@ msgstr "Andere server" msgid "Difference" msgstr "Verschil" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Doeldatabank" @@ -8485,7 +8563,7 @@ msgstr "Voer SQL-query/queries uit op de server %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Leegmaken" @@ -8494,11 +8572,11 @@ msgstr "Leegmaken" msgid "Columns" msgstr "Kolommen" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Elke gebruiker toegang geven tot deze bladwijzer" @@ -8595,7 +8673,7 @@ msgstr "" "PHP-uitbreidingen heeft geïnstalleerd, zoals beschreven in de %sdocumentatie" "%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "Tracking van %s is ingeschakeld." @@ -8621,8 +8699,8 @@ msgstr "" "aanhalingstekens, gebruik makend van dit formaat: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Index" @@ -8675,13 +8753,13 @@ msgstr "Geen" msgid "As defined:" msgstr "Zoals aangegeven:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primaire sleutel" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Volledige tekst" @@ -8695,17 +8773,17 @@ msgstr "" msgid "after %s" msgstr "Na %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "%s kolom(men) toevoegen" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "U moet minstens één kolom toevoegen." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Opslag-engine" @@ -8713,41 +8791,6 @@ msgstr "Opslag-engine" msgid "PARTITION definition" msgstr "PARTITION-definitie" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "In de tabel zoeken" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Selecteer velden (minstens één):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Zoekcondities toevoegen (het \"where\"-gedeelte van de query):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Aantal rijen per pagina" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Volgorde van weergave:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Bekijk vreemde waarden" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Voer een query op basis van een vergelijking uit (wildcard: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8903,11 +8946,11 @@ msgstr "" msgid "Manage your settings" msgstr "Uw instellingen beheren" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Configuratie werd opgeslagen" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8920,7 +8963,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Opslaan van het configuratiebestand is niet mogelijk" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8949,7 +8992,7 @@ msgstr "Collatie van de serververbinding" msgid "Appearance Settings" msgstr "Opmaakinstellingen" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Overige instellingen" @@ -8969,9 +9012,9 @@ msgstr "Softwareversie" msgid "Protocol version" msgstr "Protocolversie" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Gebruiker" @@ -9107,128 +9150,128 @@ msgid "" msgstr "" "De server gebruikt Suhosin. Zie de %sdocumentatie%s voor mogelijke problemen." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Geen databanken" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Tabellen filteren op naam" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Tabellen filteren op naam" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Tabel aanmaken" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Selecteer a.u.b. een databank" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Toon/verberg linker menu" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Posities opslaan" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Maak relatie" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Verversen" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Help" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Hoekige verbindingen" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Directe verbindingen" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Kleef aan raster" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Alles in-/uitklappen" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Wissel klein/groot" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Relatielijnen wisselen" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Coördinaten voor PDF-schema importeren/exporteren" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Query opbouwen" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Menu verplaatsen" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Alles tonen/verbergen" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Tabellen zonder relatie tonen/verbergen" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Aantal tabellen" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Relatie verwijderen" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Relatiebeheerder" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Behalve" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "sub-query" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Hernoemen naar" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Nieuwe naam" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Samenvoegen" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Actieve opties" @@ -9243,51 +9286,51 @@ msgstr "De pagina werd aangemaakt" msgid "Page creation failed" msgstr "Het aanmaken van de pagina is mislukt" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Pagina" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Import vanaf geselecteerde pagina" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Exporteren naar geselecteerde pagina" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Een pagina aanmaken en ernaar exporteren" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Nieuwe paginanaam: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Exporteren/importeren naar schaal" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "aangeraden" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Fout: relatie bestaat reeds." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Fout: relatie niet toegevoegd." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "De relatie FOREIGN KEY is toegevoegd" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Interne relatie toegevoegd" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relatie verwijderd" @@ -9299,54 +9342,54 @@ msgstr "Fout bij het opslaan van coördinaten voor de Designer." msgid "Modifications have been saved" msgstr "Wijzigingen werden opgeslagen" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" "Het verstuurde formulier bevat fouten, instellingen werden niet opgeslagen" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Standaard configuratiebestand kon niet geladen worden" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Het configuratiebestand bevat foute gegevens in sommige velden." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Wilt u de overgebleven instellingen importeren?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Opgeslagen op: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importeren uit bestand" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Importeren uit browseropslag" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" "De instellingen zullen geïmporteerd worden uit de lokale opslag van uw " "browser." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Er zijn geen opgeslagen instellingen!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Deze functie wordt niet ondersteund door uw webbrowser" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Samenvoegen met de huidige configuratie" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9355,37 +9398,37 @@ msgstr "" "U kan meer instellingen veranderen door config.inc.php aan te passen, bv. " "door het %ssetup-script%s te gebruiken." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Opslaan in de browseropslag" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" "De instellingen zullen bewaard worden in de lokale opslag van uw browser." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Bestaande instellingen zullen overschreven worden!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "U kan al uw instellingen terugzetten op de standaardwaarden." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Bestanden importeren" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Alle" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabel %s niet gevonden of niet ingesteld in %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Bestand bestaat niet" @@ -9393,17 +9436,17 @@ msgstr "Bestand bestaat niet" msgid "Select binary log to view" msgstr "Selecteer de te bekijken binaire log" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Bestanden" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Getoonde queries afkappen" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Toon volledige queries" @@ -9419,7 +9462,7 @@ msgstr "Positie" msgid "Original position" msgstr "Oorspronkelijke positie" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informatie" @@ -9427,31 +9470,31 @@ msgstr "Informatie" msgid "Character Sets and Collations" msgstr "Karaktersets en collaties" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d databank werd succesvol verwijderd." msgstr[1] "%1$d databanken werden succesvol verwijderd." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Databankstatistieken" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Masterreplicatie" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Slave-replicatie" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Statistieken inschakelen" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9463,158 +9506,158 @@ msgstr "" msgid "Storage Engines" msgstr "Opslag-engines" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Dump (schema) van de databanken bekijken" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Modules" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Begin" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Plug-in" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Module" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Bibliotheek" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Versie" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Auteur" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Licentie" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "uitgeschakeld" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Omvat alle rechten behalve GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Maakt het mogelijk de structuur van bestaande tabellen aan te passen." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" "Maakt het mogelijk om opgeslagen routines te bewerken en te verwijderen." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Maakt het mogelijk om nieuwe databanken en tabellen te maken." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Maakt het mogelijk om opgeslagen routines aan te maken." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Maakt het mogelijk nieuwe tabellen te maken." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Maakt het mogelijk om tijdelijke tabellen te maken." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Maakt het mogelijk om gebruikersaccounts te maken, hernoemen en verwijderen." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Maakt het mogelijk om nieuwe views te maken." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Maakt het mogelijk om gegevens te verwijderen." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Maakt het mogelijk om databanken en tabellen te verwijderen." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Maakt het mogelijk tabellen te verwijderen." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Maakt het mogelijk om gebeurtenissen in de planner te zetten" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Maakt het mogelijk om opgeslagen routines uit te voeren." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" "Maakt het mogelijk om gegevens te importeren en te exporteren van en naar " "bestanden." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Maakt het mogelijk om gebruikers en rechten toe te voegen zonder de " "rechtentabel opnieuw op te vragen." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Maakt het mogelijk om indexen aan te maken en te verwijderen." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Maakt het mogelijk om gegevens in te voegen en te vervangen." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Maakt het mogelijk tabellen op slot te zetten voor de huidige thread." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Beperkt het aantal nieuwe verbindingen die een gebruiker per uur mag openen." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Beperkt het aantal queries dat een gebruiker mag versturen per uur." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9622,63 +9665,63 @@ msgstr "" "Beperkt het aantal opdrachten, welke een databank of tabel veranderen, die " "een gebruiker per uur mag uitvoeren." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Beperkt het aantal gelijktijdige verbindingen dat de gebruiker open kan " "hebben." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Maakt het mogelijk om processen van alle gebruikers te zien" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Heeft geen effect in deze MySQL-versie." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Maakt het mogelijk om de serverinstellingen opnieuw op te vragen en de cache " "van de server leeg te maken." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Geeft het recht aan de gebruiker om te vragen waar de slaves / masters zijn." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Nodig om slaves te repliceren." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Maakt het lezen van gegevens mogelijk." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Geeft toegang tot de volledige lijst van databanken." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Maakt het mogelijk om SHOW CREATE VIEW uit te voeren." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Maakt het mogelijk om de server te stoppen." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9689,164 +9732,164 @@ msgstr "" "opties zoals het instellen van globale variabelen of het stoppen van threads " "van andere gebruikers." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Maakt het mogelijk om triggers te maken en te verwijderen" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Maakt het mogelijk gegevens aan te passen." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Geen rechten." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Geen" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Tabel-specifieke rechten" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Opmerking: de namen van de MySQL-rechten zijn uitgedrukt in het Engels" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administratie" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globale rechten" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Databank-specifieke rechten" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Resource-beperkingen" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Opmerking: het instellen van deze waarden op 0 (nul) verwijdert de limiet." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Aanmeldingsinformatie" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Wijzig het wachtwoord niet" # Enkelvoud. -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Geen gebruiker gevonden." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "De gebruiker %s bestaat al!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "U heeft een nieuwe gebruiker toegevoegd." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "U heeft de rechten aangepast voor %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "U heeft de rechten ingetrokken voor %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Het wachtwoord voor %s is succesvol veranderd." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Verwijderen van %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Geen gebruikers geselecteerd om te verwijderen!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "De rechten werden opnieuw ingeladen" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "De geselecteerde gebruikers zijn met succes verwijderd." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "De rechten werden succesvol opnieuw ingeladen." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Rechten wijzigen" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Ongedaan maken" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Alles exporteren" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Elke" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Rechten voor alle gebruikers" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Rechten voor %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Gebruikers overzicht" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Toekennen" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "De geselecteerde gebruikers verwijderen" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9860,51 +9903,51 @@ msgstr "" "geval zijn dan moet men %sde rechtentabel vernieuwen%s voordat men verder " "gaat." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "De geselecteerde gebruiker werd niet aangetroffen in de rechtentabel." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Kolom-specifieke rechten" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Rechten toevoegen op de volgende databank" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Rechten toevoegen op de volgende tabel" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Aanmeldingsinformatie wijzigen / Gebruiker kopiëren" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Een nieuwe gebruiker aanmaken met dezelfde rechten en ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... de oude behouden." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... de oude verwijderen van de gebruikerstabellen." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9912,82 +9955,82 @@ msgstr "" "... de oude verwijderen van de gebruikerstabellen en de rechten nadien " "vernieuwen." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Databank voor gebruiker" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Alle rechten geven op de wildcardnaam (gebruikersnaam\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Alle rechten geven op databank "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Gebruikers die toegang hebben tot "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "globaal" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "databank-specifiek" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "jokerteken" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Gebruiker is toegevoegd." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Onbekende fout" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Het verbinden met de master %s is mislukt." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Het lezen van de master-positie is mislukt. Mogelijk gaat het om een " "probleem met de rechten op de master." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Wijzigen van master is mislukt" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Masterserver succesvol gewijzigd in %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Deze server is ingesteld als master in een replicatieproces." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Toon masterstatus" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Toon verbonden slaves" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9996,11 +10039,11 @@ msgstr "" "Deze server is niet ingesteld als master in een replicatieproces. Wilt u dit " "nu instellen?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Masterinstellingen" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10013,19 +10056,19 @@ msgstr "" "u de meerderheid van uw databanken wil repliceren) of u kiest ervoor om " "alleen enkele geselecteerde databanken te repliceren:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Repliceer alle databanken; Negeer:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Negeer alle databanken; Repliceer enkel:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Selecteer uit de onderstaande databanken:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10033,7 +10076,7 @@ msgstr "" "Voeg nu de onderstaande regels aan de sectie [mysqld] van uw my.cnf toe en " "herstart uw MySQL-server." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10043,84 +10086,84 @@ msgstr "" "server heeft herstart klikt u op Start. Hierna zou u de melding moeten " "krijgen dat de server is ingesteld als master" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Slave SQL Thread niet actief!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Slave IO Thread niet actief!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Server is ingesteld als slave in een replicatieproces. Wilt u:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Slave-statustabel bekijken" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Databanken met master synchroniseren" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Beheer slave:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Start volledig" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Stop volledig" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Slave herinstellen" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Start enkel de SQL-Thread" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Stop enkel de SQL-Thread" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Start enkel de IO Thread" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Stop enkel de IO Thread" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Foutenbeheer:" # "errors" => "fouten" # master and slave _what_? -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Het overslaan van fouten kan leiden tot verschillen tussen de meester en " "slaaf!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Sla de huidige error over" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Sla de volgende" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "errors over." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10129,12 +10172,12 @@ msgstr "" "Deze server is niet ingesteld als slave in een replicatieproces. Wilt u dit " "nu instellen?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s is succesvol afgesloten." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10142,115 +10185,115 @@ msgstr "" "phpMyAdmin is er niet in geslaagd om de %s te sluiten. Waarschijnlijk is het " "al gesloten." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Handler" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Querycache" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Threads" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Tijdelijke gegevens" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Vertraagde inserts" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Sleutelcache" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Joins" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Sortering" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Transactiecoördinator" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Alle tabellen schonen (sluiten)" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Toon open tabellen" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Toon slave-hosts" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Toon slave-status" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Schoon querycache" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Runtime-informatie" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "alle statusvariabelen" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Opvolgen" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Raadgever" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Vernieuwingsfrequentie: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filters" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Bevat het woord:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Enkel belangrijke waarden tonen" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filteren op categorie..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Toon niet-opgemaakte waarden" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Gerelateerde links:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Analyse uitvoeren" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Richtlijnen" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10258,7 +10301,7 @@ msgstr "" "De raadgever kan suggesties doen voor servervariabelen door de " "statusvariabelen van de server te analyseren." -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10267,7 +10310,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:920 +#: server_status.php:919 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 " @@ -10278,7 +10321,7 @@ msgstr "" "wijziging ongedaan kan maken. Verkeerde instellingen kunnen een sterk " "negatief effect hebben op de performantie." -#: server_status.php:922 +#: server_status.php:921 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 " @@ -10290,31 +10333,31 @@ msgstr "" "waarneembare verbetering vastgesteld kon worden." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Questions sinds opstart: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Opdrachten" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Netwerkverkeer sinds opstart: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10322,13 +10365,13 @@ msgstr "" "Deze MySQL-server is ingesteld als master en slave in een " "replicatieproces." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" "Deze MySQL-server is ingesteld als master in een replicatieproces." -#: server_status.php:1080 +#: server_status.php:1079 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:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10345,11 +10388,11 @@ msgstr "" "Kijk voor meer informatie over de replicatiestatus op deze server in de sectie replicatiestatus." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Replicatiestatus" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10357,35 +10400,35 @@ msgstr "" "Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor " "kunnen de gerapporteerde statistieken afwijken." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Ontvangen" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Verzonden" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "Max. gelijktijdige verbindingen" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Mislukte pogingen" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Afgehaakte" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Opdracht" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10393,11 +10436,11 @@ msgstr "" "Het aantal verbindingen dat afgebroken werd omdat de client wegviel zonder " "de verbinding keurig af te sluiten." -#: server_status.php:1321 +#: server_status.php:1320 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:1322 +#: server_status.php:1321 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 " @@ -10408,18 +10451,18 @@ msgstr "" "hebben gemaakt van een tijdelijk bestand om opdrachten uit de transactie op " "te slaan." -#: server_status.php:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 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:1325 +#: server_status.php:1324 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 " @@ -10431,11 +10474,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10443,7 +10486,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:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10451,7 +10494,7 @@ msgstr "" "Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad " "(mogelijk een reeds bestaande sleutel)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10459,23 +10502,23 @@ msgstr "" "Het aantal INSERT DELAYED afhandelingsthreads in gebruik. Elke afzonderlijke " "tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen thread." -#: server_status.php:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Het aantal met INSERT DELAYED opgeslagen rijen." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Het aantal uitgevoerde FLUSH-opdrachten." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Het aantal interne COMMIT-opdrachten." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10485,7 +10528,7 @@ msgstr "" "met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft " "aan hoeveel tabellen met discovery werden opgezocht." -#: server_status.php:1335 +#: 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, " @@ -10495,7 +10538,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:1336 +#: server_status.php:1335 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." @@ -10504,7 +10547,7 @@ msgstr "" "hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige " "indexen." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10514,7 +10557,7 @@ msgstr "" "wordt verhoogd wanneer u een indexkolom raadpleegt met een bereikbeperking " "of bij het doen van een indexscan." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10522,7 +10565,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:1339 +#: 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 " @@ -10535,7 +10578,7 @@ msgstr "" "gehele tabel moet scannen of er worden joins toegepast die niet goed " "gebruikmaken van sleutels." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10548,35 +10591,35 @@ msgstr "" "zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van " "maken." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Het aantal interne ROLLBACK-opdrachten." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Het aantal update-opdrachten voor een tabelrij." -#: server_status.php:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Het aantal pagina's dat gegevens bevat (dirty en clean)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Het aantal pagina's dat momenteel \"dirty\" is." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Het aantal vrije pagina's." -#: server_status.php:1348 +#: 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 " @@ -10586,7 +10629,7 @@ msgstr "" "waarin momenteel wordt gelezen of geschreven, of die om een andere reden " "niet geschoond of verwijderd kunnen worden." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10598,11 +10641,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Totale grootte van de bufferpool, in pagina's." -#: server_status.php:1351 +#: 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." @@ -10611,7 +10654,7 @@ msgstr "" "gebeurt wanneer een query een groot deel van een tabel laat scannen, maar in " "willekeurige volgorde." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10619,11 +10662,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:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Het aantal logische leesverzoeken dat door InnoDB werd uitgevoerd." -#: server_status.php:1354 +#: 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." @@ -10631,7 +10674,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:1355 +#: server_status.php:1354 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 " @@ -10645,86 +10688,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:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Het aantal schrijfoperaties uitgevoerd op de InnoDB-bufferpool." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Het aantal fsync()-operaties." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Het aantal momenteel openstaande fsync()-operaties." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Het aantal momenteel openstaande leesoperaties." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Het aantal momenteel openstaande schrijfoperaties." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "De hoeveelheid tot nu toe gelezen gegevens, in bytes." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Het totale aantal operaties voor het lezen van gegevens." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Het totale aantal operaties voor het schrijven van gegevens." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "De hoeveelheid tot nu toe geschreven gegevens, in bytes." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "Het aantal uitgevoerde doublewrite-operaties." -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Het aantal verzoeken voor het schrijven in het logboek." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Het aantal fysieke schrijfoperaties op het logbestand." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Het aantal fsync()-schrijfoperaties uitgevoerd op het logbestand." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Het aantal momenteel openstaande fsync-operaties op het logbestand." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Het aantal momenteel openstaande schrijfoperaties op het logbestand." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Het aantal bytes dat naar het logbestand werd geschreven." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Het aantal pagina's dat werd aangemaakt." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10733,54 +10776,54 @@ msgstr "" "Veel waarden worden geteld in pagina's. Een vaste paginagrootte maakt het " "eenvoudig deze om te zetten naar bytes." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Het aantal gelezen pagina's." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Het aantal geschreven pagina's." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht." -#: server_status.php:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Het aantal rijen dat werd verwijderd uit InnoDB-tabellen." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Het aantal rijen dat werd ingevoegd in InnoDB-tabellen." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Het aantal rijen dat werd gelezen uit InnoDB-tabellen." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB-tabellen." -#: server_status.php:1387 +#: 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." @@ -10789,13 +10832,13 @@ msgstr "" "niet naar disk zijn geschreven. Dit stond voorheen bekend als " "Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." msgstr "Het aantal ongebruikte blokken in het sleutelcache." -#: server_status.php:1389 +#: server_status.php:1388 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 " @@ -10804,15 +10847,15 @@ msgstr "" "Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal " "behaalde waarde sinds het starten van de server." -#: server_status.php:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "Percentage van de gebruikte sleutelcache (berekende waarde)" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10822,7 +10865,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:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10830,22 +10873,22 @@ msgstr "" "Sleutelcachemissers berekend als percentage van fysieke leesoperaties in " "vergelijking met leesverzoeken (berekende waarde)" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Percentage van fysieke schrijfopdrachten vergeleken met schrijfverzoeken " "(berekende waarde)" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -10856,7 +10899,7 @@ msgstr "" "verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend " "dat er nog geen query is gecompiled." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10864,13 +10907,13 @@ msgstr "" "Het maximum aantal verbindingen dat gelijktijdig in gebruik was sinds de " "server gestart werd." -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10878,21 +10921,21 @@ msgstr "" "Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de " "tabelcachewaarde te laag." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Het totaal aantal geopende bestanden." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Het totaal aantal open tabellen." -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10902,19 +10945,19 @@ msgstr "" "wijzen op versnippering, wat opgelost kan worden door een FLUSH QUERY CACHE-" "statement uit te voeren." -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "De hoeveelheid vrij geheugen voor het querycache." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Het aantal cache-hits." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Het aantal queries dat aan de cache werd toegevoegd." -#: server_status.php:1408 +#: 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 " @@ -10927,7 +10970,7 @@ msgstr "" "gebruikt (least recently used, LRU) strategie om te bepalen welke queries " "worden verwijderd." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10935,19 +10978,19 @@ msgstr "" "Het aantal niet-gecachte queries (niet cachebaar, danwel niet gecached " "vanwege de instelling query_cache_type)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Het aantal queries dat in de cache staat." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Het totaal aantal blokken in de querycache." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "De status van failsafe-replicatie (nog niet geïmplementeerd)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10955,13 +10998,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10970,7 +11013,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:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10978,17 +11021,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10996,13 +11039,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:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11010,14 +11053,14 @@ msgstr "" "Het aantal threads waarvoor het opstarten langer dan slow_launch_time " "seconden duurde." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11027,24 +11070,24 @@ msgstr "" "uitvoeren. Indien deze waarde hoog is, is het een optie om de " "systeemvariabele sort_buffer_size te vergroten." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Het aantal gesorteerde rijen." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -11056,7 +11099,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:1429 +#: server_status.php:1428 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 " @@ -11066,11 +11109,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Het aantal momenteel openstaande verbindingen." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11082,47 +11125,47 @@ msgstr "" "verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede " "thread-implementatie, geen noemenswaardige prestatieverbetering.)" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "Threadcache-trefprecentage (berekende waarde)" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Het aantal threads dat actief bezig is." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Start bewaking" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Instructies/Setup" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Klaar met herschikken/bewerken van de grafieken" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Een grafiek toevoegen" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Herschikken/bewerken van de grafieken" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Vernieuwingsfrequentie" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Grafiekkolommen" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Grafiekschikking" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -11131,15 +11174,15 @@ msgstr "" "browser. Eventueel kan u dit exporteren, als u een ingewikkelde configuratie " "heeft." -#: server_status.php:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Standaardwaarde herstellen" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Bewakingsinstructies" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11154,7 +11197,7 @@ msgstr "" "dat general_log veel gegevens genereert en dat de belasting van de server " "tot 15% kan stijgen" -#: server_status.php:1638 +#: server_status.php:1637 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,11 +11209,11 @@ msgstr "" "Loggen naar een tabel wordt ondersteund vanaf MySQL 5.1.6. U kunt wel de " "grafiekfunctionaliteit gebruiken." -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Gebruik van de monitor:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11181,7 +11224,7 @@ msgstr "" "'Instellingen', of gelijk welke grafiek verwijderen via het tandwielicoon " "bij iedere grafiek." -#: server_status.php:1655 +#: server_status.php:1654 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 " @@ -11194,11 +11237,11 @@ msgstr "" "geladen, daar kunt u op één van de SELECT-statements klikken om deze verder " "te analyseren." -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Hou rekening met:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11211,198 +11254,198 @@ msgstr "" "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:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Grafiek instellen" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Statusvariabele(n)" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Selecteer series:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Algemeen bewaakt" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "of geef variabelenaam op:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Verschil weergeven" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Een scheiding toepassen" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Eenheid toevoegen aan gegevenswaarden" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Deze serie toevoegen" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Reeks leegmaken" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Series in grafiek:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Logstatistieken" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Geselecteerde tijdspanne:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Enkel de opdrachten SELECT, INSERT, UPDATE en DELETE opvragen" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" "Variabelegegevens verwijderen uit INSERT-opdrachten om beter te kunnen " "groeperen" -#: server_status.php:1752 +#: server_status.php:1751 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:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Resultaten worden gegroepeerd door de tekst van de SQL-query." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Query-analyser" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d seconde" msgstr[1] "%d seconden" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minuut" msgstr[1] "%d minuten" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Verbinding naar de brondatabase is mislukt" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Verbinding naar de bestemmingsdatabase is mislukt" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Databank '%s' bestaat niet." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Structuursynchronisatie" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Gegevenssynchronisatie" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "niet aanwezig" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Structuurverschillen" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Gegevensverschillen" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Kolom(men) toevoegen" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Kolom(men) verwijderen" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Kolom(men) wijzigen" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Index(en) verwijderen" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Index(en) toepassen" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Rij(en) bijwerken" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Rij(en) toevoegen" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Wilt u alle vorige rijen verwijderen uit de bestemmingstabellen?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Geselecteerde wijzigingen toepassen" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Databanken synchroniseren" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "De geselecteerde tabellen zijn gesynchroniseerd met de brontabellen." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "De bestemmingsdatabank werd gesynchroniseerd met de brondatabank" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Uitgevoerde SQL-queries" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Geef handmatig op" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Huidige verbinding" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Configuratie: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11410,19 +11453,19 @@ msgstr "" "De bestemmingsdatabank zal volledig worden gesynchroniseerd met de " "brondatabank. De brondatabank zal niet worden gewijzigd." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Variabele instellen is mislukt" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Servervariabelen en -instellingen" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Sessievariabelen" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Globale waarde" @@ -11767,157 +11810,157 @@ msgstr "" msgid "Wrong data" msgstr "Verkeerde gegevens" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bladwijzer \"%s\" wordt gebruikt als standaard browsequery." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Weet u zeker dat u de volgende SQL-query wil uitvoeren?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Getoond als PHP-code" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Gevalideerde SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL-resultaat" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Gegenereerd door" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemen met de indexen van de tabel `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Label" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s is bijgewerkt" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "De geselecteerde gebruikers zijn met succes verwijderd." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Balk" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Kolom" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Lijn" # "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen # iets anders. -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Spline" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Taart" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Opgestapeld" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Grafiektitel" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "X-as:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Series:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Label van X-as:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "X-waarden" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Label van Y-as:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Y-waarden" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Tabel %s bestaat reeds!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Tabel %1$s is aangemaakt." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Een dump (schema) van tabel bekijken" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "GIS-visualisatie tonen" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Breedte" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Hoogte" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Kolom naam geven" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Geen --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Plaatshoudende kolom" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Hertekenen" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Opslaan naar bestand" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Bestandsnaam" @@ -11933,30 +11976,30 @@ msgstr "Kan index niet naar PRIMARY hernoemen!" msgid "No index parts defined!" msgstr "Geen index-delen gedefinieerd!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Index toevoegen" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Index bewerken" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Indexnaam:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" moet de naam van en alleen van een primaire " "sleutel zijn!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Indextype:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Voeg  %s  kolom(men) toe aan index" @@ -11979,151 +12022,151 @@ msgstr "Tabel %s is verplaatst naar %s." msgid "Table %s has been copied to %s." msgstr "Tabel %s is gekopieerd naar %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "De tabelnaam is leeg!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Sorteer de tabel volgens" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(apart)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Verplaats tabel naar (databank.tabel):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Tabelopties" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Tabel hernoemen naar" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Tabel kopiëren naar (databank.tabel):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Wissel naar de gekopieerde tabel" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Tabelonderhoud" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Tabel defragmenteren" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabel %s is geschoond" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "De tabel leegmaken (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Gegevens of tabel verwijderen" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "De tabel leegmaken (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "De tabel verwijderen (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Partitie-onderhoud" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partitie %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analyseren" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Controleren" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimaliseren" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Heropbouwen" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Repareren" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Partitionering verwijderen" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Controleer referentiële integriteit:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Toon tabellen" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Ruimtegebruik" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Effectief" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Rijstatistieken" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "statisch" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dynamisch" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Lengte van de rij" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Grootte van de rij" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Volgende automatische indexwaarde" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Fout bij het maken van vreemde sleutel naar %1$s (controleer gegevenstypen)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Interne relatie" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12131,105 +12174,105 @@ msgstr "" "Een interne relatie is niet noodzakelijk wanneer er reeds een FOREIGN KEY " "relatie bestaat." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Beperking voor vreemde sleutel" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Ruimtelijk" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Onderscheidbare waarden" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Een primaire sleutel toevoegen" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Een unieke index toevoegen" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Een SPATIAL-index toevoegen" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Een FULLTEXT-index toevoegen" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Geen" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Kolom %s is verwijderd" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Een primaire sleutel is toegevoegd aan %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Een index is toegevoegd aan %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Meer acties weergeven" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Kolom(men) verwijderen" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "View bewerken" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Relatieoverzicht" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Tabelstructuur voorstellen" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Kolom toevoegen" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Aan het eind van de tabel" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Aan het begin van de tabel" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Na %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Een index aanmaken op kolommen %s " -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "gepartitioneerd" @@ -12381,71 +12424,39 @@ msgstr "Deze manipulatie-statements tracken:" msgid "Create version" msgstr "Versie aanmaken" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Voer een \"query als voorbeeld\" (wildcard: \"%\") uit op twee verschillende " -"kolommen" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Bijkomende zoekcriteria" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Gebruik deze kolom om ieder punt een naam te geven" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Maximum aantal af te drukken regels" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Doorzoek/bewerk de punten" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Hoe te gebruiken" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Herstellen" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Bekijk meer thema's!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Beschikbare MIME-types" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-types die in schuingedrukt staan hebben geen aparte " "transformatiefuncties" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Beschikbare transformaties" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Omschrijving" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "U heeft niet genoeg rechten om hier te zijn!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Het profiel is aangepast." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "VIEW-naam" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index a11b9fa1aa..41b97c05f7 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,79 +18,79 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "" @@ -106,88 +106,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "" -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "" @@ -196,14 +197,14 @@ msgstr "" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "" @@ -216,179 +217,179 @@ msgstr "" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "" -#: db_operations.php:311 +#: db_operations.php:314 #, possible-php-format msgid "Database %1$s has been renamed to %2$s" msgstr "" -#: db_operations.php:315 +#: db_operations.php:318 #, possible-php-format msgid "Database %1$s has been copied to %2$s" msgstr "" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "" -#: db_operations.php:482 +#: db_operations.php:488 #, possible-php-format msgid "Database %s has been dropped." msgstr "" -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, possible-php-format msgid "Add %s" msgstr "" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "" -#: db_operations.php:599 +#: db_operations.php:605 #, possible-php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, possible-php-format msgid "%s table" msgid_plural "%s tables" @@ -399,395 +400,396 @@ msgstr[1] "" msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:189 +#: db_qbe.php:179 #, possible-php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "" -#: db_qbe.php:663 +#: db_qbe.php:654 #, possible-php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "" -#: db_search.php:216 +#: db_search.php:219 #, possible-php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, possible-php-format msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, possible-php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "" -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, possible-php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, possible-php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, possible-php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, possible-php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "" @@ -799,27 +801,27 @@ msgstr "" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, possible-php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:358 +#: export.php:357 #, possible-php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, possible-php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:785 +#: export.php:780 #, possible-php-format msgid "Dump has been saved to file %s." msgstr "" @@ -828,174 +830,174 @@ msgstr "" msgid "Invalid export type" msgstr "" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, possible-php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, possible-php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, possible-php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, possible-php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, possible-php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -1004,7 +1006,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1044,7 +1046,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, possible-php-format msgid "Add %d column(s) to index" msgstr "" @@ -1062,16 +1064,16 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "" @@ -1088,23 +1090,24 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "" @@ -1114,24 +1117,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "" @@ -1151,7 +1154,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "" @@ -1169,7 +1172,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "" @@ -1210,14 +1213,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "" @@ -1269,32 +1272,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "" @@ -1308,11 +1311,11 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "" @@ -1332,11 +1335,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "" @@ -1429,7 +1432,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "" @@ -1507,7 +1510,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "" @@ -1595,10 +1598,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1646,9 +1649,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1660,11 +1663,11 @@ msgstr "" msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1676,9 +1679,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "" @@ -1718,15 +1721,15 @@ msgstr "" msgid "Show indexes" msgstr "" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "" @@ -1754,7 +1757,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1793,8 +1796,8 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "" @@ -1802,18 +1805,18 @@ msgstr "" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, possible-php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "" @@ -1825,7 +1828,7 @@ msgstr "" msgid "Show search criteria" msgstr "" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "" @@ -1869,12 +1872,12 @@ msgstr "" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -1894,7 +1897,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "" @@ -1977,7 +1980,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "" @@ -2066,63 +2069,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "" @@ -2160,32 +2163,32 @@ msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "" @@ -2298,16 +2301,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "" @@ -2328,70 +2331,266 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "" + +#: libraries/DisplayResults.class.php:702 +#, possible-php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, possible-php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "" @@ -2404,8 +2603,8 @@ msgstr "" msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "" @@ -2426,128 +2625,128 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "" @@ -2572,7 +2771,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2659,16 +2858,96 @@ 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 +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 +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 +msgid "Value" +msgstr "" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "" + #: libraries/Theme.class.php:169 #, possible-php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2687,7 +2966,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -2976,20 +3255,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, possible-php-format msgid "Welcome to %s" msgstr "" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3001,58 +3280,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, possible-php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "" @@ -3084,7 +3359,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "" @@ -3096,13 +3371,13 @@ msgstr "" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "" @@ -3127,233 +3402,211 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, possible-php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, possible-php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, possible-php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, possible-php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, possible-php-format msgid "Max: %s%s" msgstr "" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, possible-php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, possible-php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, possible-php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, possible-php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "" @@ -3383,8 +3636,8 @@ msgid "Closed" msgstr "" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "" @@ -3525,9 +3778,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "" @@ -3729,10 +3982,6 @@ msgstr "" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3785,7 +4034,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "" @@ -3794,7 +4043,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "" @@ -3898,7 +4147,7 @@ msgid "MIME type" msgstr "" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "" @@ -5348,9 +5597,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -5617,30 +5866,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "" @@ -5661,22 +5904,22 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -5827,25 +6070,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, possible-php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, possible-php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, possible-php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -5952,383 +6195,238 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "" - -#: libraries/display_tbl.lib.php:636 -#, possible-php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, possible-php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6336,48 +6434,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6385,18 +6483,18 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6443,14 +6541,14 @@ msgstr "" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6508,14 +6606,14 @@ msgstr "" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "" @@ -6700,21 +6798,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6806,12 +6895,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "" @@ -6876,91 +6965,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, possible-php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6975,32 +7048,32 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "" @@ -7210,90 +7283,90 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "" @@ -7301,7 +7374,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7313,13 +7386,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7332,7 +7405,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "" @@ -7346,38 +7419,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7391,7 +7464,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, possible-php-format @@ -7422,88 +7495,89 @@ msgstr "" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, possible-php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7532,7 +7606,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, possible-php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7551,105 +7625,105 @@ msgstr "" msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, possible-php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, possible-php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -7667,36 +7741,36 @@ msgstr "" msgid "Trigger %1$s has been created." msgstr "" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -7780,7 +7854,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, possible-php-format @@ -7789,7 +7863,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, possible-php-format @@ -7797,7 +7871,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, possible-php-format @@ -7808,27 +7882,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "" @@ -7934,7 +8008,7 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -7952,7 +8026,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -7971,7 +8045,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -7980,11 +8054,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8066,7 +8140,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, possible-php-format msgid "Tracking of %s is activated." msgstr "" @@ -8086,8 +8160,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "" @@ -8131,13 +8205,13 @@ msgstr "" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "" @@ -8150,17 +8224,17 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, possible-php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8168,41 +8242,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, possible-php-format msgid "" @@ -8310,11 +8349,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, possible-php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8325,7 +8364,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8352,7 +8391,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "" @@ -8372,9 +8411,9 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "" @@ -8482,126 +8521,126 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "" @@ -8613,51 +8652,51 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "" @@ -8669,87 +8708,87 @@ msgstr "" msgid "Modifications have been saved" msgstr "" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, possible-php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, possible-php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "" @@ -8757,17 +8796,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -8783,7 +8822,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "" @@ -8791,31 +8830,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, possible-php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -8825,369 +8864,369 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, possible-php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, possible-php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, possible-php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, possible-php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, possible-php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, possible-php-format msgid "Privileges for %s" msgstr "" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, possible-php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9196,138 +9235,138 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, possible-php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, possible-php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, possible-php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, possible-php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, possible-php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9336,251 +9375,251 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, possible-php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, possible-php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, possible-php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -9588,115 +9627,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, possible-php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, possible-php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, possible-php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -9704,78 +9743,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -9783,7 +9822,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -9791,42 +9830,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -9834,33 +9873,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -9869,242 +9908,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10112,99 +10151,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10212,18 +10251,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10231,61 +10270,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10294,7 +10333,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10302,18 +10341,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10321,11 +10360,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10333,214 +10372,214 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "" -#: server_status.php:1808 +#: server_status.php:1807 #, possible-php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1811 +#: server_status.php:1810 #, possible-php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, possible-php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, possible-php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -10824,153 +10863,153 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:253 +#: sql.php:268 #, possible-php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, possible-php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, possible-php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "" -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "" -#: tbl_create.php:31 +#: tbl_create.php:30 #, possible-php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, possible-php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "" @@ -10986,28 +11025,28 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, possible-php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11030,252 +11069,252 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, possible-php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, possible-php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, possible-php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, possible-php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, possible-php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, possible-php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, possible-php-format msgid "After %s" msgstr "" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, possible-php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -11423,65 +11462,37 @@ msgstr "" msgid "Create version" msgstr "" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/pl.po b/po/pl.po index a1b1bfd980..13c5afc460 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 14:07+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: iMutrix\n" @@ -15,21 +15,21 @@ msgstr "" "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Pokaż wszystko" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Numer strony:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "zostało zamknięte, lub ustawienia zabezpieczeń przeglądarki są " "skonfigurowane na blokowanie aktualizacji między oknami." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Wykonaj" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Nazwa klucza" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Użyj tej wartości" @@ -108,88 +108,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza danych %1$s została utworzona." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Komentarz bazy danych: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Komentarze tabeli" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Kolumna" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Ustawienia domyślne" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Odsyłacze do" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Komentarze" @@ -198,14 +199,14 @@ msgstr "Komentarze" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nie" @@ -218,120 +219,120 @@ msgstr "Nie" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Tak" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Zobacz zrzut (schemat) bazy danych" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Nie znaleziono żadnych tabel w bazie danych." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Zaznacz wszystkie" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Odznacz wszystko" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Nazwa bazy danych jest pusta!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Nazwę bazy danych %1$s zmieniono na %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Baza danych %1$s została przekopiowana do %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Zmień nazwę bazy danych na" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Usuń bazę danych" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Baza danych %s została usunięta." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Usuń bazę danych (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Kopiuj bazę danych do" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Tylko struktura" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktura i dane" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Tylko dane" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE przed przekopiowaniem" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj wartość AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Dodaj ograniczenia" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Przełącz do przekopiowanej bazy danych" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Metoda porównywania napisów" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -340,59 +341,59 @@ msgstr "" "Przechowywanie konfiguracji phpMyAdmin została wyłączona. Aby dowiedzieć " "się, dlaczego kliknij %stutaj%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Edytuj lub eksportuj schemat relacji" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Rekordy" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Rozmiar" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "w użyciu" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Tworzenie" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Ostatnia aktualizacja" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Ostatnie sprawdzanie" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -404,117 +405,117 @@ msgstr[2] "%s tabel" msgid "You have to choose at least one column to display" msgstr "Musisz wybrać co najmniej jedną kolumnę do wyświetlenia" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Przełącz do %svisual builder%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sortuj" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Rosnąco" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Malejąco" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Pokaż" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kryteria" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Wstaw" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "I" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Usuń" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Lub" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Zmodyfikuj" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Dodaj/usuń kryteria wierszy" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Dodaj/usuń kolumny" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Zaktualizuj zapytanie" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Użyj tabel" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Zapytanie SQL do bazy danych %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Wyślij zapytanie" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Odmowa dostępu" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "co najmniej jeden z wyrazów" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "wszystkie wyrazy" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "dokładna fraza" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "jako wyrażenie regularne" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Wyniki wyszukiwania dla \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, php-format msgid "%1$s match inside table %2$s" msgid_plural "%1$s matches inside table %2$s" @@ -522,30 +523,30 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Usunąć dopasowania do tabeli %s?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -553,63 +554,63 @@ msgstr[0] "Ogółem: %s dopasowania" msgstr[1] "Ogółem: %s dopasowania" msgstr[2] "Ogółem: %s dopasowania" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Szukaj w bazie danych" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Wyrazy lub wartości do wyszukania (wildcard: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Znajdź:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Wyrazy oddzielone są znakiem spacji (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Wewnątrz tabel:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Wewnątrz kolumny:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Nie znaleziono żadnych tabel w bazie danych" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "nieznany" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s została opróżniona" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Widok %s został usunięty" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s została usunięta" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Śledzenie jest aktywne." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Śledzenie nie jest aktywne." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -618,185 +619,186 @@ msgstr "" "Ten widok ma przynajmniej taką liczbę wierszy (rekordów). Proszę odnieść się " "do %sdokumentacji%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Widok" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikacja" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Suma" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Z zaznaczonymi:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Zaznacz wszystkie" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Zaznacz tabele nieoptymalne" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Podgląd wydruku" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Opróżnij" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Usuń" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Sprawdź tabelę" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optymalizuj tabelę" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Napraw tabelę" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizuj tabelę" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Dodaj przedrostek do tabeli" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Zamień przedrostek tabeli" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopiuj tabelę z przedrostkiem" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Słownik danych" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Tabele śledzone" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Baza danych" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Ostatnia wersja" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Utworzona" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Zaktualizowana" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Status" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Działanie" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Usuń dane śledzące tę tabelę" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "aktywny" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "nie aktywny" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Wersje" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Raport śledzenia" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Migawka struktury" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Tabele nieśledzone" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Śledź tabelę" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Dziennik bazy danych" @@ -808,16 +810,16 @@ msgstr "Zły typ!" msgid "Selected export type has to be saved in file!" msgstr "Wybrany typ eksportu musi być zapisany do pliku!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Złe parametry!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Za mało miejsca na zapis pliku %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -825,12 +827,12 @@ msgstr "" "Plik %s już istnieje na serwerze. Zmień nazwę pliku lub zaznacz opcję " "nadpisywania plików." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serwer WWW nie ma uprawnień do zapisania tego pliku %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Zrzut został zapisany do pliku %s." @@ -839,86 +841,86 @@ msgstr "Zrzut został zapisany do pliku %s." msgid "Invalid export type" msgstr "Niepoprawny typ eksportu" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Wartość dla kolumny \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Użyj OpenStreetMaps jako Podstawowej Warstwy" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Punkt" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Dodaj punkt" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Linia ciągu" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Pierścień zewnętrzny" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Pierścień wewnętrzny" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Dodaj linestring" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Dodaj pierścień wewnętrzny" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Wielokąt" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Dodaj wielokąt" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Dodaj geometrię" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Wyjście" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -926,7 +928,7 @@ msgstr "" "Wybierz \"GeomFromText\" z kolumny \"Function\" i wklej poniższy ciąg znaków " "do pola \"Value\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -935,21 +937,21 @@ msgstr "" "Prawdopodobnie próbowano wczytać zbyt duży plik. Proszę zapoznać się " "%sdokumentacją%s, aby obejść to ograniczenie." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Wyświetlanie zakładki" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Zakładka została usunięta." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Nie można odczytać pliku" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -958,7 +960,7 @@ msgstr "" "Próbowano wczytać plik z nieobsługiwaną kompresją (%s). Albo ten typ " "kompresji nie jest obsługiwany, albo jest wyłączony w konfiguracji." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -969,27 +971,27 @@ msgstr "" "konfigurację PHP. Zobacz [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Nie można przekonwertować zestawu znaków pliku bez biblioteki konwersji" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Nie udało się wczytać wtyczek importu. Proszę sprawdzić instalację!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s utworzona" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import zakończony sukcesem, wykonano %d zapytań." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -997,7 +999,7 @@ msgstr "" "Limit czasu wykonania skryptu minął. Aby ukończyć import, proszę ponownie " "przesłać ten sam plik, a import zostanie wznowiony." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1006,25 +1008,25 @@ msgstr "" "dane, co zwykle oznacza, że phpMyAdmin nie będzie w stanie ukończyć tego " "importu bez zwiększenia limitów czasowych PHP." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Powrót" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin jest bardziej przyjazny w przeglądarkach WWW obsługujących " "ramki." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrukcje \"DROP DATABASE\" są wyłączone." @@ -1033,7 +1035,7 @@ msgstr "Instrukcje \"DROP DATABASE\" są wyłączone." msgid "Do you really want to execute \"%s\"?" msgstr "Czy na pewno chcesz wykonać \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!" @@ -1073,7 +1075,7 @@ msgstr "Dodaj indeks" msgid "Edit Index" msgstr "Edytuj indeks" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Dodaj %d kolumny do indeksu" @@ -1091,16 +1093,16 @@ msgstr "Nazwa hosta jest pusta!" msgid "The user name is empty!" msgstr "Nazwa użytkownika jest pusta!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Hasło jest puste!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Hasła nie są identyczne!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Dodaj użytkownika" @@ -1117,23 +1119,24 @@ msgstr "Usuwanie wybranych użytkowników" msgid "Close" msgstr "Zamknij" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Edytuj" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Wykres ruchu w czasie rzeczywistym" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Wykres połączeń w czasie rzeczywistym /wykres procesów" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Wykres zapytań w czasie rzeczywistym" @@ -1143,24 +1146,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Ogółem" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Inne" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1180,7 +1183,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Procesy" @@ -1198,7 +1201,7 @@ msgstr "Zapytania od czasu ostatniego odświeżenia" msgid "Questions (executed statements by the server)" msgstr "Zapytania (instrukcje wykonane przez serwer)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Statystyki zapytań" @@ -1243,14 +1246,14 @@ msgid "System swap" msgstr "Systemowa przestrzeń wymiany" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1302,32 +1305,32 @@ msgstr "Bajty przesłane" msgid "Bytes received" msgstr "Bajty otrzymane" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Połączenia" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1341,11 +1344,11 @@ msgstr "%d tabeli(l)" msgid "Questions" msgstr "Pytania" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Ruch" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Ustawienia" @@ -1365,11 +1368,11 @@ msgstr "Dodaj wykres do siatki" msgid "Please add at least one variable to the series" msgstr "Proszę dodać przynajmniej jedną zmienną do serii" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Żaden" @@ -1469,7 +1472,7 @@ msgstr "Zmiana ustawień" msgid "Current settings" msgstr "Ustawienia bieżące" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Tytuł wykresu" @@ -1555,7 +1558,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Czas" @@ -1650,10 +1653,10 @@ msgstr "" "Nie udało zbudować siatki wykresu z importu konfiguracji. Przywracanie " "domyślnej konfiguracji..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1701,9 +1704,9 @@ msgstr "Użyj zmiennej/wzoru" msgid "Test" msgstr "Testuj" -#: 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 +#: 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 msgid "Cancel" msgstr "Anuluj" @@ -1715,11 +1718,11 @@ msgstr "Wczytywanie" msgid "Processing Request" msgstr "Przetwarzanie wywołania" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Błąd przetwarzania wywołania" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Żadna baza danych nie został wybrana." @@ -1731,9 +1734,9 @@ msgstr "Usuwanie Kolumny" msgid "Adding Primary Key" msgstr "Dodawanie klucza głównego" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1773,15 +1776,15 @@ msgstr "Ukryj indeksy" msgid "Show indexes" msgstr "Pokaż indeksy" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Sprawdzanie klucza zewnętrznego:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Włączone)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Wyłączone)" @@ -1809,7 +1812,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "Edytor ENUM/SET" @@ -1848,8 +1851,8 @@ msgstr "Pokaż okno zapytań" msgid "No rows selected" msgstr "Nie żadnych wybrano rekordów" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Zmień" @@ -1857,18 +1860,18 @@ msgstr "Zmień" msgid "Query execution time" msgstr "Czas wykonywania zapytania" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Zapisz" @@ -1880,7 +1883,7 @@ msgstr "Ukryj okno zapytania SQL" msgid "Show search criteria" msgstr "Pokaż kryteria wyszukiwania" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Powiększ szukanie" @@ -1930,12 +1933,12 @@ msgstr "Wyniki zapytania" msgid "Data point content" msgstr "Treść punktu danych" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignoruj" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Kopiuj" @@ -1955,7 +1958,7 @@ msgstr "Wybierz klucz zewnętrzny" msgid "Please select the primary key or a unique key" msgstr "Należy wybrać klucz główny lub klucz jednoznaczny" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Wybierz kolumny do wyświetlenia" @@ -2048,7 +2051,7 @@ msgstr "Generuj" msgid "Change Password" msgstr "Zmień hasło" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Więcej" @@ -2139,63 +2142,63 @@ msgid "December" msgstr "Grudzień" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Gru" @@ -2233,32 +2236,32 @@ msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sob" @@ -2375,16 +2378,16 @@ msgstr "" "Nieoczekiwane znaki w linii %1$s. Spodziewana zakładka, ale nie znaleziono " "\"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "na sekundę" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "na minutę" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "na godzinę" @@ -2405,20 +2408,206 @@ msgstr "Złe uprawnienia pliku konfiguracyjnego, nie powinien być zapisywalny!" msgid "Font size" msgstr "Rozmiar czcionki" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Zapisz edytowane dane" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Przywrócić porządek w kolumnie" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Początek" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Poprzednie" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Następne" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Koniec" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Początek wiersza" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Liczba wierszy" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Tryb" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "poziomo" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "poziomo (obrócone nagłówki)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "pionowo" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "Nagłówki co %s wierszy" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Sortuj wg klucza" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Opcje" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Częściowe teksty" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Pełne teksty" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Klucz relacyjny" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Relacje wyświetlania kolumn" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Pokaż binarne treści" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Pokaż zawartość BLOB" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Pokaż binarne treści jako HEX" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Ukryj transformacje przeglądarki" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Znany tekst" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Znane binarne" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Zabij" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Może być w przybliżeniu. Zobacz [a@./Documentation." +"html#faq3_11@Documentation]FAQ 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "w zapytaniu" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Pokaż wiersze" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "wszystkich" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operacja na wynikach zapytania" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Podgląd wydruku (z pełnymi tekstami)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Wyświetlanie wykresu" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Wizualizacja danych GIS" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Utwórz widok" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Łącze nie znalezione" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Zbyt wiele komunikatów o błędach, niektóre nie są wyświetlane." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Plik nie został przesłanym plikiem." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Przesłany plik przekracza dyrektywę upload_max_filesize w pliku php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2426,27 +2615,27 @@ msgstr "" "Przesłany plik przekracza dyrektywę MAX_FILE_SIZE, który został określony w " "formularzu HTML." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Przesłany plik był tylko częściowo przesłany." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Brakuje folderu tymczasowego." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Nie udało się zapisać pliku na dysk." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Przesłanie pliku zostało zatrzymane przez rozszerzenie." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Nieznany błąd w przesyłania pliku." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2454,26 +2643,39 @@ msgstr "" "Błąd podczas przenoszenia przesłanego pliku. Zobacz [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Błąd podczas przenoszenia plików na serwerze." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Nie można odczytać (przeniesiony) przesłanego pliku." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Otwórz nowe okno phpMyAdmina" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Odtąd musi być włączona obsługa ciasteczek." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksy" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Jednoznaczny" @@ -2486,8 +2688,8 @@ msgstr "Spakowany" msgid "Cardinality" msgstr "Moc" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Komentarz" @@ -2510,128 +2712,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Bazy danych" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Serwer" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Wstaw" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacje" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Śledzenie" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tabela wydaje się być pusta!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Baza danych wydaje się pusta!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Zapytanie" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Uprawnienia" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Procedury i funkcje" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Zdarzenia" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Widok projektu" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Użytkownicy" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synchronizacja" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Dziennik binarny" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Zmienne" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Kodowania znaków" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Wtyczki" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Mechanizmy" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Błąd" @@ -2659,7 +2861,7 @@ msgstr[0] "Wstawionych rekordów: %1$d." msgstr[1] "Wstawionych rekordów: %1$d." msgstr[2] "Wstawionych rekordów: %1$d." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Błąd podczas tworzenia PDF:" @@ -2750,17 +2952,101 @@ 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 +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 +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 +msgid "Value" +msgstr "Wartość" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Tabela szukania" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Edycja/Wstaw" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Wybierz kolumny (przynajmniej jedną):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Dodaj warunki przeszukiwania (warunek dla \"WHERE\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Liczba wierszy na stronie" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Kolejność wyświetlania:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "W tej kolumnie oznacz każdy punkt" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Maksymalna liczba wierszy do wykreślenia" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Przeglądaj zewnętrzne wartości" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Dodatkowe kryteria wyszukiwania" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Wykonaj \"zapytanie wg przykładu\" (symbol wieloznaczny \"%\") dla dwóch " +"różnych kolumn" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Wykonaj \"zapytanie przez przykład\" (znak globalny: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Przeglądaj/Edytuj punkty" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Jak korzystać" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Resetuj" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" "Nie znaleziono prawidłowej ścieżki do obrazka dla motywu graficznego %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Podgląd niedostępny." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "weź to" @@ -2779,7 +3065,7 @@ msgstr "Motywu %s nie znaleziono!" msgid "Theme path not found for theme %s!" msgstr "Nie znaleziono ścieżki do motywu %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Motyw" @@ -3133,13 +3419,13 @@ msgstr "Wyliczenie, wybrane z listy zdefiniowane wartości" msgid "Cannot connect: invalid settings." msgstr "Nie udało się nawiązać połączenia: błędne ustawienia." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Witamy w %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3148,7 +3434,7 @@ msgstr "" "Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Możesz " "użyć %1$s skryptu instalacyjnego %2$s, aby utworzyć jedną." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3164,59 +3450,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Nie można używać Blowfish z mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Javascript musi być włączona obok tego punktu" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Login" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Możesz wprowadzić nazwę hosta/adres IP i port oddzielając spacją." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Serwer:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Użytkownik:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Hasło:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Wybór serwera" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Odtąd musi być włączona obsługa ciasteczek." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Konfiguracja zabrania logowania bez hasła (zobacz AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Brak aktywności przez co najmniej %s sekund, proszę zalogować się jeszcze raz" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Nie udało się zalogować na serwer MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Błędny login/hasło. Odmowa dostępu." @@ -3248,7 +3530,7 @@ msgstr "współdzielone" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabele" @@ -3260,13 +3542,13 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Dane" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Nadmiar" @@ -3291,19 +3573,11 @@ msgstr "Sprawdź uprawnienia bazy danych "%s"." msgid "Check Privileges" msgstr "Sprawdź uprawnienia" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "można wykorzystać" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "wykryty klawisz numeryczny" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Nie można odczytać pliku konfiguracyjnego" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3311,12 +3585,12 @@ msgstr "" "To zazwyczaj oznacza, że ​​jest błąd składni w tym, sprawdź wszelkie błędy " "poniżej." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nie można załadować domyślnej konfiguracji z: \"%1$s\"" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3324,205 +3598,191 @@ msgstr "" "Dyrektywa $cfg['PmaAbsoluteUri'] MUSI być ustawiona w pliku " "konfiguracyjnym!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Niewłaściwy indeks serwera: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Należy uaktualnić do %s %s lub nowszej." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "Próba nadpisania GLOBALS" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "można wykorzystać" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "wykryty klawisz numeryczny" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Maksymalny rozmiar: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentacja" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "ang." #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "ang." #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "ang." -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "Zapytanie SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL zwrócił komunikat: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Nie udało się połączyć z walidatorem SQL!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Wyjaśnij SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Pomiń wyjaśnienie SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Bez kodu PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Utwórz kod PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Odśwież" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Pomiń sprawdzanie poprawności SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Weryfikacja SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Szybka edycja tego zapytania" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "W linii" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profilowanie" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Nie" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s godzin, %s minut i %s sekund" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Brakuje parametru:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Początek" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Poprzednie" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Następne" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Koniec" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Przejście do bazy danych "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Kliknij, aby przełączać" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Wyszukaj w komputerze:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wybierz katalog serwera WWW dla uploadu %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Brak plików do wysłania" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Wykonaj" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Drukuj" @@ -3552,8 +3812,8 @@ msgid "Closed" msgstr "Zamknięte" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Wyłączone" @@ -3694,9 +3954,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Resetuj" @@ -3921,10 +4181,6 @@ msgstr "Ukryj działania struktury tabeli" msgid "Show binary contents as HEX by default" msgstr "Pokaż binarne treści jako HEX domyślnie" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Pokaż binarne treści jako HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Pokaż wykaz baz danych jako listę zamiast listy rozwijanej" @@ -3981,7 +4237,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Maksymalny czas wykonania" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Zapisz jako plik" @@ -3990,7 +4246,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4094,7 +4350,7 @@ msgid "MIME type" msgstr "Typ MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relacje" @@ -5706,9 +5962,9 @@ msgstr "Wymaga włączenia walidatora SQL" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Hasło" @@ -6005,14 +6261,6 @@ msgstr "Proszę sprawdzić uprawnienia katalogu zawierającej bazę danych." msgid "Details..." msgstr "Szczegóły..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Może być w przybliżeniu. Zobacz [a@./Documentation." -"html#faq3_11@Documentation]FAQ 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6021,18 +6269,18 @@ msgstr "" "konfiguracyjnym nie powiodło się." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Zmień hasło" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Brak hasła" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Ponownie" @@ -6053,22 +6301,22 @@ msgstr "Utwórz bazę danych" msgid "Create" msgstr "Utwórz" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Brak uprawnień" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nazwa" @@ -6225,25 +6473,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Kodowanie konwersji:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s z %2$s gałęzi" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "brak gałęzi" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Zmiany Git" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "miejsce na %1$s dla %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "autorem %1$s dla %2$s" @@ -6362,173 +6610,27 @@ msgstr "Opcje formatu:" msgid "Language" msgstr "Język" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Zapisz edytowane dane" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Przywrócić porządek w kolumnie" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Początek wiersza" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Liczba wierszy" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Tryb" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "poziomo" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "poziomo (obrócone nagłówki)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "pionowo" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Nagłówki co %s wierszy" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Sortuj wg klucza" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Opcje" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Częściowe teksty" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Pełne teksty" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Klucz relacyjny" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Relacje wyświetlania kolumn" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Pokaż binarne treści" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Pokaż zawartość BLOB" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Ukryj transformacje przeglądarki" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Znany tekst" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Znane binarne" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Wiersz został usunięty" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Zabij" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "w zapytaniu" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Pokaż wiersze" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "wszystkich" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operacja na wynikach zapytania" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Podgląd wydruku (z pełnymi tekstami)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Wyświetlanie wykresu" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Wizualizacja danych GIS" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Utwórz widok" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Łącze nie znalezione" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Informacja o wersji" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Katalog domowy danych" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Wspólna część ścieżki do wszystkich plików danych InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Pliki danych" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Przyrost autoextend" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6536,11 +6638,11 @@ msgstr "" "Wielkość przyrostu rozszerzenia wielkości tabel autoextending, gdy staje się " "pełny." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Rozmiar rezerw buforowych" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6548,79 +6650,79 @@ msgstr "" "Wielkość pamięci bufora InnoDB używa do buforowania danych i indeksów swoich " "tabel." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Rezerwy buforowe" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Status InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Użycie rezerw buforowych" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "strony" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Strony puste" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Strony brudne" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Strony zawierające dane" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Strony do wymiecenia" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Strony używane" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Zablokowane strony" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Aktywność rezerw buforowych" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Żądania odczytu" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Żądania zapisu" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Pominięty odczyt" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Czekanie zapisu" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Pominięty odczyt w %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Czekanie zapisu w %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Rozmiar wskaźnika danych" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6628,11 +6730,11 @@ msgstr "" "Domyślny rozmiar wskaźnika w bajtach, który jest używany przez CREATE TABLE " "dla tabel MyISAM, gdy nie określono opcji MAX_ROWS." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Tryb automatycznej naprawy" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6640,11 +6742,11 @@ msgstr "" "Tryb w którym po awarii tabele MyISAM są automatycznie naprawiane; włączany " "przez opcję startową serwera --myisam-recover." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Maksymalny rozmiar pliku tymczasowego dla sortowania" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6654,11 +6756,11 @@ msgstr "" "ponownym tworzeniu indeksu MyISAM (podczas operacji REPAIR TABLE, ALTER " "TABLE lub LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Maksymalny rozmiar pliku tymczasowego dla tworzenia indeksu" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6668,11 +6770,11 @@ msgstr "" "większy o wartość tu określoną, niż w wypadku zastosowania metody pamięci " "podręcznej kluczy, preferuj tę drugą metodę." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Napraw wątki" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6681,11 +6783,11 @@ msgstr "" "równolegle (każdy indeks we własnym wątku) podczas naprawy przez proces " "sortowania." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Rozmiar bufora sortowania" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6694,11 +6796,11 @@ msgstr "" "operacji REPAIR TABLE albo gdy indeksy są tworzone przez polecenia CREATE " "INDEX lub ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Rozmiar pamięci podręcznej indeksów" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6706,11 +6808,11 @@ msgstr "" "Ilość pamięci zaalokowanej jako pamięć podręczna indeksów. Domyślną " "wartością jest 32MB. Pamięc jest używana tylko do buforowane stron indeksów." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Rozmiar pamięci podręcznej rekordów" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6720,11 +6822,11 @@ msgstr "" "danych w tabeli. Domyślną wartością jest 32MB. Pamięć ta jest używana do " "buforowania zmian danych (.xtd) i wskaźnika wiersza (.xtr)." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Rozmiar pamięci podręcznej dziennika" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6732,11 +6834,11 @@ msgstr "" "Ilość pamięci zaalokowanej jako pamięć podręczna dziennika transakcji. " "Domyślną wartością jest 16MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Próg pliku dziennika" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6744,11 +6846,11 @@ msgstr "" "Wielkość dziennika transakcji sprzed rollover, i nowy log jest tworzony. " "Domyślną wartością jest 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Rozmiar bufora transakcji" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6756,11 +6858,11 @@ msgstr "" "Wielkość ogólnego bufora dziennika transakcji (silnik przydziela 2 bufory " "tej wielkości). Domyślnie jest to 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Częstotliwość punktów kontrolnych" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6768,11 +6870,11 @@ msgstr "" "Ilość danych zapisanych do dziennika transakcji przed wykonaniem punktu " "kontrolnego. Domyślną wartością jest 24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Próg dziennika danych" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6785,11 +6887,11 @@ msgstr "" "powiększenie całkowitej liczby dzienników danych przechowywanych w bazie " "danych." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Próg śmieci" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6797,11 +6899,11 @@ msgstr "" "Procent śmieci w dzienniku danych, nim zostanie skompaktowany. Liczba jest " "między 1 i 99. Domyślną wartością jest 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Rozmiar bufora dziennika" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6811,27 +6913,27 @@ msgstr "" "Silnik przydziela jeden bufor na wątek, ale tylko wtedy, gdy wątek jest " "wymagany do zapisu dziennika danych." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Wzrost rozmiaru pliku danych" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Wzrost rozmiaru plików obsługi danych (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Wzrost rozmiaru pliku wiersza" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Wzrost rozmiaru plików zawierających wskaźniki wierszy (.xtr)." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Liczba plików dziennika" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6843,7 +6945,7 @@ msgstr "" "dzienniki zostaną usunięte, w przeciwnym razie zostana zmienione nazyw i " "dostana nastepny najwyższy numer." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6852,11 +6954,11 @@ msgstr "" "Dokumentacja i dodatkowe informacje o PBXT można znaleźć na %sStronie " "domowej PrimeBase XT%s." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Linki pokrewne" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "PrimeBase XT Blog wg Paul McCullagh" @@ -6903,14 +7005,14 @@ msgstr "Zrzut danych tabeli" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Zdarzenie" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Określenie" @@ -6968,14 +7070,14 @@ msgstr "Wyświetl typy MIME" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Host" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Czas wygenerowania" @@ -7182,21 +7284,12 @@ msgstr "Widoki" msgid "Export contents" msgstr "Eksportuj zawartość" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Otwórz nowe okno phpMyAdmina" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Nie znaleziono danych do wizualizacji GIS." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "Próba nadpisania GLOBALS" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7296,12 +7389,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Nazwa tabeli" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Nazwy kolumn" @@ -7371,93 +7464,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funkcja" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Ukryj" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binarne" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binarne - nie do edycji" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "katalog przesyłania serwera web" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Edycja/Wstaw" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Kontynuuj wstawianie %s wierszy" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "i potem" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Wstaw jako nowy wiersz" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Wstaw jko nowy wiersz i ignoruj błędy" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Pokaż wstawiane zapytanie" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Wróć" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Wstaw nowy wiersz" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Powrót do tej strony" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Edytuj następny wiersz" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Wartość" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Wyświetl zapytanie SQL" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Id wstawionego wiersza: %1$d" @@ -7472,32 +7549,32 @@ msgstr "Brak" msgid "Convert to Kana" msgstr "Konwersja do Kana" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Od" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Do" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Wyślij" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Dodaj prefiks tabeli" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Dodaj prefiks" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 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:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Bez zmian" @@ -7707,83 +7784,83 @@ msgstr "Przeładuj ramki nawigacji" msgid "This format has no options" msgstr "Ten format nie ma żadnych opcji" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "nie OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Włączone" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Ogólne funkcje relacyjne" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Funkcje wyświetlania" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Tworzenie PDF-ów" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Wyświetl komentarze dla kolumn" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Sposób prezentacji danych" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Informacje o tym, jak zaktualizować tabelę Column_comments znajdują się w " "dokumentacji" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Zapamiętane zapytanie SQL" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Historia SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Stale ostatnio używane tabele" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Preferencje trwałych tabel UI" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Preferencje użytkownika" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Szybkie kroki w celu konfiguracji zaawansowanych funkcji:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Utwórz wymagane tabele używając examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Utwórz użytkownika pma i nadaj mu prawa do tych tabel." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7791,13 +7868,13 @@ msgstr "" "Włącz zaawansowane funkcje w pliku konfiguracyjnym (config.inc.php), na przykład zaczynając od config.sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Zaloguj się ponownie do phpMyAdmin, żeby załadować zmieniony plik " "konfiguracyjny." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "brak opisu" @@ -7805,7 +7882,7 @@ msgstr "brak opisu" msgid "Slave configuration" msgstr "Konfiguracja serwera podrzędnego" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Zmień lub skonfiguruj ponownie serwer główny" @@ -7819,13 +7896,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Nazwa użytkownika" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -7838,7 +7915,7 @@ msgid "Slave status" msgstr "Stan serwera podrzędnego" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Zmienna" @@ -7854,38 +7931,38 @@ msgstr "" "Tylko serwery podrzędne uruchomione z opcją --report-host=host_name są " "widoczne na tej liście." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Dodaj użytkownika replikacji na serwerze podrzędnym" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Użyj pola tekstowego" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Dowolny host" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Host lokalny" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Ten host" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Użyj tabeli hostów" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7901,7 +7978,7 @@ msgstr "Generuj hasło" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7933,88 +8010,89 @@ msgid "One or more errors have occured while processing your request:" msgstr "" "Jeden lub więcej błędów mogło wystąpić podczas przetwarzania żądania:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Edytuj wydarzenie" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Błąd w przetwarzaniu wywołania" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Szczegóły" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Nazwa zdarzenia" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Typ zdarzenia" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Zmień na %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Wykonać w" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Wykonaj co" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Pocz" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Koniec" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Po zakończeniu zachować" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Definiujący" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: 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\"" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Należy podać nazwę zdarzenia" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Musisz podać prawidłową wartość odstępu dla zdarzenia." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Musisz podać poprawny czas realizacji dla tego wydarzenia." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Musisz podać prawidłowy typ zdarzenia." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "Należy podać definicję zdarzeń." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Nowy" @@ -8047,7 +8125,7 @@ msgstr "" "rozszerzenia 'mysqli', aby uniknąć problemów." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Nieprawidłowy typ procedury: %s" @@ -8066,69 +8144,69 @@ msgstr "Kolumna %1$s została zmodyfikowana." msgid "Routine %1$s has been created." msgstr "Tabela %1$s została utworzona." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Edycja procedury" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Nazwa procedury" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parametry" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Kierunek" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Długość/Wartości" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Dodaj parametr" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Usuń ostatni parametr" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Zwracany typ" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Powrót długości/wartości" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Powrót opcji" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Jest deterministyczna" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Rodzaj zabezpieczenia" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "Dostęp SQL do danych" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Musisz podać nazwę procedury" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Nieprawidłowy kierunek \"%s\" podany dla parametru." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8136,19 +8214,19 @@ msgstr "" "Należy podać długość/wartość parametrów procedury typu ENUM, SET, VARCHAR i " "VARBINARY." -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Należy podać definicję procedury." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8156,18 +8234,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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Wynik wykonanych procedur %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Wykonaj procedurę" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Parametry procedury" @@ -8185,36 +8263,36 @@ msgstr "Wyzwalacz %1$s został zmodyfikowany." msgid "Trigger %1$s has been created." msgstr "Tabela %1$s została utworzona." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Edytuj wyzwalacz" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Nazwa wyzwalacza" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Czas" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Należy podać nazwę wyzwalacza" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Należy podać poprawny czas dla wyzwalacza" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Musisz podać prawidłowe zdarzenie dla wyzwalacza" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Musisz podać prawidłową nazwę tabeli" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Musisz podać definicję wyzwalacza." @@ -8298,7 +8376,7 @@ msgstr "Nie ma żadnych zdarzeń do wyświetlenia." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8307,7 +8385,7 @@ msgstr "Tabela '%s' nie istnieje!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8315,7 +8393,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Proszę skonfigurować współrzędne dla tabeli %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8326,27 +8404,27 @@ msgstr "Schemat bazy danych %s - Strona %s" msgid "This page does not contain any tables!" msgstr "Ta strona nie zawiera żadnych tabel!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "Błąd SCHEMA: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Schemat relacyjny" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Spis treści" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atrybuty" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Dodatkowo" @@ -8454,7 +8532,7 @@ msgstr "Nieznany język: %1$s." msgid "Current Server" msgstr "Bieżący serwer" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Źródło bazy danych" @@ -8472,7 +8550,7 @@ msgstr "Serwer zdalny" msgid "Difference" msgstr "Różnica" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Docelowa baza danych" @@ -8491,7 +8569,7 @@ msgstr "Uruchom zapytanie/zapytania SQL na serwerze %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Wyczyść" @@ -8500,11 +8578,11 @@ msgstr "Wyczyść" msgid "Columns" msgstr "Kolumny" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Niech każdy użytkownik ma dostęp do tej zakładki" @@ -8602,7 +8680,7 @@ msgstr "" "zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w " "%sdokumentacji%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "Śledzenie %s jest aktywne." @@ -8629,8 +8707,8 @@ msgstr "" "formatu: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indeks" @@ -8680,13 +8758,13 @@ msgstr "Brak" msgid "As defined:" msgstr "Zdefiniowana następująco:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Podstawowy" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Pełny tekst" @@ -8699,17 +8777,17 @@ msgstr "pierwszy" msgid "after %s" msgstr "po %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Dodaj %s kolumnę(y)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Musisz dodać co najmniej jedną kolumnę." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Mechanizm składowania" @@ -8717,41 +8795,6 @@ msgstr "Mechanizm składowania" msgid "PARTITION definition" msgstr "Definicja partycji" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Tabela szukania" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Wybierz kolumny (przynajmniej jedną):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Dodaj warunki przeszukiwania (warunek dla \"WHERE\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Liczba wierszy na stronie" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Kolejność wyświetlania:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Przeglądaj zewnętrzne wartości" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Wykonaj \"zapytanie przez przykład\" (znak globalny: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8900,11 +8943,11 @@ msgstr "" msgid "Manage your settings" msgstr "Zarządzaj ustawieniami" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Konfiguracja została zapamiętana" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8917,7 +8960,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Nie można zapisać konfiguracji" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8946,7 +8989,7 @@ msgstr "Sortowanie połączenie z serwerem" msgid "Appearance Settings" msgstr "Ustawienia wyglądu" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Więcej ustawień" @@ -8966,9 +9009,9 @@ msgstr "Wersja oprogramowania" msgid "Protocol version" msgstr "Wersja protokołu" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Użytkownik" @@ -9105,128 +9148,128 @@ msgstr "" "Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja" "%s." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Brak baz danych" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Filtr tabel wg nazwy" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Filtr tabel wg nazwy" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Utwórz tabelę" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Proszę wybrać bazę danych" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Pokaż/ukryj lewe menu" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Zapamiętaj pozycję" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Utwórz relację" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Przeładuj" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Pomoc" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Kanciaste połączenia" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Bezpośrednie połączenia" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Przyciągaj do siatki" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Wszystko małe/duże" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Przełączanie małe/duże" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Przełączanie linii relacji" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Importuj/eksportuj współrzędne schematu PDF" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Wykonaj zapytania" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Przesuń menu" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Ukryj/pokaż wszystko" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Ukryj/pokaż tabele bez relacji" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Liczba tabel" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Usuń relację" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Operator relacji" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Oprócz" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "w zapytaniu" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Zmień nazwę na" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Nowa nazwa" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Utwórz" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Aktywne opcje" @@ -9238,51 +9281,51 @@ msgstr "Strona została stworzona" msgid "Page creation failed" msgstr "Błąd tworzenia strony" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Strona" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Import z wybranej strony" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Eksport do wybranej strony" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Utwórz stronę i eksport do niej" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Nowa nazwa strony: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Eksport/import w skali" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "zalecana" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Błąd: relacja już istnieje." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Błąd: relacja nie została dodana." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Relacja FOREIGN KEY została dodana" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Dodano wewnętrzne powiązanie" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Usunięto powiązanie" @@ -9294,51 +9337,51 @@ msgstr "Błąd podczas zapisywania współrzędnych w widoku projektu." msgid "Modifications have been saved" msgstr "Modyfikacja została zapisana" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Nie można zapisać ustawień, złożony formularz zawiera błędy" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Nie można zaimportować konfiguracji" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Konfiguracja ma błędy w niektórych polach." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Chcesz zaimportować pozostałe ustawienia?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Zapisane: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importuj z pliku" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Import z pamięci przeglądarki" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Ustawienia będą zaimportowane z pamięci przeglądarki." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Nie masz żadnych zapisanych ustawień!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Ta funkcja nie jest obsługiwana przez twoją przeglądarkę internetową" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Scal z aktualną konfiguracją" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9347,37 +9390,37 @@ msgstr "" "Możesz ustawić więcej ustawień poprzez modyfikację config.inc.php, przez " "użycie %sSkrypt instalacyjny%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Zapisz w pamięci przeglądarki" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Ustawienia zostaną zapisane w lokalnej pamięci przeglądarki." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Istniejące ustawienia zostaną nadpisane!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Można przywrócić wszystkie ustawienia i przywrócić je do wartości domyślnych." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Import plików" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Wszystko" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabela %s nie została znaleziona lub nie jest ustawiona w %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Plik nie istnieje" @@ -9385,17 +9428,17 @@ msgstr "Plik nie istnieje" msgid "Select binary log to view" msgstr "Wybierz dziennik binarny do podglądu" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Pliki" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Ucinaj wyświetlane zapytania" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Pokaż pełne zapytania" @@ -9411,7 +9454,7 @@ msgstr "Pozycja" msgid "Original position" msgstr "Oryginalna pozycja" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informacje" @@ -9419,7 +9462,7 @@ msgstr "Informacje" msgid "Character Sets and Collations" msgstr "Kodowania znaków i metody porównywania" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -9427,24 +9470,24 @@ msgstr[0] "%1$d baza danych została pomyślnie usunięta." msgstr[1] "%1$d bazy danych zostały pomyślnie usunięte." msgstr[2] "%1$d baz danych zostało pomyślnie usuniętych." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statystyki baz danych" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Replikacja serwera głównego" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Replikacja serwera podrzędnego" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Włącz statystyki" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9456,155 +9499,155 @@ msgstr "" msgid "Storage Engines" msgstr "Mechanizmy składowania" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Pokaż zrzut (schemat) bazy danych" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Moduły" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Początek" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Wtyczka" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Moduł" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Biblioteka" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Wersja" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Autor" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Licencja" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "wyłączone" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Wszystkie uprawnienia, oprócz GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Pozwól zmieniać strukturę istniejących tabel." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Pozwól modyfikować i usuwać procedury składowane." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Pozwól tworzyć nowe bazy danych i tabele." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Pozwól tworzyć procedury składowane." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Pozwól tworzyć nowe tabele." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Pozwala tworzyć tabele tymczasowe." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Pozwól tworzyć, usuwać i zmieniać nazwy kont użytkowników." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Pozwól tworzyć widoki." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Pozwól usuwać dane." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Pozwól usuwać bazy danych i tabele." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Pozwól usuwać tabele." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Pozwól ustawiać zdarzenia w harmonogramie zdarzeń" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Pozwól wykonywać procedury składowane." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Pozwól importować i eksportować dane z/do plików." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Pozwól dodawać użytkowników i nadawać uprawnienia bez przeładowywania tabeli " "uprawnień." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Pozwól tworzyć i usuwać indeksy." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Pozwól dodawać i zamieniać dane." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Pozwól blokować tabele dla aktualnego wątku." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Ogranicz liczbę nowych połączeń, które może otworzyć użytkownik w ciągu " "godziny." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ogranicz liczbę zapytań, które może wysłać użytkownik w ciągu godziny." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9612,60 +9655,60 @@ msgstr "" "Ogranicz liczbę poleceń zmieniających jakąkolwiek tabelę lub bazę danych, " "które może wykonać użytkownik w ciągu godziny." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Pozwól oglądać procesy wszystkich użytkowników" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Nie ma żadnych skutków w tej wersji MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Pozwól przeładowywać ustawienia serwera i opróżniać pamięć podręczną serwera." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Nadaj użytkownikowi prawo, by zapytać gdzie są serwery podrzędne / nadrzędne." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Potrzebne dla replikacji serwera podrzędnego." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Pozwól czytać dane." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Daj dostęp do pełnej listy baz danych." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Pozwól wykonywać zapytania SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Pozwól wyłączyć serwer." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9675,162 +9718,162 @@ msgstr "" "połączeń; Wymagane dla większość operacji administracyjnych, takich jak " "ustawianie zmiennych globalnych czy unicestwianie wątków innych użytkowników." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Pozwól tworzyć i usuwać wyzwalacze" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Pozwól zmieniać dane." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Brak uprawnień." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Brak" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Uprawnienia specyficzne dla tabel" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Uwaga: uprawnienia MySQL są oznaczone w języku angielskim" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administracja" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globalne uprawnienia" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Uprawnienia specyficzne dla baz danych" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Ograniczenia zasobów" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Uwaga: Ustawienie tych opcji na 0 (zero) usuwa ograniczenie." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Dane użytkownika" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Nie zmieniaj hasła" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Żadnego użytkownika nie znaleziono." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Użytkownik %s już istnieje!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Dodałeś nowego użytkownika." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Zaktualizowano uprawnienia dla %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Masz cofnięte uprawnienia dla %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Hasło dla %s zostało zmienione." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Usuwanie %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Żaden użytkownik ze został zaznaczony do usunięcia!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Przeładuj uprawnienia" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Wybrani użytkownicy zostali usunięci pomyślnie." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Uprawnienia były przeładowane pomyślnie." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Edytuj uprawnienia" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Cofnij" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Eksport wszystkiego" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Dowolny" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Uprawnienia dla wszystkich użytkowników" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Uprawnienia dla %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Omówienie użytkowników" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Nadawanie" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Usuń zaznaczonych użytkowników" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9843,133 +9886,133 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Uprawnienia specyficzne dla kolumn" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Dodaj uprawnienia dla następującej bazy danych" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Dodaj uprawnienia dla następującej tabeli" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Zmień dane użytkownika / Kopiuj użytkownika" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... pozostaw starego." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... usunąć starą z tabel użytkowników." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Baza danych dla użytkownika" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 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:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Przyznanie wszystkich uprawnień do bazy danych "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Użytkownicy mają dostęp do \"%s\"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "ogólny" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "specyficzne dla bazy danych" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "znak wieloznaczny" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Użytkownik został dodany." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Nieznany błąd" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Nie można połączyć się z serwerem głównym %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nie można odczytać pozycji dziennika głównego. Możliwy problem uprawnień na " "serwerze głównym." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Nie można zmienić serwera głównego" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Serwer główny zmieniony pomyślnie na %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Ten serwer jest skonfigurowany jako główny w procesie replikacji." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Pokaż stan serwera głównego" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Pokaż połączone serwery podrzędne" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9978,11 +10021,11 @@ msgstr "" "Ten serwer nie jest skonfigurowany jako główny w procesie replikacji. Czy " "chcesz go skonfigurować ?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Konfiguracja serwera głównego" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9996,19 +10039,19 @@ msgstr "" "wybrać do ignorowania wszystkie bazy danych domyślnie i pozwala jedynie na " "niektóre bazy danych które mają być replikowane. Wybierz tryb:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Replikuj wszystkie bazy danych; Pomiń:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Pomiń wszystkie bazy danych; Replikuj:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Wybierz bazy danych:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10016,7 +10059,7 @@ msgstr "" "Teraz dodaj następujące wiersze na końcu pliku my.cnf a następnie zrestartuj " "serwer MySQL." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10025,83 +10068,83 @@ msgstr "" "Gdy zrestartowałeś już serwer MySQL kliknij przycisk Go. Powinieneś zobaczyć " "komunikat informujący, że serwer jest skonfigurowany jako główny" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Wątek SQL serwera podrzędnego nie uruchomiony!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Wątek IO serwera podrzędnego nie uruchomiony!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Serwer jest skonfigurowany jako podrzędny w procesie replikacji. Czy chesz:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Zobacz status tabeli serwera podrzędnego" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Synchronizacja baz danych z serwera głównego" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Kontrola serwera podrzędnego:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Pełny start" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Pełne zatrzymanie" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Zrestartuj serwer podrzędny" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Tylko początek wątku SQL" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Tylko zatrzymaj wątek SQL" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Tylko początek IO wątku" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Zatrzymaj tylko wątek IO" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Błąd zarządzania:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Włącznie \"omijania błędów\" może powodować rozsynchronizowanie serwera " "master i slave!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Pomiń bieżący błąd" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Pomiń następny" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "błędy." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10110,12 +10153,12 @@ msgstr "" "Ten serwer nie jest skonfigurowany jako podrzędny w procesie replikacji. Czy " "chcesz go skonfigurować ?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Wątek %s został pomyślnie zabity." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10123,115 +10166,115 @@ msgstr "" "phpMyAdmin nie mógł unicestwić wątku %s. Prawdopodobnie został on już " "zamknięty." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Obsługa" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Pamięć podręczna zapytań" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Wątki" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Dane tymczasowe" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Opóźnione dodania" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Bufor klucza" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Złączenia" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Sortowanie" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Koordynator transakcji" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Przeładuj (zamknij) wszystkie tabele" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Pokaż otwarte tabele" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Pokaż podrzędne hosty" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Status serwera podrzędnego" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Opróżnij bufor podręczny zapytań" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Informacje o działaniu serwera" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Wszystkie zmienne stanu" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Monitor" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Doradca" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Częstotliwość odświeżania: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filtry" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Zawierające słowo:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Pokaż tylko wartości alarmowe" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "&Filtruj wg kategorii..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Pokaż niesformatowane wartości" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Powiązane linki:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Analizuj" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Instrukcje" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10239,7 +10282,7 @@ msgstr "" "System Doradcy może dostarczyć zalecenia dotyczące zmiennych serwera poprzez " "analizę zmiennych stanu serwera." -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10249,7 +10292,7 @@ msgstr "" "obliczeniach i zasadach, które nie mogą mieć obowiązkowego zastosowania do " "systemu." -#: server_status.php:920 +#: server_status.php:919 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 " @@ -10259,7 +10302,7 @@ msgstr "" "(poprzez czytanie dokumentacji) i jak cofnąć zmiany. Złe ustawienia mogą " "mieć bardzo negatywny wpływ na wydajność." -#: server_status.php:922 +#: server_status.php:921 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 " @@ -10270,31 +10313,31 @@ msgstr "" "zmianę, gdyby nie było jednoznacznego wymiernego postępu." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Pytania od uruchomienia: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Oświadczenia" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Ruch sieciowy od uruchomienia: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10302,19 +10345,19 @@ msgstr "" "Ten serwer MySQL jest ustawiony jako główny i podrzędny w " "procesie replikacji." -#: server_status.php:1078 +#: server_status.php:1077 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:1080 +#: server_status.php:1079 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:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10322,11 +10365,11 @@ msgstr "" "Więcej informacji na temat stanu replikacji na serwerze, odwiedź sekcja replikacji." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Stan replikacji" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10334,35 +10377,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Otrzymane" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Wysłane" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "maks. równoczesnych połączeń" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Nieudane próby" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Przerwane" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Polecenie" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10370,11 +10413,11 @@ msgstr "" "Liczba połączeń, które zostały przerwane, ponieważ klient zmarł bez " "poprawnego zamykania połączenia." -#: server_status.php:1321 +#: server_status.php:1320 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:1322 +#: server_status.php:1321 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 " @@ -10384,18 +10427,18 @@ msgstr "" "binarnego, które przekroczyły wartość binlog_cache_size i do zapisania " "instrukcji transakcji został użyty plik tymczasowy." -#: server_status.php:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 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:1325 +#: server_status.php:1324 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 " @@ -10407,11 +10450,11 @@ msgstr "" "zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w " "pamięci, a nie na dysku." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Ile plików tymczasowych utworzył mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10419,7 +10462,7 @@ msgstr "" "Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer " "podczas wykonywania instrukcji." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10427,7 +10470,7 @@ msgstr "" "Liczba wierszy zapisanych przy pomocy INSERT DELAYED, dla których wystąpił " "jakiś błąd (prawdopodobnie zdublowany klucz)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10435,23 +10478,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Liczba wierszy zapisanych poprzez INSERT DELAYED." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Liczba wykonanych instrukcji FLUSH." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Liczba wewnętrznych instrukcji COMMIT." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Ile razy wiersz został usunięty z tabeli." -#: server_status.php:1334 +#: 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 " @@ -10461,7 +10504,7 @@ msgstr "" "informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery). Handler_discover wskazuje, ile razy tabela została odkryta." -#: server_status.php:1335 +#: 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, " @@ -10471,7 +10514,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:1336 +#: server_status.php:1335 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." @@ -10479,7 +10522,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:1337 +#: server_status.php:1336 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 " @@ -10489,7 +10532,7 @@ msgstr "" "jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym " "przedziale lub przy przeszukiwaniu indeksu." -#: server_status.php:1338 +#: server_status.php:1337 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 +10540,7 @@ msgstr "" "Liczba żądań odczytu poprzedniego wiersza w porządku indeksowym. Metoda " "używana głównie do optymalizacji ORDER BY … DESC." -#: server_status.php:1339 +#: 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 " @@ -10509,7 +10552,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:1340 +#: server_status.php:1339 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,35 +10564,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:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Liczba wewnętrznych instrukcji ROLLBACK." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Liczba żądań zmiany wiersza w tabeli." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Liczba żądań dodania wiersza do tabeli." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Liczba stron zawierających dane (brudnych lub czystych)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Liczba aktualnie brudnych stron." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Liczba wolnych stron." -#: server_status.php:1348 +#: 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 " @@ -10559,7 +10602,7 @@ msgstr "" "odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub " "usunięte z jakiegoś innego powodu." -#: server_status.php:1349 +#: server_status.php:1348 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 +10615,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Całkowita wielkość puli bufora, w stronach." -#: server_status.php:1351 +#: 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." @@ -10585,7 +10628,7 @@ msgstr "" "Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej " "kolejności." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10593,11 +10636,11 @@ msgstr "" "Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " "Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB." -#: server_status.php:1354 +#: 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." @@ -10605,7 +10648,7 @@ msgstr "" "Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i " "musiał wykonać odczyt pojedynczej strony." -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10619,51 +10662,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:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Liczba wykonanych zapisów do puli bufora InnoDB." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Liczba dotąd wykonanych operacji fsync()." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Aktualna liczba operacji fsync() w toku." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Aktualna liczba odczytów w toku." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Aktualna liczba zapisów w toku." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Ilość dotąd odczytanych danych, w bajtach." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Łączna liczba odczytów danych." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Łączna liczba zapisów danych." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Ilość dotąd zapisanych danych, w bajtach." -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "Liczba przeprowadzonych zapisów typu doublewrite." -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "Liczba stron zapisanych przy zapisie typu doublewrite." -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -10671,35 +10714,35 @@ msgstr "" "Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy " "oczekiwano na jego opróżnienie." -#: server_status.php:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Liczba żądań zapisów do dziennika." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Liczba fizycznych zapisów do pliku dziennika." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Liczba synchronicznych zapisów do pliku dziennika." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Liczba wywołań fsync dla pliku dziennika w toku." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Liczba zapisów do pliku dziennika w toku." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Liczba bajtów zapisanych do pliku dziennika." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Liczba utworzonych stron." -#: server_status.php:1375 +#: server_status.php:1374 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 +10751,51 @@ msgstr "" "mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą " "konwersję na bajty." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Liczba odczytanych stron." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Liczba zapisanych stron." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Liczba blokad wiersza na które aktualnie się czeka." -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Średni czas uzyskania blokady wiersza, w milisekundach." -#: server_status.php:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksymalny czas uzyskania blokady wiersza, w milisekundach." -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "Ile razy czekano na blokadę wiersza." -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Liczba wierszy usuniętych z tabel InnoDB." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Liczba wierszy dodanych do tabel InnoDB." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Liczba wierszy odczytanych z tabel InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Liczba wierszy zmienionych w tabelach InnoDB." -#: server_status.php:1387 +#: 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." @@ -10761,7 +10804,7 @@ msgstr "" "jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę " "Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -10769,7 +10812,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:1389 +#: server_status.php:1388 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,15 +10821,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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "Procent używanego klucza pamięci podręcznej (obliczona wartość)" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10797,7 +10840,7 @@ msgstr "" "Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/" "Key_read_requests." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10805,21 +10848,21 @@ msgstr "" "Brakujący klucz pamięci podręcznej oblicza jako porównanie fizycznego " "odczytu do żądania odczytu (obliczona wartość)" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 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:1397 +#: server_status.php:1396 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 " @@ -10830,7 +10873,7 @@ msgstr "" "kwerend dla tego samego zapytania. Domyśla wartość 0 onazcza, że kwerenda " "została opracowana jeszcze." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10838,11 +10881,11 @@ msgstr "" "Maksymalna liczba połączeń, które były używane jednocześnie odkąd serwer " "został uruchomiony." -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10850,20 +10893,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Liczba otwartych plików." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Liczba otwartych tabel." -#: server_status.php:1404 +#: server_status.php:1403 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 +10916,19 @@ msgstr "" "na problemy z fragmentacją, które mogą być rozwiązane poprzez wydawanie " "polecenie FLUSH CACHE QUERY." -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Liczba trafień pamięci podręcznej." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Liczba zapytań dodanych do pamięci podręcznej." -#: server_status.php:1408 +#: 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 " @@ -10898,7 +10941,7 @@ msgstr "" "bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany" "\" (least recently used - LRU)." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10906,19 +10949,19 @@ msgstr "" "Liczba niezbuforowanych zapytań (nie dających się zbuforować lub " "niezbuforowanych z powodu ustawienia query_cache_type)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Całkowita liczba bloków w buforze podręcznym zapytań." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan replikacji bez awaryjnie (jeszcze nie zaimplementowano)." -#: server_status.php:1413 +#: server_status.php:1412 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,13 +10969,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10941,7 +10984,7 @@ msgstr "" "dla każdego wiersza. (Wartość różna od 0 sugeruje staranne przyjrzenie się " "indeksom tabel.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10949,16 +10992,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10966,26 +11009,26 @@ msgstr "" "Ile razy łącznie (od startu) podrzędny wątek SQL replikacji ponawiał " "transakcje." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 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:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -10995,23 +11038,23 @@ msgstr "" "dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej " "systemowej sort_buffer_size." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Liczba sortowań wykonanych przy użyciu zakresów." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Liczba posortowanych wierszy." -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli." -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo." -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11023,7 +11066,7 @@ msgstr "" "się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) " "lub użyć replikacji." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11033,11 +11076,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Liczba aktualnie otwartych połączeń." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11049,47 +11092,47 @@ msgstr "" "(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego " "polepszenia wydajności.)" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "Cache wątku trafień (obliczona wartość)" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Liczba nieuśpionych wątków." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Uruchom monitor" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Instrukcje/Setup" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Gotowe przestawienie/edycji wykresów" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Dodaj wykres" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "przestawienie/edycji wykresów" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Częstotliwość odświeżania" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Kolumny wykresu" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Układ wykresu" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -11097,15 +11140,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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Przywróć wartość domyślną" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Instrukcje monitora" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11119,7 +11162,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:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11131,11 +11174,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:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Korzystanie z monitora:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11145,7 +11188,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:1655 +#: server_status.php:1654 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 " @@ -11157,11 +11200,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:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Proszę zwrócić uwagę:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11174,80 +11217,80 @@ msgstr "" "wyłączyć general_log i opróżnić swoją tabelę raz monitorowania nie jest " "wymagane." -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Ustawiony wykres" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Zmienna statusu(ów)" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Wybierz serię:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Najczęściej monitorowany" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "lub wpisz nazwę zmiennej:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Wyświetl jako wartości różnicy" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Zastosuj dzielnik" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Dołącz urządzenia do wartości danych" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Dodaj tę serię" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Wyczyść serie" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Seria na wykresie:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Statystyki Log" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Wybrany zakres czasu:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Pobierać tylko oświadczenia SELECT, INSERT, UPDATE i DELETE" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Usuń zmiennych danych w oświadczeniu INSERT dla lepszej grupy" -#: server_status.php:1752 +#: server_status.php:1751 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:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Wyniki są pogrupowane według zapytania tekstu." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Analizuj zapytanie" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11255,7 +11298,7 @@ msgstr[0] "%d sekunda" msgstr[1] "%d sekund" msgstr[2] "%d sekundę" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11263,111 +11306,111 @@ msgstr[0] "%d minut" msgstr[1] "%d minuty" msgstr[2] "%d minuty" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Nie można nawiązać połączenia z serwerem źródłowym" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Nie można nawiązać połączenia z serwerem docelowym" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Baza danych '%s' nie istnieje." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Synchronizacja struktury" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Synchronizacja danych" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "nie występuje" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Różnica w strukturze" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Różnica danych" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Dodaj kolumnę(y)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Usuń kolumnę(y)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Modyfikuj kolumnę(y)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Usuń indeks(y)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Dołącz indeks(y)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Aktualizacja wiersz(y)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Wstaw wiersz(e)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Czy chcesz usunąć wszystkie poprzednie wiersze z docelowych tabel?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Zatwierdź wybrane zmiany" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Synchronizuj bazy danych" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Wybrane tabele docelowe zostały zsynchronizowane z tabelami źródłowymi." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Docelowa baza danych została zsynchronizowana ze źródłową" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Zrealizowane zapytania" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Wprowadź ręcznie" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Bieżące połączenie" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Konfiguracja: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Gniazdo" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11375,19 +11418,19 @@ msgstr "" "Docelowa baza danych zostanie w całości zsynchronizowana ze źródłową. " "Źródłowa baza danych pozostanie niezmieniona." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Błędne ustawienie zmienne" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Zmienne i ustawienia serwera" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Wartość sesji" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Wartość globalna" @@ -11724,153 +11767,153 @@ msgstr "Klucz powinien zawierać litery, cyfry [em]i[/em] znaki specjalne." msgid "Wrong data" msgstr "Nieprawidłowe dane" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Korzystanie z zakładki \"%s\" jako domyślne przeglądanie zapytania." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Czy na pewno chcesz wywołać tę kwerendę?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Pokaż jako kod PHP" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Weryfikacje SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Wynik SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Wygenerowany przez" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemy z indeksami tabeli `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Nazwa" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s została pomyślnie zmodyfikowana" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "Kolumny przeniesiono pomyślnie." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Słupkowy" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Kolumna" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Linia" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Klin" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Kołowy" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Spakowany" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Tytuł wykresu" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "Oś X:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Serie:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Etykieta osi X:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "Wartość X" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Etykieta osi Y:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Wartość Y" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s już istnieje!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Tabela %1$s została utworzona." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Pokaż zrzut (schemat) tabeli" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Wyświetlaj wizualizację GIS" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Szerokość" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Wysokość" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Etykieta kolumny" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Brak --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Przestrzenna kolumna" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Przerysuj" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Zapisz jako plik" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Nazwa pliku" @@ -11886,29 +11929,29 @@ msgstr "Nie można zmienić nazwy indeksu na PRIMARY!" msgid "No index parts defined!" msgstr "Brak zdefiniowanych części indeksu!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Dodaj indeks" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Edytuj indeks" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Nazwa indeksu :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" musi być nazwą jedynie klucza podstawowego!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Rodzaj indeksu :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj  %s kolumn do indeksu" @@ -11931,255 +11974,255 @@ msgstr "Tabela %s została przeniesiona do %s." msgid "Table %s has been copied to %s." msgstr "Tabela %s została przekopiowana do %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Nazwa tabeli jest pusta!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Sortowanie tabeli wg" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(pojedynczo)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Przenieś tabelę do (bazadanych.tabela):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Opcje tabeli" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Zmień nazwę tabeli na" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopiuj tabelę do (bazadanych.tabela):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Przełącz na przekopiowaną tabelę" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Zarządzanie tabelą" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmentuj tabelę" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s została przeładowana" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Flush the table (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Usuń dane lub tabelę" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Pusta tabela (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Usuń tabelę (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Zarządzanie partycjami" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partycja %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analizuj" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Sprawdź" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optymalizuj" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Przebuduj" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Napraw" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Usuń partycjonowanie" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Sprawdź spójność powiązań:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Pokaż tabele" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Wykorzystanie przestrzeni" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efektywne" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Statystyka wiersza" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "statycznie" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dynamiczny" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Długość wiersza" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Rozmiar wiersza" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Następny autoindeks" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Błąd podczas tworzenia klucza zewnętrznego na %1$s (należy sprawdzić typy " "danych)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Wewnętrzne relacje" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Wewnętrzna relacja jest zbędna gdy istnieje odpowiednia relacja FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Ograniczenie klucza obcego" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Przestrzenny" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Różne wartości" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Dodaj klucz główny" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Dodaj indeks unikatowy" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Dodaj indeks przestrzenny" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Dodaj FULLTEXT indeksu" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Brak" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Kolumna %s została upuszczona" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Do %s dodany został klucz podstawowy" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Do %s dodany został indeks" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Pokaż więcej akcji" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "Przenieś kolumny" -#: tbl_structure.php:622 +#: tbl_structure.php:624 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:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Edycja widoku" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Widok relacyjny" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Zaproponowanie struktury tabeli" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Dodaj kolumnę" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Na końcu tabeli" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Na początku tabeli" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Utwórz indeks na kolumnach %s" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "partycjonowanie" @@ -12330,69 +12373,37 @@ msgstr "Śledź te instrukcje manipulowania danymi:" msgid "Create version" msgstr "Utwórz wersję" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Wykonaj \"zapytanie wg przykładu\" (symbol wieloznaczny \"%\") dla dwóch " -"różnych kolumn" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Dodatkowe kryteria wyszukiwania" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "W tej kolumnie oznacz każdy punkt" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Maksymalna liczba wierszy do wykreślenia" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Przeglądaj/Edytuj punkty" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Jak korzystać" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Resetuj" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Pobierz więcej motywów!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Dostępne typy MIME" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "Typy MIME wydrukowane kursywą nie mają osobnej funkcji transformacji" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Dostępne transformacje" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nie masz wystarczających uprawnień, aby być tu i teraz!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profil został zaktualizowany." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Nazwa widoku" diff --git a/po/pt.po b/po/pt.po index 897b599eb2..b9c6ab5012 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: portuguese \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Mostrar tudo" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Número da página:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ 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:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Executar" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Nome do Índice" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Descrição" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Usar este valor" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "A base de dados %1$s foi criada." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Comentário da Base de Dados: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Coluna" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Nulo" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Omissão" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Links para" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Comentários" @@ -197,14 +198,14 @@ msgstr "Comentários" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Não" @@ -217,120 +218,120 @@ msgstr "Não" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Sim" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Ver o esquema da base de dados" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Nenhuma tabela encontrada na base de dados." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Selecciona Todas" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Limpa Todas as Selecções" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "O nome da base de dados está vazia!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "O nome da base de dados %1$s foi alterado para %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "A base de dados %1$s foi copiada para %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Alterar o nome da base de dados para" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Remover a Base de Dados" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "A base de dados %s foi eliminada." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Apagar a Base de Dados (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Copiar a Base de Dados para" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Somente a estrutura" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Apenas dados" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Criar a Base de Dados antes de copiar (CREATE DATABASE)" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Adicionar restrições (constraints)" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Mudar para a Base de Dados copiada" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Agrupamento (Collation)" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -339,59 +340,59 @@ msgstr "" "As configurações do phpMyAdmin para trabalhar com ligações entre Tabelas " "foram desactivadas. Para saber porquê carregue %shere%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Editar ou exporta o esquema relacional (schema)" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Registos" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Tamanho" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "em uso" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Criação" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Última actualização" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Última Verificação" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -402,210 +403,210 @@ msgstr[1] "%s tabelas" msgid "You have to choose at least one column to display" msgstr "Tem que escolher pelo menos uma coluna para mostrar" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Mudar para %sConstrutor Gráfico%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Ordenação" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Ascendente" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Descendente" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Mostrar" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Critérios" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins." -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "E" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Elim" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ou" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Modificar" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Adicionar/Remover Linhas de Critérios" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Adicionar/Remover Colunas" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Atualizar consulta" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Usar Tabelas" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Consulta SQL na base de dados %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Executar Consulta" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Acesso Negado" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "pelo menos uma das palavras" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "todas as palavras" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "a frase exata" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "como expressão regular" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Procurar resultados para \"%s\" %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultado" msgstr[1] "Total: %s resultados" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Pesquisar na Base de Dados" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palavra(s) ou valor(es) a pesquisar (wildcard: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Procurar:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "As palavras são separadas pelo caracter espaço (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Dentro de Tabela(s):" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Dentro da coluna:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Não foram encontradas tabelas na base de dados" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "desconhecido" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "A tabela %s foi limpa" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "A Vista %s foi eliminada" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "A tabela %s foi eliminada" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Detecção de Alterações está activa." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Detecção de Alterações está desactivada." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -614,185 +615,186 @@ msgstr "" "Esta vista tem número de linhas aproximado. Por favor, consulte a " "%sdocumentação%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replicação" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Soma" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Com os seleccionados:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Todos" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Verificar tabelas com overhead" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Vista de impressão" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Limpa" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Elimina" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimizar tabela" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Adicionar prefixo à tabela" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Substituir prefixo da tabela" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copiar tabela com prefixo" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dicionario de dados" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Tabelas em tracking" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Base de Dados" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Última versão" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Criado" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Actualizado" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Estado" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Acções" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Apagar dados de tracking para esta tabela" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "activo" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "inactivo" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versões" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Relatório de tracking" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Snapshot da estrutura" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Tabelas sem tracking" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Tracking à tabela" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Log da Base de Dados" @@ -804,16 +806,16 @@ msgstr "Mau tipo!" msgid "Selected export type has to be saved in file!" msgstr "O tipo de export seleccionado tem de ser gravado em ficheiro!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Parâmetros inválidos!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Não existe espaço suficiente para gravar o ficheiro %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -821,12 +823,12 @@ msgstr "" "O ficheiro %s já existe no servidor, mude o nome do ficheiro ou verifique a " "opção de substituição (re-escrita)." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web não tem permissões para gravar o ficheiro %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "O Dump foi gravado para o ficheiro %s." @@ -835,86 +837,86 @@ msgstr "O Dump foi gravado para o ficheiro %s." msgid "Invalid export type" msgstr "Tipo de exportação inválido" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Valor para a coluna \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Usar OpenStreetMaps como camada base" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Ponto" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Ponto %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Adicionar um ponto" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Segmento de Reta" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Anel Exterior" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Anel Interior" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Adicionar um segmento de reta" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Adicionar um anel interior" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Polígono" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Adicionar um polígono" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Adicionar geometria" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Saída" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -922,7 +924,7 @@ msgstr "" "Escolhe \"GeomFromText\" da coluna \"Função\" e cola a linha de caracteres " "abaixo no campo \"Valor\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -932,21 +934,21 @@ msgstr "" "favor reveja a %sdocumentação%s para encontrar formas de contornar este " "limite." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Mostrando Marcador" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Marcador apagado com sucesso." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Não foi possível ler o ficheiro" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -956,7 +958,7 @@ msgstr "" "suporte não se encontra implementado ou está desabilitado na sua " "configuração." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -967,30 +969,30 @@ msgstr "" "sua configuração PHP. Veja [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Impossível converter o conjunto de caracteres do ficheiro sem a biblioteca " "de conversão" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Não foi possível carregar os import plugins, por favor verifique a sua " "instalação!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import terminou com sucesso, %d queries executados." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -998,7 +1000,7 @@ msgstr "" "Script timeout atingido, se pretender concluir o import, por favor volte a " "submeter o mesmo ficheiro que o import continuará." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1007,25 +1009,25 @@ msgstr "" "significa que o phpMyAdmin não conseguirá terminar este import, sem que se " "incremente os tempos de limite de php." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Voltar" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "O phpMyAdmin torna-se mais agradável se usado num browser que suporte " "frames." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Os comandos \"DROP DATABASE\" estão inibidos." @@ -1034,7 +1036,7 @@ msgstr "Os comandos \"DROP DATABASE\" estão inibidos." msgid "Do you really want to execute \"%s\"?" msgstr "Você realmente deseja executar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Estará prestes a DESTRUIR uma base de dados completa!" @@ -1074,7 +1076,7 @@ msgstr "Adicionar Índice" msgid "Edit Index" msgstr "Editar Índice" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Adiciona %d coluna(s) ao Índice" @@ -1092,17 +1094,17 @@ msgstr "O nome da máquina está vazio!" msgid "The user name is empty!" msgstr "O nome do utilizador está vazio!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Indique a palavras-passe!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 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:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Adicionar utilizador" @@ -1119,23 +1121,24 @@ msgstr "Removendo os utilizadores seleccionados" msgid "Close" msgstr "Fechar" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Edita" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Gráfico de tráfego em direto" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Gráfico de ligações/processo ao vivo" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Gráfico de comandos em directo" @@ -1145,24 +1148,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Outros" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1182,7 +1185,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Processos" @@ -1200,7 +1203,7 @@ msgstr "Perguntas desde a ultima actualização" msgid "Questions (executed statements by the server)" msgstr "Perguntas (comandos executados pelo servidor)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Estatísticas de comandos" @@ -1245,14 +1248,14 @@ msgid "System swap" msgstr "Swap do sistema" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1304,32 +1307,32 @@ msgstr "Bytes enviados" msgid "Bytes received" msgstr "Bytes recebidos" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Ligações" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1343,11 +1346,11 @@ msgstr "%d tabela(s)" msgid "Questions" msgstr "Perguntas" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Tráfego" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Configurações" @@ -1367,11 +1370,11 @@ msgstr "Adicionar gráfico a grelha" msgid "Please add at least one variable to the series" msgstr "Por favor adicione pelo menos uma variável à serie" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Nenhum" @@ -1471,7 +1474,7 @@ msgstr "Modificar configurações" msgid "Current settings" msgstr "Configurações atuais" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Titulo do gráfico" @@ -1558,7 +1561,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Tempo" @@ -1654,10 +1657,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:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1705,9 +1708,9 @@ msgstr "Variável / formula utilizada" msgid "Test" msgstr "Teste" -#: 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 +#: 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 msgid "Cancel" msgstr "Cancelar" @@ -1719,11 +1722,11 @@ msgstr "Carregando" msgid "Processing Request" msgstr "Processando Pedido" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Erro a Processar Pedido" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Nenhuma base de dados selecionada." @@ -1735,9 +1738,9 @@ msgstr "Apagando Coluna" msgid "Adding Primary Key" msgstr "Adicionando Chave Primária" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1777,15 +1780,15 @@ msgstr "Esconder índices" msgid "Show indexes" msgstr "Mostrar índices" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Ativado)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Desativado)" @@ -1813,7 +1816,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" @@ -1852,8 +1855,8 @@ msgstr "Mostrar Caixa do query" msgid "No rows selected" msgstr "Nenhum registo(linha) seleccionado." -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Muda" @@ -1861,18 +1864,18 @@ msgstr "Muda" msgid "Query execution time" msgstr "Tempo de execução da consulta" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Guarda" @@ -1884,7 +1887,7 @@ msgstr "Esconder critérios de buca" msgid "Show search criteria" msgstr "Mostrar critérios de busca" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Pesquisa Avançada" @@ -1933,12 +1936,12 @@ msgstr "Resultado(s) das(s) consulta(s)" msgid "Data point content" msgstr "Conteúdo do ponto de dados" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Copiar" @@ -1958,7 +1961,7 @@ msgstr "Seleccione Foreign Key" msgid "Please select the primary key or a unique key" msgstr "Por favor seleccione a chave primária ou a chave única" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Escolha a coluna para mostrar" @@ -2049,7 +2052,7 @@ msgstr "Gerar" msgid "Change Password" msgstr "Alterar a palavra-passe" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Mais" @@ -2140,63 +2143,63 @@ msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dez" @@ -2234,32 +2237,32 @@ msgid "Sun" msgstr "Domingo" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sab" @@ -2376,16 +2379,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "por hora" @@ -2408,21 +2411,224 @@ msgstr "" msgid "Font size" msgstr "Tamanho da fonte" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Adicionar/Remover Campos" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Início" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Anterior" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Seguinte" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Fim" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +msgid "Start row" +msgstr "Estado" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows per page" +msgid "Number of rows" +msgstr "Número de registos por página" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Seg" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontal" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontal (cabeçalhos rodados)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertical" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Ordenar por chave" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "Operações" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Texto parcial" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Texto inteiro" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "Esquema relacional" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Esquema relacional" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Mostrar conteúdo binário como HEX" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Transformação do navegador" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Registo eliminado" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Termina" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "na pesquisa" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Mostrando registos" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "total" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "O Query demorou %01.4f sec" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Vista de impressão (com texto inteiro)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Mostrar o esquema de PDF" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Versão do servidor" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Link não encontrado" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Excesso de mensagens de erro, algumas não serão mostradas." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "O ficheiro não era carregável." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "O arquivo carregado excede o tamanho definido na directriz " "'upload_max_filesize' no ficheiro php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2430,27 +2636,27 @@ msgstr "" "O ficheiro enviado excede o tamanho definido na directriz 'MAX_FILE_SIZE' " "que foi definido no formulário HTML." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "O ficheiro foi apenas parcialmente carregado." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Pasta temporária não encontrada." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Falha ao salvar o ficheiro para o disco." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Carregamento do ficheiro parado pela extensão." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Erro desconhecido no upload do ficheiro." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2458,26 +2664,41 @@ msgstr "" "Erro ao mover o arquivo carregado, veja [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Erro ao mover o arquivo enviado." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Não pode ler (movido) arquivo carregado." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Único" @@ -2490,8 +2711,8 @@ msgstr "Pacote" msgid "Cardinality" msgstr "Quantidade" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Comentário" @@ -2513,132 +2734,132 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Base de Dados" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Servidor" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Estrutura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Insere" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operações" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Pesquisa por formulário" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilégios" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" msgstr "Enviado" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Utilizador" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Binário " -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variáveis" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Mapas de Caracteres" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Erro" @@ -2663,7 +2884,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d linha inserida." msgstr[1] "%1$d linha(s) inseridas." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Erro ao criar o PDF:" @@ -2759,16 +2980,110 @@ 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 +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 +#, 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 +msgid "Value" +msgstr "Valor" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Pesquisar" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Insere" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Seleccione os campos (no mínimo 1)" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Condição de Pesquisa (Complemento da cláusula \"where\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Número de registos por página" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Ordem de visualização:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Additional search criteria" +msgstr "Esconder critérios de buca" + +#: 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 "Faça uma \"pesquisa por formulário\" (caractere universal: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Faça uma \"pesquisa por formulário\" (caractere universal: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +msgid "How to use" +msgstr "versão do PHP" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Limpa" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Encontrado caminho inválido para imagens do tema %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Nenhuma pré-visualização disponível." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "seleccionar" @@ -2787,7 +3102,7 @@ msgstr "Tema %s não encontrado!" msgid "Theme path not found for theme %s!" msgstr "Encontrado caminho inválido para o tema %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Tema" @@ -3086,13 +3401,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Não é possível realizar a ligação: configurações inválidas." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Bemvindo ao %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3101,7 +3416,7 @@ msgstr "" "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:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3117,42 +3432,36 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Falha ao usar Blowfish de mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Entrada" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Pode digitar a nome/Endereço IP e a porta separados por um espaço." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Servidor" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Utilizador :" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Palavra-passe :" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Escolha do Servidor" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3160,20 +3469,20 @@ msgstr "" "A autenticação sem uma palavra-passe é proibida pela configuração (consulte " "'AllowNoPassword')" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Sem actividade há %s segundos ou mais; Por favor, faça o login novamente" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Não é possível fazer login no servidor MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Utilizador ou Palavra-passe errada. Acesso Negado." @@ -3205,7 +3514,7 @@ msgstr "compartilhado" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabelas" @@ -3217,13 +3526,13 @@ msgstr "Tabelas" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Dados" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Suspenso" @@ -3248,19 +3557,11 @@ msgstr "Verificar Privilégios para a Base de Dados "%s"." msgid "Check Privileges" msgstr "Verificar Privilégios" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "possível 'exploit'" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "Tecla numérica detectada" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Falhou ao ler o arquivo de configuração" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3268,12 +3569,12 @@ msgstr "" "Isto geralmente significa que há um erro de sintaxe, por favor verifique " "qualquer erro mostrado abaixo." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Não foi possível carregar configuração padrão de: \"%1$s\"" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3285,206 +3586,192 @@ msgstr "" "A directiva $cfg['PmaAbsoluteUri'] TEM que ser definida no " "ficheiro de configuração!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de serivdor inválido para o servidor %1$s. Verifique as suas " "configurações." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação definido nas configurações inválido:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "deve actualizar para %s %s ou mais recente." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "possível 'exploit'" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "Tecla numérica detectada" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Documentação" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "Comando SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Falha ao ligar ao validador SQL!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Saltar Explicar SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Actualizar" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Saltar a validação SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validar SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%B-%Y às %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Parâmetros em falta:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Início" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Anterior" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Seguinte" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Fim" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Saltar para a Base de Dados "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A funcionalidade %s é afectada por um bug conhecido, veja %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Clique para alternar" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir da directoria de upload do servidor %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Não é possivel alcançar a directoria que configurou para fazer upload" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Não existem arquivos para fazer upload" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Executar" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Imprimir" @@ -3514,8 +3801,8 @@ msgid "Closed" msgstr "Fechado" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Desactidado" @@ -3661,9 +3948,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Limpa" @@ -3889,10 +4176,6 @@ msgstr "Propor uma estrutura de tabela" msgid "Show binary contents as HEX by default" msgstr "Mostrar conteúdo binário como HEX por padrão" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Mostrar conteúdo binário como HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3951,7 +4234,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Tempo máximo de execução" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "envia" @@ -3960,7 +4243,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formato" @@ -4072,7 +4355,7 @@ msgid "MIME type" msgstr "MIME-type" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relações" @@ -5612,9 +5895,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Palavra-passe" @@ -5886,30 +6169,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Alterar a palavra-passe" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Sem palavra-passe" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Confirma" @@ -5932,13 +6209,13 @@ msgstr "Criar nova base de dados" msgid "Create" msgstr "Criar" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Sem Privilégios" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "Criar uma Página nova" @@ -5946,9 +6223,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nome" @@ -6135,26 +6412,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version" msgid "committed on %1$s by %2$s" msgstr "Criar versão" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version" msgid "authored on %1$s by %2$s" @@ -6266,406 +6543,241 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Adicionar/Remover Campos" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -msgid "Start row" -msgstr "Estado" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of rows" -msgstr "Número de registos por página" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Seg" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontal" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontal (cabeçalhos rodados)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertical" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Ordenar por chave" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "Operações" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Texto parcial" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Texto inteiro" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "Esquema relacional" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Esquema relacional" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Transformação do navegador" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Registo eliminado" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Termina" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "na pesquisa" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Mostrando registos" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "total" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "O Query demorou %01.4f sec" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Vista de impressão (com texto inteiro)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Mostrar o esquema de PDF" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Versão do servidor" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Link não encontrado" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 #, fuzzy msgid "Version information" msgstr "Informação de Login " -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 #, fuzzy msgid "Data files" msgstr "Apenas dados" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Estado da InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 #, fuzzy msgid "Pages to be flushed" msgstr "A tabela %s foi fechada" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6673,48 +6785,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6722,20 +6834,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Relações" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6795,15 +6907,15 @@ msgstr "Extraindo dados da tabela" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Enviado" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6873,14 +6985,14 @@ msgstr "MIME-types disponíveis" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Máquina" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Data de Criação" @@ -7078,21 +7190,12 @@ msgstr "" msgid "Export contents" msgstr "Tipo de Exportação" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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." @@ -7187,12 +7290,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Nome dos Campos" @@ -7257,97 +7360,79 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funções" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Esconder" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binário" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binário - não editar" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "Directoria no servidor web para fazer upload" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Insere" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Insere como novo registo" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Inserir novo registo" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 #, fuzzy msgid "Go back to this page" msgstr "Voltar atrás" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Editar próxima coluna" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Valor" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7364,36 +7449,36 @@ msgstr "Nenhum" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Sex" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Submete" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Confirma : " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Sem alterações" @@ -7609,93 +7694,93 @@ msgstr "" msgid "This format has no options" msgstr "Este formato não tem opções" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "não está OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Activado" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Características gerais de Relação" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Mostrar Características" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Criação de PDFs" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Mostrando comentários das Colunas" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Transformação do navegador" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Consulte a Documentação sobre como actualizar a Tabela Column_comments Table" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Comandos SQL marcados" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Histórico SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "sem Descrição" @@ -7703,7 +7788,7 @@ msgstr "sem Descrição" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7715,13 +7800,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Nome do Utilizador" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Ordenação" @@ -7735,7 +7820,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variável" @@ -7750,38 +7835,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Qualquer utilizador" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Usar campo de texto" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Qualquer máquina" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Este Anfitrião" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Usar a tabela do anfitrião" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7795,7 +7880,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7827,99 +7912,100 @@ msgstr "A tabela %s foi eliminada" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Enviado" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_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:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy msgid "Event name" msgstr "Tipo de Exportação" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 #, fuzzy msgid "Event type" msgstr "Tipo de Exportação" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Muda" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Estado" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Fim" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Instrucções de inserção completas" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7950,7 +8036,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7970,117 +8056,117 @@ msgstr "A tabela %s foi eliminada" msgid "Routine %1$s has been created." msgstr "A tabela %s foi eliminada" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Nome dos Campos" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Criação" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Tamanho/Valores*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Remover a Base de Dados" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Tamanho/Valores*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opções da tabela" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Tipo de Query" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, fuzzy, php-format msgid "Execution results of routine %s" msgstr "Permite criar novas tabelas." -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8099,41 +8185,41 @@ msgstr "A tabela %s foi eliminada" msgid "Trigger %1$s has been created." msgstr "A tabela %s foi eliminada" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Acrescenta um utilizador" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "User name" msgid "Trigger name" msgstr "Nome do Utilizador" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Tempo" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8238,7 +8324,7 @@ msgstr "Tabelas em tracking" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8248,7 +8334,7 @@ msgstr "A tabela \"%s\" não existe!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8256,7 +8342,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Configure as cordenadas para a tabela %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8268,27 +8354,27 @@ msgstr "Esquema da base de dados \"%s\" - Página %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Esquema relacional" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Índice" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atributos" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8406,7 +8492,7 @@ msgstr "" msgid "Current Server" msgstr "Servidor" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Pesquisar na Base de Dados" @@ -8425,7 +8511,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Pesquisar na Base de Dados" @@ -8445,7 +8531,7 @@ msgstr "Executa comando(s) SQL na base de dados %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8456,11 +8542,11 @@ msgstr "" msgid "Columns" msgstr "Nome dos Campos" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Deixar todos os utilizadores acederem a este marcador" @@ -8556,7 +8642,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8587,8 +8673,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Índice" @@ -8642,13 +8728,13 @@ msgstr "Nenhum" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primária" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Texto Completo" @@ -8662,19 +8748,19 @@ msgstr "" msgid "after %s" msgstr "Depois %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Adiciona novo campo" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Tem que escolher pelo menos uma coluna para mostrar" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8682,46 +8768,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Pesquisar" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Seleccione os campos (no mínimo 1)" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Condição de Pesquisa (Complemento da cláusula \"where\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Número de registos por página" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Ordem de visualização:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Faça uma \"pesquisa por formulário\" (caractere universal: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8839,13 +8885,13 @@ msgstr "" msgid "Manage your settings" msgstr "Características gerais de Relação" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Modificações foram guardadas" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8856,7 +8902,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8885,7 +8931,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -8911,9 +8957,9 @@ msgstr "Versão do servidor" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Utilizador" @@ -9040,147 +9086,147 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Sem bases de dados" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Alterar a ordem da tabela por" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Alterar a ordem da tabela por" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Criar uma Página nova" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Por favor seleccione uma base de dados" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 #, fuzzy msgid "Create relation" msgstr "Versão do servidor" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Traditional Chinese" msgid "Toggle relation lines" msgstr "Chinês Tradicional" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Executa Comando SQL" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "Mostrar tudo" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "Vista de Relação" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Exportar" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "na pesquisa" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Renomeia a tabela para " -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Nome do Utilizador" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Criar" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9195,59 +9241,59 @@ msgstr "A tabela %s foi eliminada" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Utilização" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importar" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Criar um novo índice" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nome do Utilizador" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Erro: Relação já existe." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Erro: Relação não adicionada." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Relação FOREIGN KEY adicionada" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Relação interna adicionada" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relação apagada" @@ -9259,89 +9305,89 @@ msgstr "Erro gravando as coordenadas para o Designer." msgid "Modifications have been saved" msgstr "Modificações foram guardadas" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Importar" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importar" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Todas" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "A Tabela %s não foi encontrada ou não foi definida em %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9351,18 +9397,18 @@ msgstr "A tabela \"%s\" não existe!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "Qtd Campos" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Truncar os Queries mostrados" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Mostrar queries completos" @@ -9378,7 +9424,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 #, fuzzy msgid "Information" msgstr "Informação de Login " @@ -9387,7 +9433,7 @@ msgstr "Informação de Login " msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9395,24 +9441,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "As Bases de Dados %s foram apagadas com sucesso." msgstr[1] "As Bases de Dados %s foram apagadas com sucesso." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Estatísticas das bases de dados" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Activar Estatísticas" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9424,391 +9470,391 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 #, fuzzy msgid "View dump (schema) of databases" msgstr "Ver o esquema da base de dados" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Inicio" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "versão do PHP" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Desactidado" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "inclui todos os privilégios excepto Conceção - GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura de tabelas existentes." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Permite criar e apagar indexes." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Permite criar novas Bases de Dados e tabelas." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 #, fuzzy msgid "Allows creating stored routines." msgstr "Permite criar novas tabelas." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Permite criar novas tabelas." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Permite criar tabelas temporárias." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 #, fuzzy msgid "Allows creating new views." msgstr "Permite criar novas tabelas." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Permite apagar dados." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Permite apagar Bases de Dados e tabelas." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Permite apagar Bases de Dados." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 #, fuzzy msgid "Allows executing stored routines." msgstr "Permite criar novas tabelas." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar dados de... e exportar dados para ficheiros." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite adicionar utilizadores e privilégios sem recarregar a tabela de " "privilégios." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Permite criar e apagar indexes." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituir dados." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Não tem efeito nesta versão do MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Permite ler dados." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Dá acesso à lista de bases de dados completa." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Permite desligar o servidor." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Permite criar e apagar indexes." -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Permite alterar dados." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Sem privilégios." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nenhum" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: os nomes dos privilégios do MySQL são em Inglês" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administração" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Privilégios Globais" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Privilégios específicos da Base de Dados" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Limites do recurso" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Configurar estas opções para 0 (zero) remove o limite." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Informação de Login" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Mantendo a palavra-passe" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nenhum utilizador encontrado." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "O utilizador %s já existe!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Acrescentou um novo utilizador." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Actualizou os privilégios de %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Anulou os privilégios para %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "A palavra-passe para %s foi alterada com sucesso." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "A apagar %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "A recarregar privilégios" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "O privilégios foram recarregados com sucesso." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Alterar Privilegios" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Anula" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Exportar" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Todos" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Privilégios" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilégios" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Conceder/Grant" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Remover utilizadores seleccionados" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9821,49 +9867,49 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Privilégios específicos da Coluna" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Adicionar privilégios na base de dados seguinte" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Todos privilégios na tabela seguinte" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Mudar a informação de login / Copiar Utilizador" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Criar um novo utilizador com os mesmo privilégios e ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... manter o antigo." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... apagar o antigo das tabelas do utilizador." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9871,94 +9917,94 @@ msgstr "" " ... apagar o antigo das tabelas do utilizador e depois recarregue os " "privilégios." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verificar Privilégios para a Base de Dados "%s"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Utilizadores que tem acesso a "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "Especifico da Base de Dados" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "A Vista %s foi eliminada" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "O privilégios foram recarregados com sucesso." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9967,273 +10013,273 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Por favor seleccione uma base de dados" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Texto Completo" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full stop" msgstr "Texto Completo" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Somente estrutura" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Somente estrutura" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 #, fuzzy msgid "Query cache" msgstr "Tipo de Query" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 #, fuzzy msgid "Delayed inserts" msgstr "Instrucções de inserção múltiplas" -#: server_status.php:611 +#: server_status.php:610 #, fuzzy msgid "Key cache" msgstr "Tipo de Query" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 #, fuzzy msgid "Show open tables" msgstr "Mostra tabelas" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Informação de Runtime" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy msgid "Refresh rate: " msgstr "Gerado por" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Qtd Campos" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Mantendo a palavra-passe " -#: server_status.php:853 +#: server_status.php:852 #, fuzzy msgid "Show only alert values" msgstr "Mostra tabelas" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy msgid "Show unformatted values" msgstr "Mostra tabelas" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relações" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Tipo de Query" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "Funções" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10241,118 +10287,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Itens" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 #, fuzzy msgid "Replication status" msgstr "Relações" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Recebido" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Enviado" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Tentativas falhadas" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Abortado" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Comando" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10360,78 +10406,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10439,7 +10485,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10447,42 +10493,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10490,33 +10536,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10525,243 +10571,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Configurar o Mapa de Caracteres do ficheiro:" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10769,99 +10815,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 +10915,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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,68 +10934,68 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Detecção de Alterações está desactivada." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy msgid "Start Monitor" msgstr "Estado" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy msgid "Add chart" msgstr "Adiciona novo campo" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Gerado por" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adicionar/Remover Campos" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 +11004,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 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 +11012,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 +11031,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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,90 +11043,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Remover a Base de Dados" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Seleccionar Tabelas" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Acrescenta um utilizador" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "Comando SQL" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Estatísticas dos registos" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Seleccionar Tabelas" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Tipo de Query" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11088,7 +11134,7 @@ msgid_plural "%d seconds" msgstr[0] "por segundo" msgstr[1] "por segundo" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11096,132 +11142,132 @@ msgid_plural "%d minutes" msgstr[0] "em uso" msgstr[1] "em uso" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 #, fuzzy msgid "Structure Difference" msgstr "Somente estrutura" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "Comando SQL" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Ligações" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Variáveis do servidor e configurações" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Valor de sessão" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Valor Global" @@ -11514,177 +11560,177 @@ msgstr "" msgid "Wrong data" msgstr "Sem bases de dados" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Confirma : " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validar SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Resultado SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Gerado por" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Etiqueta" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Coluna" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy msgid "Chart title" msgstr "Tipo de Exportação" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "Comando SQL" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Valor" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Valor" -#: tbl_create.php:31 +#: tbl_create.php:30 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "O utilizador %s já existe!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "A tabela %s foi eliminada" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Ver o esquema da tabela" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Adicionar/Remover Campos" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Total" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "envia" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -11702,32 +11748,32 @@ msgstr "Impossível renomear índice para PRIMARY!" msgid "No index parts defined!" msgstr "Nenhuma parte do índice definida!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Print view" msgid "Edit index" msgstr "Vista de impressão" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Nome do Índice :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" tem de ser o nome de e apenas de uma chave " "primária!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Tipo de Índice :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Adicionar ao índice  %s coluna(s)" @@ -11750,278 +11796,278 @@ msgstr "A tabela %s foi movida para %s." msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "O nome da tabela está vazio!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Alterar a ordem da tabela por" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(A refazer após inserir/eliminar)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Move tabela para (base de dados.tabela):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Opções da tabela" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Renomeia a tabela para" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Copia tabela para (base-de-dados.tabela):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Mudar para a tabela copiada" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Manutenção da tabela" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "A tabela %s foi fechada" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Fecha a tabela (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Extraindo dados da tabela" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Sem bases de dados" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Manutenção da tabela" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 #, fuzzy msgid "Check" msgstr "Checo" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "Reparar tabela" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Verificar Integridade referencial:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Mostra tabelas" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Espaço ocupado" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Em uso" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Estatísticas dos registos" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinâmico" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 #, fuzzy msgid "Row length" msgstr "Comprimento de linha" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Tamanho dos reg." -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relações internas" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Session value" msgid "Distinct values" msgstr "Valor de sessão" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Nenhum" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "A tabela %s foi eliminada" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Uma chave primária foi adicionada a %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Um índice foi adicionado a %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Mostra informação do PHP" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add columns" msgid "Move columns" msgstr "Adicionar colunas" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Vista de impressão" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Vista de Relação" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Propor uma estrutura de tabela" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy msgid "Add column" msgstr "Adiciona novo campo" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "No Fim da Tabela" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "No Início da Tabela" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Depois %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12180,76 +12226,41 @@ msgstr "" msgid "Create version" msgstr "Criar versão" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Faça uma \"pesquisa por formulário\" (caractere universal: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Additional search criteria" -msgstr "Esconder critérios de buca" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -msgid "How to use" -msgstr "versão do PHP" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Limpa" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Obter mais temas!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 #, fuzzy msgid "Available MIME types" msgstr "MIME-types disponíveis" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-types impressos em itálico não tem uma função de transformação separada" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Transformações disponíveis" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Descrição" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Não tem permissões suficientes para aceder aqui, neste momento!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "O prefil foi actualizado." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index e41214eb13..b3b149e5ef 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-06-04 13:49+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: brazilian_portuguese \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Mostrar tudo" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Número da página:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ 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:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Executar" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Nome chave" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Descrição" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Usar este valor" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Banco de dados %1$s foi criado." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Comentário do Banco de Dados: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Comentários da tabela" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Coluna" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Nulo" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Padrão" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Links para" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Comentários" @@ -197,14 +198,14 @@ msgstr "Comentários" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Não" @@ -217,120 +218,120 @@ msgstr "Não" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Sim" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Ver o esquema do Banco de Dados" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Nenhuma tabela encontrada no banco de dados." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Selecionar Todos" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Desmarcar Todos" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "O nome do Banco de Dados está em branco!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Banco de Dados %1$s foi renomeado para %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Banco de Dados %1$s foi copiado para %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Renomear Banco de Dados para" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Remover Banco de Dados" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Banco de Dados %s foi eliminado." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Apagar o Banco de Dados (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Copiar Banco de Dados para" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Somente estrutura" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Estrutura e dados" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Dados apenas" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE antes de copiar" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Adicionar %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Adicionar valor AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Adicionar restrições" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Mudar para o Banco de Dados copiado" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Colação" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -339,59 +340,59 @@ msgstr "" "Os recursos adicionais para trabalhar com tabelas linkadas foram " "desativadas. Para descobrir o motivo clique %saqui%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Editar ou exportar esquema relacional" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Registros" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Tamanho" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "em uso" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Criação" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Última atualização" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Última verificação" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -402,210 +403,210 @@ msgstr[1] "%s tabelas" msgid "You have to choose at least one column to display" msgstr "Você deve escolher pelo menos uma coluna para exibir" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Alterar para %sconstrutor visual%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Ordenar" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Ascendente" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Descendente" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Mostrar" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Critério" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Inserir" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "E" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Deletar" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ou" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Modificar" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Adicionar/Remover critérios de linha" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Adicionar/Remover colunas" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Atualizar a consulta SQL" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Usar tabelas" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Consulta SQL ao Banco de Dados %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Enviar consulta SQL" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Acesso negado" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "pelo menos uma das palavras" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "todas as palavras" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "a frase exata" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "como expressão regular" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Resultados da pesquisa para \"%s\" %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Excluir correspondentes para a tabela %s?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Total: %s resultado" msgstr[1] "Total: %s resultados" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Procurar no Banco de Dados" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Palavra(s) ou valor(es) para procurar (coringa: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Encontrar:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Palavras são separadas por um caracter de espaço (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Dentro da(s) tabela(s):" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Dentro do campo:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Nenhuma tabela encontrada no banco de dados" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "desconhecido" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s foi esvaziada" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Visão %s foi apagada" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s foi eliminada" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Rastreamento está ativo." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Rastreamento não está ativo." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -614,185 +615,186 @@ msgstr "" "Esta visão tem pelo menos esse número de linhas. Por favor, consulte a " "%sdocumentação%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replicação" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Soma" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Com marcados:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Marcar todos" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Verificar sobre-carga" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Visualização para impressão" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Limpar" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Eliminar" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Verificar tabela" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Otimizar tabela" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Reparar tabela" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizar tabela" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Adicionar prefixo à tabela" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Substituir prefixo da tabela" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copiar tabela com o prefixo" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dicionário de dados" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Tabelas rastreadas" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Banco de Dados" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Última versão" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Criado" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Atualizado" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Status" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Ação" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Excluir dados de monitoramento desta tabela" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "ativo" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "inativo" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versões" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Relatório de monitoramento" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Preview da estrutura" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Tabelas não monitoradas" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Monitorar tabela" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Registro de log do Banco de Dados" @@ -804,16 +806,16 @@ msgstr "Tipo incorreto!" msgid "Selected export type has to be saved in file!" msgstr "Tipo de exportação selecionada tem que ser salvo no arquivo!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Parâmetros incorretos!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Espaço insuficiente para salvar o arquivo %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -821,12 +823,12 @@ msgstr "" "O arquivo %s já existe no servidor, mude o nome do arquivo ou verifique sua " "opção de sobrescrever." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "O servidor web não tem permissão para salvar o arquivo %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump foi salvo no arquivo %s." @@ -835,86 +837,86 @@ msgstr "Dump foi salvo no arquivo %s." msgid "Invalid export type" msgstr "Formato inválido para exportação" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Valores do campo \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Use OpenStreetMaps como base" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Ponto" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Ponto %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Adicione um ponto" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Linha" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Anel Externo" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Anel interno" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Adicionar uma linha" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Adicionar um anel interno" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Polígono" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Adicionar polígono" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Adicionar Geometria" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Saída" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -922,7 +924,7 @@ msgstr "" "Selecione \"GeomFromText\" no campo \"Function\" e cole a string abaixo no " "campo \"Value\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -931,21 +933,21 @@ msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentation%s para burlar esses limites." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Exibindo marcadores" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "O marcador foi removido." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "O arquivo não pode ser lido" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -955,7 +957,7 @@ msgstr "" "suporte para ele não está implementado ou pode ter sido desabilitado por sua " "configuração." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -966,28 +968,28 @@ msgstr "" "sua configuração do PHP. Verifique a [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Impossível converter conjunto de caracteres deste arquivo sem a biblioteca " "de conversão" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Não foi possível carregar os plugins, verifique sua instalação!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importação finalizada com sucesso, %d consultas executadas." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -995,7 +997,7 @@ msgstr "" "Script passou do tempo limite, se você deseja terminar a importação, reenvie " "o mesmo arquivo que a importação será resumida." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1004,24 +1006,24 @@ msgstr "" "que o phpMyAdmin não é capaz de finalizar essa importação à menos que você " "aumente o tempo limite do PHP." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Voltar" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin é mais amigável com um navegador capaz de exibir frames." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "O comando \"DROP DATABASE\" está desabilitado." @@ -1030,7 +1032,7 @@ msgstr "O comando \"DROP DATABASE\" está desabilitado." msgid "Do you really want to execute \"%s\"?" msgstr "Você realmente deseja executar \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Você está prestes à DESTRUIR um banco de dados completo!" @@ -1070,7 +1072,7 @@ msgstr "Adicionar índice" msgid "Edit Index" msgstr "Editar índice" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Adicionar %d coluna(s) ao índice" @@ -1088,16 +1090,16 @@ msgstr "O nome do servidor está vazio!" msgid "The user name is empty!" msgstr "O nome do usuário está em branco!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "A senha está em branco!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "As senhas não são iguais!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Adicionar usuário" @@ -1114,23 +1116,24 @@ msgstr "Remover os usuários selecionados" msgid "Close" msgstr "Fechar" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Editar" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Gráfico de tráfego em tempo real" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Quadro conn./process em tempo real" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Gráfico de consulta em tempo real" @@ -1140,24 +1143,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Outro" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1177,7 +1180,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Processos" @@ -1195,7 +1198,7 @@ msgstr "Requisições desde a última atualização" msgid "Questions (executed statements by the server)" msgstr "Requisições (Declarações executadas pelo servidor)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Estatísticas de Consultas" @@ -1240,14 +1243,14 @@ msgid "System swap" msgstr "Área de Troca (Swap) do sistema" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1299,32 +1302,32 @@ msgstr "Bytes enviados" msgid "Bytes received" msgstr "Bytes Recebidos" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Conexões" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1338,11 +1341,11 @@ msgstr "%d tabela(s)" msgid "Questions" msgstr "Requisições" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Tráfego" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Configurações" @@ -1368,11 +1371,11 @@ msgstr "Adicionar gráfico ajustado na grade" msgid "Please add at least one variable to the series" msgstr "Por favor adicione no mínimo uma variável à série" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Nenhum" @@ -1476,7 +1479,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:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Título do Relatório/Gráfico ou Tabela" @@ -1561,7 +1564,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Tempo" @@ -1657,10 +1660,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:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1710,9 +1713,9 @@ msgstr "Variável / formula utilizada" msgid "Test" msgstr "Teste" -#: 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 +#: 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 msgid "Cancel" msgstr "Cancelar" @@ -1724,11 +1727,11 @@ msgstr "Carregando" msgid "Processing Request" msgstr "Processando a requisição" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Erro no processamento da requisição" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Nenhum Banco de Dados selecionado." @@ -1740,9 +1743,9 @@ msgstr "Excluindo coluna" msgid "Adding Primary Key" msgstr "Adicionar chave primária" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1782,15 +1785,15 @@ msgstr "Ocultar índices" msgid "Show indexes" msgstr "Mostrar índices" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Verificação de chave estrangeira:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Habilitado)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Desabilitado)" @@ -1819,7 +1822,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" @@ -1858,8 +1861,8 @@ msgstr "Mostrar caixa de consulta" msgid "No rows selected" msgstr "Nenhum registro selecionado" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Alterar" @@ -1867,18 +1870,18 @@ msgstr "Alterar" msgid "Query execution time" msgstr "Tempo de execução da busca" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Salvar" @@ -1890,7 +1893,7 @@ msgstr "Ocultar critério de pesquisa" msgid "Show search criteria" msgstr "Exibir critério de pesquisa" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Zoom Pesquisa detalhada" @@ -1939,12 +1942,12 @@ msgstr "Resultado(s) da(s) consulta(s)" msgid "Data point content" msgstr "Conteúdo do ponteiro de dados" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Copiar" @@ -1964,7 +1967,7 @@ msgstr "Selecionar Chave Estrangeira" msgid "Please select the primary key or a unique key" msgstr "Por favor, selecione uma chave primária ou uma chave única" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Marque a coluna para exibir" @@ -2056,7 +2059,7 @@ msgstr "Gerar" msgid "Change Password" msgstr "Alterar senha" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Mais" @@ -2147,63 +2150,63 @@ msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dez" @@ -2241,32 +2244,32 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sab" @@ -2383,16 +2386,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "por segundo" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "por minuto" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "por hora" @@ -2415,21 +2418,214 @@ msgstr "" msgid "Font size" msgstr "Tamanho da fonte" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Salvar dados editados" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Restaurar ordem da coluna" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Início" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Anterior" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Próximo" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Fim" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Linha inicial" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "Número de linhas" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "More" +msgid "Mode" +msgstr "Modo" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontal" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontal (cabeçalhos rotacionados)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertical" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "Cabeçalho a cada %s linhas" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Ordenar pela chave" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Opções" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Textos parciais" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Textos completos" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Chave de relação" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Exibir coluna relacional" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Mostrar conteúdo binário" + +#: libraries/DisplayResults.class.php:1362 +#, fuzzy +msgid "Show BLOB contents" +msgstr "Exibir conteúdo BLOB" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Mostrar conteúdo binário como HEX" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Ocultar transformações do navegador" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Texto bem conhecido" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Binario bem conhecido" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Registro eliminado" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Matar" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "Pode ser aproximado. Veja o FAQ 3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "na consulta" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Mostrando registros" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "total" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Consulta levou %01.4f segundos" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operações resultantes das consultas" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Ver impressão (com textos completos)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Exibir gráfico" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Visualisar dados GIS" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Criar visualização" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Link não encontrado" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Muitas mensagens de erro, algumas não exibidas." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Arquivo não era um arquivo carregado" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "O arquivo carregado excede o tamanho definido na diretriz " "upload_max_filesize no php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2437,27 +2633,27 @@ msgstr "" "O arquivo enviado excede o tamanho definido na diretriz MAX_FILE_SIZE que " "foi definido no formulário HTML." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Carregamento do arquivo foi apenas parcial." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Pasta temporária não encontrada." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Falhou ao salvar arquivo no disco." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Carregamento do arquivo parado pela extenção." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Erro desconhecido no carregamento do arquivo." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2465,26 +2661,39 @@ msgstr "" "Erro ao mover o arquivo carregado, veja [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Erro ao mover o arquivo enviado." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Não pode ler (mover) arquivo carregado." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Abrir nova janela do phpMyAdmin" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Cookies devem estar ativos após este ponto." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Único" @@ -2497,8 +2706,8 @@ msgstr "Pacote" msgid "Cardinality" msgstr "Cardinalidade" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Cometário" @@ -2521,130 +2730,130 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Banco de Dados" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Servidor" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Estrutura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Inserir" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operações" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Rastreando" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tabela para estar vazia!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Banco de Dados parece estar vazio!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Procurar por exemplo" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilégios" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rotinas" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Eventos" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Usuário" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Log binário" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variáveis" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Conjuntos de caracteres" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Motores" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Erro" @@ -2669,7 +2878,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d linha inserida." msgstr[1] "%1$d linha(s) inseridas." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Erro ao criar o PDF:" @@ -2764,16 +2973,110 @@ 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 +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 +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 +msgid "Value" +msgstr "Valor" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Procurar" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Inserir" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Selecionar os campos (no mínimo 1)" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Condição de pesquisa (complemento da cláusula \"onde\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "registros por página" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Ordenado por:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Visualizar valores estrangeiros" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Additional search criteria" +msgstr "Ocultar critério de pesquisa" + +#: 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 "Faça uma \"consulta por exemplo\" (coringa: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Faça uma \"consulta por exemplo\" (coringa: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +#| msgid "PHP extension to use" +msgid "How to use" +msgstr "Utilizar a extensão do PHP" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Restaurar" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Encontrado caminho inválido para imagens para o tema %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Nenhuma pré-visualização disponível." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "tome" @@ -2792,7 +3095,7 @@ msgstr "Tema %s não encontrado!" msgid "Theme path not found for theme %s!" msgstr "Encontrado caminho inválido para o tema %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Tema" @@ -3091,13 +3394,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Não pode conectar: configurações inválidas." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Bem vindo ao %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3106,7 +3409,7 @@ 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." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3122,40 +3425,36 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Falha ao usar Blowfish de mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Javascript deve estar ativo após este ponto" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Autenticação" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Você pode digitar a url/IP e a porta separados por um espaço." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Servidor:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Usuário:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Senha:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Seleção do Servidor" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Cookies devem estar ativos após este ponto." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3163,19 +3462,19 @@ msgstr "" "Autenticação sem uma senha é proibida pela configuração (veja " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Sem atividade por %s segundos ou mais, faça o login novamente" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Não foi possível se logar no servidor MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Usuário ou senha incorreta. Acesso negado." @@ -3207,7 +3506,7 @@ msgstr "compartilhado" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabelas" @@ -3219,13 +3518,13 @@ msgstr "Tabelas" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Dados" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Sobrecarga" @@ -3250,19 +3549,11 @@ msgstr "Verificar privilégios para a Banco de Dados "%s"." msgid "Check Privileges" msgstr "Verificar privilégios" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "Possível explorar" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "Tecla numérica detectada" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Falhou ao ler o arquivo de configuração" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3270,12 +3561,12 @@ msgstr "" "Isso geralmente significa que há um erro de sintaxe, por favor cheque " "qualquer erro mostrado abaixo." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Não foi possível carregar configuração padrão de: \"%1$s\"" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3283,206 +3574,192 @@ msgstr "" "A diretriz$cfg['PmaAbsoluteUri'] deve ser estabelecida no seu " "arquivo de configuração!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Índice de servidor inválido: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de serivdor inválido para o servidor %1$s. Verifique suas configurações." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Método de autenticação inválido informado nas configurações:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Você deveria atualizar para %s %s ou posterior." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "Possível explorar" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "Tecla numérica detectada" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Documentação" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "ing" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "ing" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "ing" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "consulta SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Falha ao conectar ao validador SQL!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Pular Explicação SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Atualizar" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Pular validação SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validar SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Na linha de edição da presente consulta" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "na linha" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Perfil" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d/%m/%Y às %T" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Parâmetros perdidos:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Início" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Anterior" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Próximo" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Fim" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Ir para o Banco de Dados "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Clique para alternar" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format 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:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 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" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Não existem arquivos para fazer upload" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Executar" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Imprimir" @@ -3512,8 +3789,8 @@ msgid "Closed" msgstr "Fechado" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Desabilitado" @@ -3655,9 +3932,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Restaurar" @@ -3882,10 +4159,6 @@ msgstr "Propor estrutura da tabela" msgid "Show binary contents as HEX by default" msgstr "Mostrar conteúdo binário como HEX por padrão" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Mostrar conteúdo binário como HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Exibir bancos de dados como uma lista ao invés de uma caixa de seleção" @@ -3943,7 +4216,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Tempo máximo de execução" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Salvar como arquivo" @@ -3952,7 +4225,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formato" @@ -4056,7 +4329,7 @@ msgid "MIME type" msgstr "MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relações" @@ -5656,9 +5929,9 @@ msgstr "Requer validador SQL para ser habilitado" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Senha" @@ -5953,12 +6226,6 @@ msgstr "" msgid "Details..." msgstr "Detalhes..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "Pode ser aproximado. Veja o FAQ 3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -5966,18 +6233,18 @@ msgstr "" "Conexão para controle do usuário como definido nas configurações falhou." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Alterar a senha" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Sem senha" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Re-digite" @@ -5998,22 +6265,22 @@ msgstr "Criar banco de dados" msgid "Create" msgstr "Criar" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Sem privilégios" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nome" @@ -6181,26 +6448,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Codificação de conversão:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "Criar versão %s de %s.%s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -6322,184 +6589,29 @@ msgstr "Opções específicas do formato:" msgid "Language" msgstr "Linguagem" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Salvar dados editados" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Restaurar ordem da coluna" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Linha inicial" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "Número de linhas" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "More" -msgid "Mode" -msgstr "Modo" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontal" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontal (cabeçalhos rotacionados)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertical" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Cabeçalho a cada %s linhas" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Ordenar pela chave" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Opções" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Textos parciais" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Textos completos" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Chave de relação" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Exibir coluna relacional" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Mostrar conteúdo binário" - -#: libraries/display_tbl.lib.php:1296 -#, fuzzy -msgid "Show BLOB contents" -msgstr "Exibir conteúdo BLOB" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Ocultar transformações do navegador" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Texto bem conhecido" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Binario bem conhecido" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Registro eliminado" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Matar" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "na consulta" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Mostrando registros" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "total" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Consulta levou %01.4f segundos" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operações resultantes das consultas" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Ver impressão (com textos completos)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Exibir gráfico" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Visualisar dados GIS" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Criar visualização" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Link não encontrado" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Informações da versão" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Diretório raiz de dados" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "A parte comum do caminho do diretório para todos os arquivos de dados do " "InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Arquivos de dados" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Incremento autoextendido" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6507,11 +6619,11 @@ msgstr "" "O tamanho do incremento para extender o tamanho de um tamanho de tabela " "autoextendida quando ela começar à ficar cheia." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Tamanho do Buffer Pool" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6519,79 +6631,79 @@ msgstr "" "O tamanho do buffer de memória que o InnoDB usa para dados do cache e " "índices nas suas tabelas." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "\"Buffer Pool\"" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Status do InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Uso do Buffer Pool" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "páginas" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Páginas livres" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Páginas sujas" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Páginas contendo dados" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Páginas para serem niveladas" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Página ocupadas" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Páginas trancadas" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Atividade do Buffer Pool" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Leitura requisitada" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Escrita requisitada" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Leitura falhou" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Escrever as esperas" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Leitura falhou em %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Escrita esperada em %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Tamanho do ponteiro de dados" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6599,11 +6711,11 @@ msgstr "" "O tamanho padrão do ponteiro em bytes, para ser usado por CREATE TABLE para " "tabelas MyISAM quando a opção MAX_ROWS não é especificada." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Modo de recuperação automático" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6611,11 +6723,11 @@ msgstr "" "O modo para recuperação automática de tabelas MyISAM danificadas, como " "configurado pela opção de inicialização do servidor --myisam-recover." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Tamanho máximo para os arquivos temporários de ordenação" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6625,11 +6737,11 @@ msgstr "" "recriar um índice MyISAM (durante REPAIR TABLE, ALTER TABLE ou LOAD DATA " "INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Tamanho máximo para arquivos temporários na criação do índice" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6639,11 +6751,11 @@ msgstr "" "forem maiores do que usando a chave do cache pela quantidade especificada " "aqui, prefira o método chave do cache." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Processos de reparo" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6652,11 +6764,11 @@ msgstr "" "paralelo (cada índice tem seu próprio processo) durante o Reparo pelo " "processo de ordenação." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Tamanho do buffer de ordenação" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6664,73 +6776,73 @@ msgstr "" "O buffer que é alocado quando são ordenados índices MyISAM durante um REPAIR " "TABLE ou quando são criados índices com CREATE INDEX ou ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 #, fuzzy msgid "Log cache size" msgstr "Tamanho do buffer de ordenação" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6738,49 +6850,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 #, fuzzy msgid "Log buffer size" msgstr "Tamanho do buffer de ordenação" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6788,20 +6900,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Relações" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6851,14 +6963,14 @@ msgstr "Extraindo dados da tabela" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Evento" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6932,14 +7044,14 @@ msgstr "MIME-type disponíveis" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Servidor" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Tempo de Geração" @@ -7137,21 +7249,12 @@ msgstr "Visão" msgid "Export contents" msgstr "Tipo de exportação" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Abrir nova janela do phpMyAdmin" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Não foram encontrados dados para a visualização GIS." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7248,12 +7351,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Nome da Tabela" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Nome das colunas" @@ -7321,97 +7424,79 @@ msgstr "Modo de compatibilidade SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Função" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Ocultar" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binário" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binário - não edite" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "Servidor web subiu o diretório" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Inserir" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, 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:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "e então" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Inserir como um novo registro" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Inserir como uma linha nova e ignorar erros" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 #, fuzzy msgid "Show insert query" msgstr "Exibindo consulta SQL" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Retornar" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Inserir novo registro" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Voltar para esta página" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Editar próximo registro" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Valor" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" @@ -7428,38 +7513,38 @@ msgstr "Nenhum" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Sex" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Submeter" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add index" msgid "Add prefix" msgstr "Adicionar índice" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to execute following query?" 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:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Sem Mudança" @@ -7671,95 +7756,95 @@ msgstr "" msgid "This format has no options" msgstr "Esse formato não tem opções" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "não está OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Habilitado" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Recursos de relações gerais" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Exibir recursos" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Criação de PDFs" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Exibindo comentários da coluna" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Transformações do navegador" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Consulte a documentação sobre como atualizar sua tabela Column_comments" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Consulta SQL gravada" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Histórico SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Conexões persistentes" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "sem Descrição" @@ -7767,7 +7852,7 @@ msgstr "sem Descrição" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7779,13 +7864,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Nome do usuário" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Porta" @@ -7800,7 +7885,7 @@ msgid "Slave status" msgstr "Exibir status dos escravos" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variáveis" @@ -7814,38 +7899,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Usar campo texto" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Qualquer servidor" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Esse Servidor" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Usar Tabela do Servidor" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7859,7 +7944,7 @@ msgstr "Gerar Senha" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7895,102 +7980,103 @@ msgid "One or more errors have occured while processing your request:" msgstr "" "Um ou mais erros ocorreram durante o processamento de sua requisição:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Edit server" msgid "Edit event" msgstr "Editar servidor" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Erro no processamento da requisição" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detalhes" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Tipo de evento" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Tipo de evento" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Alterar" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 #, fuzzy #| msgid "Execute" msgid "Execute at" msgstr "Executar" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute" msgid "Execute every" msgstr "Executar" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Status" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Fim" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Inserções completas" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8030,7 +8116,7 @@ msgstr "" "quaisquer problemas." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo de rotina inválido: \"%s\"" @@ -8049,119 +8135,119 @@ msgstr "A rotina %1$s foi modificada." msgid "Routine %1$s has been created." msgstr "A rotina %1$s foi criada." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Editar rotina" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rotinas" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Links diretos" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Tamanho/Definir*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add index" msgid "Add parameter" msgstr "Adicionar índice" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Remover Banco de Dados" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Tipo de returno" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Tamanho/Definir*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opções da tabela" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Segurança" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Resultados da execução da rotina %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Executar rotina" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8185,44 +8271,44 @@ msgstr "A rotina %1$s foi modificada." msgid "Trigger %1$s has been created." msgstr "A tabela %1$s foi criada." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new server" msgid "Edit trigger" msgstr "Adicionar novo servidor" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Gatilhos" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Tempo" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Nome de tabela inválida" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8328,7 +8414,7 @@ msgstr "Não existem eventos para serem mostrados" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8338,7 +8424,7 @@ msgstr "A tabela \"%s\" não existe!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8346,7 +8432,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Configure as coordenadas para a tabela %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8358,27 +8444,27 @@ msgstr "Esquema do Banco de Dados \"%s\" - Página %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Esquema relacional" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Tabela de conteúdos" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atributos" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8496,7 +8582,7 @@ msgstr "Linguagem desconhecida: %1$s." msgid "Current Server" msgstr "Servidor" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Procurar no Banco de Dados" @@ -8515,7 +8601,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Procurar no Banco de Dados" @@ -8535,7 +8621,7 @@ msgstr "Rodar consulta(s) SQL no servidor %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Limpar" @@ -8546,11 +8632,11 @@ msgstr "Limpar" msgid "Columns" msgstr "Nome das colunas" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Deixar qualquer usuário acessar esse marcador" @@ -8646,7 +8732,7 @@ msgstr "" "O Validador SQL não pode ser inicializado. Verifique se você instalou a " "extensão necessária do php conforme está escrito na %sdocumentação%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8679,8 +8765,8 @@ msgstr "" "use este formato: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Índice" @@ -8734,13 +8820,13 @@ msgstr "Nenhum" msgid "As defined:" msgstr "Como definido:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primária" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Texto completo" @@ -8754,20 +8840,20 @@ msgstr "" msgid "after %s" msgstr "Depois %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, 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:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Você deve adicionar pelo menos um campo." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8775,45 +8861,6 @@ msgstr "" msgid "PARTITION definition" msgstr "Definição da PARTIÇÃO" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Procurar" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Selecionar os campos (no mínimo 1)" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Condição de pesquisa (complemento da cláusula \"onde\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "registros por página" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Ordenado por:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Visualizar valores estrangeiros" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Faça uma \"consulta por exemplo\" (coringa: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8975,13 +9022,13 @@ msgstr "" msgid "Manage your settings" msgstr "Recursos de relações gerais" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Modificações foram salvas" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8994,7 +9041,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Não foi possível carregar configuração padrão de: \"%1$s\"" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9025,7 +9072,7 @@ msgstr "Collation de conexão do MySQL" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9051,9 +9098,9 @@ msgstr "Exibir versões" msgid "Protocol version" msgstr "Versão do Protocolo" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Usuário" @@ -9190,147 +9237,147 @@ msgstr "" "Servidor rodando com 'Suhosin'. Verifique a %sdocumentation%s para possíveis " "razões do erro." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Sem bases" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Alterar tabela ordenada por" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Alterar tabela ordenada por" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Criar tabela" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Selecionar um Banco de Dados" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Exibir/Ocultar menu da esquerda" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Salvar posição" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Criar relacionamento" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Recarregar" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Ajuda" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Links Angulares" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Links diretos" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Ajustar à grade" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Tudo Pequeno/Grande" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Mudar para pequeno/grande" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "Para selecionar relacionamento, clique :" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para esquema PDF" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Enviar consulta SQL" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Mover Menu" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Ocultar/Exibir tudo" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Ocultar/Exibir Tabelas sem relacionamento" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Numero de tabelas" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Apagar relacionamento" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Relacionamento apagado" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Exportar" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "na consulta" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Renomear a tabela para " -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Nome do usuário" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Criar" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9344,61 +9391,61 @@ msgstr "A página foi criada" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "páginas" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importar arquivos" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Exportar/Importar para escala" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Criar um novo índice" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nome do usuário" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Exportar/Importar para escala" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "recomendado" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Erro: relacionamento já existe." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Erro: relacionamento não adicionado." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Adicionado relacionamento Interno" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relacionamento apagado" @@ -9410,91 +9457,91 @@ msgstr "Erro ao salvar coordenada para o Designer." msgid "Modifications have been saved" msgstr "Modificações foram salvas" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Não foi possível carregar configuração padrão de: \"%1$s\"" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Importar arquivos" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importar arquivos" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Todos" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela não encontrada ou não configurada em %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9504,17 +9551,17 @@ msgstr "A tabela \"%s\" não existe!" msgid "Select binary log to view" msgstr "Selecionar log binário para exibir" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Arquivos" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Truncar as consultas SQL exibidas" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Mostrar consultas completas" @@ -9530,7 +9577,7 @@ msgstr "Posição" msgid "Original position" msgstr "Posição original" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informação" @@ -9538,7 +9585,7 @@ msgstr "Informação" msgid "Character Sets and Collations" msgstr "Conjuntos de caracteres e Collations" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9546,24 +9593,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "Banco de Dados %s foi eliminado com sucesso!" msgstr[1] "Banco de Dados %s foi eliminado com sucesso!" -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Estatísticas do Banco de Dados" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Habilitar estatísticas" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9575,156 +9622,156 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Ver dump (esquema) dos Bancos de Dados" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Início" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Versão" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Desabilitado" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Incluir todos os privilégios, exceto GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Permitir alterar a estrutura das tabelas existentes." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Permitir alterar e apagar stored routines." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Permitir criar novas tabelas e Banco de Dados." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Permitir criar stored routines." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Permitir criar novas tabelas." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Permitir criar tabelas temporárias." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permitir criar, apagar e renomear contas dos usuários." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Permitir criar novas visões." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Permitir apagar dados." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Permitir eliminar Banco de Dados e tabelas." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Permitir eliminar tabelas." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Permitir iniciar eventos no cronograma de eventos" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Permitir executar stored routines." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Permitir importar dados e exportar dados em arquivos." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permitir adicionar usuários e privilégios sem recarregar a tabela de " "privilégios." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Permitir criar e eliminar índices." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Permitir inserir e substituir dados." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Permitir bloquear tabelas para a processo atual." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Limitar o numero de novas conexões que o usuário pode abrir por hora." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limitar o número de consultas que podem ser enviadas ao servidor por hora." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9732,60 +9779,60 @@ msgstr "" "Limitar o número de comandos que alteram Bancos de Dados ou tabelas que o " "usuário pode executar por hora." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Limitar o número de conexões simultâneas que o usuário pode ter." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Permitir visualizar processos de todos os usuários" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Sem efeitos nesta versão do MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permitir recarregar configurações do servidor e descarregar o cache do " "servidor." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permitir que o usuário pergunte onde estão os escravos / mestres." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Precisar dos escravos de replicação." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Permitir leitura dos dados." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Permitir acesso completo à lista de Bancos de Dados." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permitir executar consultas SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Permitir desligar o servidor." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9795,172 +9842,172 @@ msgstr "" "para muitas operações administrativas, como setar variáveis globais e matar " "processos de outros usuários." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Permitir criar e e largar em cadeia" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Permitir modificar dados." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Sem privilégios." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nenhum" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: nomes de privilégios do MySQL são expressos em inglês" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administração" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Privilégios globais" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Privilégios específicos do Banco de Dados" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Limite dos recursos" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Nota: Ajustar essa opção para 0 (zero) remove os limites." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Informação de login" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Não mudar a senha" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nenhum usuário(s) encontrado." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "O usuário %s já existe!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Adicionado usuário" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Você mudou os priviléios para %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Você revogou os privilégios para %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "A senha para %s foi modificada com sucesso." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Eliminando %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Nenhum usuário selecionado para exclusão!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Recarregando os privilégios" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Os usuários selecionados foram apagados com sucesso." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Os privilégios foram recarregados com sucesso." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Editar Privilégios" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Revogar" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Exportar" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Qualquer" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Privilégios" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilégios" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Avaliação dos usuários" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Conceder/Grant" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Remover os usuários selecionados" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9973,50 +10020,50 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Privilégios específicos da coluna" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Adicionar privilégios nas seguintes Banco de Dados" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Adicionar privilégios nas seguintes tabelas" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Mudar informações de login / Copiar usuário" -#: server_privileges.php:2363 +#: server_privileges.php:2371 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:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... manter o antigo." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... apagar o antigo da tabela de usuários." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10024,96 +10071,96 @@ msgstr "" " ... apagar o antigo da tabela de usuários e depois recarregar os " "privilégios." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Banco de Dados para usuário" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilégios no banco de dados "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Usuários que têm acesso à "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 #, fuzzy msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "Específico do Banco de Dados" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "coringa" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "Visão %s foi apagada" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Os privilégios foram recarregados com sucesso." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 #, fuzzy msgid "Show master status" msgstr "Exibir status dos escravos" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10122,120 +10169,120 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Selecionar um Banco de Dados" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Texto completo" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full stop" msgstr "Texto completo" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Iniciar somente processo SQL" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Iniciar somente processo IO" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Processo %s foi morto com sucesso." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10243,150 +10290,150 @@ msgstr "" "phpMyAdmin não foi capaz de matar o processo %s. É possível que ele já " "esteja fechado." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Manipulador" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Consulta do cache" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Processos" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Dados temporários" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Inserções demoradas" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Chave do cache" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Junções" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Ordenando" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Coordenador da transação" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Nivelar (fechar) todas as tabelas" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Exibir tabelas abertas" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Exibir servidores escravos" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Exibir status dos escravos" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Nivelar cache da consulta" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Informações de Runtime" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Atualizar" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Filtro" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Não mudar a senha" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Exibir tabelas abertas" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Exibir tabelas abertas" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relações" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Tipo de consulta" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Introduction" msgid "Instructions" msgstr "Introdução" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10394,57 +10441,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Comandos" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 #, fuzzy msgid "Replication status" msgstr "Replicação" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10452,47 +10499,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Recebido" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Enviar" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "máx. de conexões concorrentes" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Tentativas falharam" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Abortado" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Comando" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -10502,16 +10549,16 @@ msgstr "" "excederam o valor do binlog_cache_size e usaram o arquivo temporário para " "armazenar enunciados da transação." -#: server_status.php:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10523,11 +10570,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Quantos arquivos temporários o MySQL tinha criado." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10535,7 +10582,7 @@ msgstr "" "O número de tabelas temporárias na memória criadas automaticamente pelo " "servidor enquanto executava os enunciados." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10543,7 +10590,7 @@ msgstr "" "O número de linhas escritas com INSERT DELAYED para cada erro ocorrido " "(provavelmente chave duplicada)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10551,23 +10598,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "O número de linhas INSERT DELAYED escritas." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "O número de enunciados FLUSH executados." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "O número de enunciados COMMIT internos." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10577,7 +10624,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:1335 +#: 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, " @@ -10587,7 +10634,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:1336 +#: server_status.php:1335 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." @@ -10596,7 +10643,7 @@ msgstr "" "alto, é uma boa indicação de que suas consultas e tabelas estejam " "corretamente indexadas." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10606,7 +10653,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:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10614,7 +10661,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:1339 +#: 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 " @@ -10627,7 +10674,7 @@ msgstr "" "faça a varredura de tabelas inteiras ou você tem junções que não usam as " "chaves corretamente." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10639,37 +10686,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:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "O número de enunciados ROLLBACK internos." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 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:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "O número de páginas atualmente sujas." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "O número de páginas livres." -#: server_status.php:1348 +#: 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 " @@ -10679,7 +10726,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:1349 +#: server_status.php:1348 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 " @@ -10691,11 +10738,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:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Tamanho total do buffer pool, em páginas." -#: server_status.php:1351 +#: 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." @@ -10704,7 +10751,7 @@ msgstr "" "uma consulta faz a varredura de uma parcela grande de uma tabela mas na " "ordem aleatória." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10712,11 +10759,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:1353 +#: server_status.php:1352 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:1354 +#: 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." @@ -10724,7 +10771,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:1355 +#: server_status.php:1354 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 " @@ -10738,55 +10785,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:1356 +#: server_status.php:1355 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:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "O número de operações fsync() à fazer." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "O número atual de operações fsync() pendentes." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "O número atual de leituras pendentes." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "O número atual de escritas pendentes." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "O montante de leitura de dados à fazer, em bytes." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "O número total de dados lidos." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "O número total de dados escritos." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "O montante de escrita de dados à fazer, em bytes." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -10794,35 +10841,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "O número de requisições de escrita de log." -#: server_status.php:1369 +#: server_status.php:1368 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:1370 +#: server_status.php:1369 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "O número de arquivos de log fsyncs pendentes." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Escrita de arquivos de log pendentes." -#: server_status.php:1373 +#: server_status.php:1372 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:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "O número de páginas criadas." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10831,52 +10878,52 @@ msgstr "" "contados em páginas; o tamanho de página permite que sejam facilmente " "convertidos em bytes." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "O número de páginas lidas." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "O número de páginas escritas." -#: server_status.php:1378 +#: server_status.php:1377 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:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "O número de linhas deletadas de tabelas InnoDB." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "O número de linhas inseridas em tabelas InnoDB." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "O número de linhas lidas de tabelas InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "O número de linhas atualizadas em tabelas InnoDB." -#: server_status.php:1387 +#: 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." @@ -10884,7 +10931,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:1388 +#: 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." @@ -10892,7 +10939,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:1389 +#: server_status.php:1388 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 " @@ -10902,17 +10949,17 @@ msgstr "" "indica o número máximo de blocos que estiveram sempre em uso em algum " "momento." -#: server_status.php:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Formato do arquivo importado" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10922,26 +10969,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:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -10952,18 +10999,18 @@ msgstr "" "a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi " "compilada ainda." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10971,39 +11018,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "O número de arquivos que estão abertos." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "O número de tabelas que estão abertas." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "O montante de memória livre para a consulta do cache." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "O número de hits do cache." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "O número de consultas adicionadas no cache." -#: server_status.php:1408 +#: 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 " @@ -11016,7 +11063,7 @@ msgstr "" "recentemente\" (LRU - least recently used) para decidir qual consulta " "remover do cache." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11024,19 +11071,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:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "O número de consultas registradas no cache." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "O número total de blocos na consulta do cache." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "O status da replicação à prova de falhas (não implementado)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -11044,13 +11091,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -11059,7 +11106,7 @@ msgstr "" "após cada linha. (Se este não for 0, você deve cuidadosamente verificar os " "índices de suas tabelas.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11067,16 +11114,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11084,11 +11131,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:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11096,12 +11143,12 @@ msgstr "" "O número de processos que levaram mais que slow_launch_time segundos para " "serem criadas." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11111,24 +11158,24 @@ msgstr "" "valor for alto, você deve considerar aumentar o valor da variável " "sort_buffer_size do sistema." -#: server_status.php:1424 +#: server_status.php:1423 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:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "O número de linhas ordenadas." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -11140,7 +11187,7 @@ msgstr "" "performance, você precisa primeiramente otimizar suas consultas e então, ou " "dividir sua tabela ou usar replicação." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11150,11 +11197,11 @@ msgstr "" "ser calculada como Threads_created/conexões. Se este valor for vermelho você " "deve aumentar seu thread_cache_size" -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "O número de conexões atualmente abertas." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11166,75 +11213,75 @@ msgstr "" "isso não da um aumento notável de performance se você tem uma boa " "implementação de processos.)" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Rastreamento não está ativo." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "O número de processos que não estão dormindo." -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy msgid "Start Monitor" msgstr "Status" -#: server_status.php:1588 +#: server_status.php:1587 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Introdução" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "Adicionar índice" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Atualizar" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adicionar/Remover colunas" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Restaurar valor padrão" -#: server_status.php:1632 +#: server_status.php:1631 #, fuzzy #| msgid "1. Introduction" msgid "Monitor Instructions" msgstr "1. Introdução" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11243,7 +11290,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11251,20 +11298,20 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Pausar o monitoramento" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11272,11 +11319,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11287,95 +11334,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:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Remover Gráfico/Tabela ou Relatório" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Tabelas selecionadas" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Nome de tabela inválida" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Adicionar novo servidor" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "Consultas SQL" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Mostrar estatísticas" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Tabelas selecionadas" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Tipo de consulta" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11383,7 +11430,7 @@ msgid_plural "%d seconds" msgstr[0] "Segundo" msgstr[1] "Segundo" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11391,133 +11438,133 @@ msgid_plural "%d minutes" msgstr[0] "Minuto" msgstr[1] "Minuto" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "O banco de dados '%s' não existe." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 #, fuzzy msgid "Structure Difference" msgstr "Estrutura para visualizar" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 #, fuzzy msgid "Data Difference" msgstr "Estrutura para visualizar" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Adicionar coluna(s)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Remover coluna(s)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Alterar coluna(s)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Remover índice(s)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Aplicar índice(s)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Atualizar linha(s)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Inserir linha(s)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Aplicar mudanças selecionadas" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Sincronizar Bando de Dados" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Consultas SQL" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Inserir manualmente" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Conexão atual" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, fuzzy, php-format #| msgid "Configuration" msgid "Configuration: %s" msgstr "Configuração" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Erro na atribuição da variável" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Variáveis e configurações do servidor" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Valor da sessão" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Valor global" @@ -11823,187 +11870,187 @@ msgstr "A chave deve conter letras, números, [em]e[/em] caracteres especiais." msgid "Wrong data" msgstr "Não existem dados" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usando marcador \"%s\" como padrão." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Você realmente deseja executar a Query SQL a seguir?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Exibindo como código PHP" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Resultado SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Gerado por" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas com o índice da tabela `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Nome" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "A tabela %1$s foi alterada com sucesso" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Os usuários selecionados foram apagados com sucesso." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Coluna" -#: tbl_chart.php:84 +#: tbl_chart.php:87 #, fuzzy #| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "Linhas" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Engines" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Pacote" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Título do Relatório" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "Eixo X" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "Consultas SQL" -#: tbl_chart.php:138 +#: tbl_chart.php:141 #, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" msgstr "Rótulo do Eixo X" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Valor" -#: tbl_chart.php:141 +#: tbl_chart.php:144 #, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "Rótulo do Eixo Y" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Valor" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "A tabela %s já existe!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "A tabela %1$s foi criada." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Ver o esquema da tabela" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Mostrar visualização GIS" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Largura" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Altura" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Adicionar/Remover colunas" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- nenhum -" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Total" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Redesenhar" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Salvar como arquivo" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12021,32 +12068,32 @@ msgstr "Não foi possível renomear o índice para \"PRIMARY\"!" msgid "No index parts defined!" msgstr "Nenhuma parte de índice definida!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Adicionar índice" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Modo de edição" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Nome do índice:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" precisa ser o nome de e apenas da chave " "primária!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Tipo de índice:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Adicionar ao índice  %s coluna(s)" @@ -12069,154 +12116,154 @@ msgstr "Tabela %s foi movida para %s." msgid "Table %s has been copied to %s." msgstr "Tabela %s copiada para %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "O Nome da Tabela está vazio!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Alterar tabela ordenada por" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(singularmente)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Mover tabela para (Banco de Dados.tabela):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Opções da tabela" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Renomear a tabela para" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Copiar tabela para (Banco de Dados.tabela):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Mudar para a tabela copiada" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Tabela de Manutenção" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Desfragmentar tabela" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s foi limpa" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Limpar a tabela (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Remover dados ou tabela" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Esvaziar a tabela (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Remover a tabela (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Manutenção da partição" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partição %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analizar" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Checar" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Otimizar" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Reconstruir" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Reparar" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Remover partição" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Verificar integridade referencial:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Mostrar tabelas" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Uso do espaço" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efetivo" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Estatísticas do registros" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "estático" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinâmico" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Tamanho do registro" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Tamanho do registro" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Erro ao criar chave externa no %1$s (check data types)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relações internas" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12224,116 +12271,116 @@ msgstr "" "Uma relação interna é desnecessária quando uma CHAVE ESTRANGEIRA " "correspondente existe." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Restrição de chave estrangeira" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Espacial" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Procurar valores distintos" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Adicionar chave primária" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Adicionar índice único" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Adicionar índice SPATIAL" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 #, fuzzy msgid "Add FULLTEXT index" msgstr "Adicionar índice FULLTEXT" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Nenhum" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabela %s foi eliminada" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Uma chave primária foi adicionada a %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Um índice foi adicionado a %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show versions" msgid "Show more actions" msgstr "Exibir versões" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Remover coluna(s)" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Visualização para impressão" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Ver relações" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Propor estrutura da tabela" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Adicionar coluna" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "No final da tabela" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "No início da tabela" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Depois %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "particionado" @@ -12502,75 +12549,39 @@ msgstr "Rastrear estas instruções de manipulação de dados:" msgid "Create version" msgstr "Criar versão" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Faça uma \"consulta por exemplo\" (coringa: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Additional search criteria" -msgstr "Ocultar critério de pesquisa" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -#| msgid "PHP extension to use" -msgid "How to use" -msgstr "Utilizar a extensão do PHP" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Restaurar" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Obter mais temas!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "MIME-type disponíveis" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME-types em itálico não têm uma função de transformação separada" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Transformações disponíveis" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Descrição" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Você não tem direitos suficientes para estar aqui agora!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "O perfil foi atualizado." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Nome da VISÃO" diff --git a/po/ro.po b/po/ro.po index 317ecbb6bf..b2c9f3bb54 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:15+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: romanian \n" @@ -15,21 +15,21 @@ msgstr "" "20)) ? 1 : 2);;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Arată toate" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Numărul paginii:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "închisă, sau fereastra-părinte blochează ferestrele din cauza securității " "sistemului." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Execută" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Nume cheie" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Descriere" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Folosește această valoare" @@ -108,88 +108,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza de date %1$s a fost creată." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Comentarii referitoare la baza de date: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Comentarii tabel" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Coloană" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Nul" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Setare de bază" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Trimitere la" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Comentarii" @@ -198,14 +199,14 @@ msgstr "Comentarii" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nu" @@ -218,120 +219,120 @@ msgstr "Nu" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Da" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Vizualizarea schemei bazei de date" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Nu s-a găsit nici un tabel în baza de date." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Selectează tot" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Deselectează tot" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Cîmpul de denumire al bazei de date este gol!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Baza de date %1$s a fost redenumită în %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Baza de date %1$s a fost copiata la %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Redenumire bază de date în" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Elimină baza de date" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Baza de date %s a fost aruncată." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Ștergeți baza de date (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Copiază baza de date" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Numai structura" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Structura și date" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Numai date" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREEAZĂ BAZA DE DATE înainte de copiere" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Adăugare %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Adaugă valoare pentru AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Adaugă constrângeri" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Schimbă la tabela copiată" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Interclasare" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -340,59 +341,59 @@ msgstr "" "Opțiunile adiționale pentru folosirea tabelelor intercalate au fost " "dezactivate. Pentru a afla de ce, click %saici%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Editați sau exportați schema relațională" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabel" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Linie" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Mărime" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "în folosință" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Creare" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Ultima actualizare" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Ultima verficare" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -404,120 +405,120 @@ msgstr[2] "%s tabele" msgid "You have to choose at least one column to display" msgstr "Trebuie să alegeți cel puțin o coloană pentru a putea afișa" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Schimbă la tabela copiată" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sortare" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Crescătoare" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Descrescător" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Afișează" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Criteriu" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Și" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Sau" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Modificare" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Adaugă/șterge criteriu" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Adaugă/Șterge coloane" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Reînnoire comandă" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Utilizare tabele" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Comandă SQL pe baza de date %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Trimite comanda" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Acces interzis" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "cel puțin unul dintre cuvinte" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "toate cuvintele" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "fraza exactă" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "ca o expresie" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Caută rezultate pentru \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -526,30 +527,30 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Ștergeți potrivirile pentru tabelul %s?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -558,65 +559,65 @@ msgstr[0] "Total: %s rezultat(e)" msgstr[1] "Total: %s rezultat(e)" msgstr[2] "Total: %s rezultat(e)" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Caută în baza de date" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Cuvinte sau valori de căutat (metacaracter: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Găsește:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Cuvinte despărțite de un spațiu (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "În interiorul tabelei(lor):" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "In interiorul coloanei::" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Nu s-a găsit niciun tabel în baza de date" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "necunoscut" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabelul %s a fost golit" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Vizualizarea %s a fost eliminată" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabelul %s a fost aruncat" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Monitorizarea este activată." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Monitorizarea nu este activată." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -624,190 +625,191 @@ msgid "" msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Vizualizare" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replicare" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Sumă" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Cele bifate:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Marchează toate" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Verificare depășit" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportă" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Vizualizare imprimare" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Golește" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Aruncă" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Verificare tabel" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimizare tabel" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Reparare tabel" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizare tabel" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Adaugă prefix la tabelă" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Înlocuiește prefixul tabelei" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Copiază tabelul cu prefix" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dicționar de date" -#: db_tracking.php:74 +#: db_tracking.php:75 #, fuzzy msgid "Tracked tables" msgstr "Tabelele urmărite" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Baza de date" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Ultima versiune" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Creat(ă)" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Actualizat(ă)" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Stare" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Acțiune" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 #, fuzzy msgid "Delete tracking data for this table" msgstr "Șterge datele urmărite din acest tabel" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 #, fuzzy msgid "active" msgstr "activ(ă)" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 #, fuzzy msgid "not active" msgstr "inactiv(ă)" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versiuni" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Raport de monitorizare" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Instantaneu al structurii" -#: db_tracking.php:183 +#: db_tracking.php:184 #, fuzzy msgid "Untracked tables" msgstr "Tabele fără monitorizare" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Monitorizează tabel" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "Jurnalul (log) bazei de date" @@ -822,18 +824,18 @@ msgstr "Tip interogare" msgid "Selected export type has to be saved in file!" msgstr "Tipul selectat pentru export trebuie salvat într-un fișier!" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Routines" msgid "Bad parameters!" msgstr "Rutine" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Spațiu insuficient pentru salvarea fișierului %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -841,12 +843,12 @@ msgstr "" "Fișierul %s există deja pe server. Schimbați denumirea fișierului sau bifați " "opțiunea de suprascriere." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serverul web nu are drepturile necesare pentru a salva fișierul %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Copia a fost salvată în fișierul %s." @@ -856,104 +858,104 @@ msgstr "Copia a fost salvată în fișierul %s." msgid "Invalid export type" msgstr "Modul de export" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Valoare pentru coloana \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a point" msgstr "Adaugă %s cîmp(uri)" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Linii terminate de" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Adaugă un utilizator nou" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Adaugă un utilizator nou" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Poligon" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Adaugă %s cîmp(uri)" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add a new server" msgid "Add geometry" msgstr "Adaugă un server nou" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Ieșire" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -962,21 +964,21 @@ msgstr "" "Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la " "%sdocumentație%s pentru căi de ocolire a acestei limite." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Afișînd semn de carte" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Eticheta a fost ștearsă." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Fișierul nu poate fi citit" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -986,7 +988,7 @@ msgstr "" "suportul pentru aceasta nu este implementat, fie este dezactivat de " "configurația dumneavoastră." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -996,58 +998,58 @@ msgstr "" "a fost trimit, ori mărimea fișierului a depășit mărimea maximă permisă de " "configurația PHP-ului dumneavoastră. Vedeți FAQ 1.16." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nu au putut fi încărcate modulele adiționale de import, vă rog verificați " "instalarea!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Semnul de carte %s a fost creat" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importul s-a terminat cu succes, %d interogări executate." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Înapoi" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin are o interfață mai prietenoasă cu un navigator ce lucreaza cu " "cadre." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate." @@ -1057,7 +1059,7 @@ msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate." msgid "Do you really want to execute \"%s\"?" msgstr "Sigur doriți să " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Sunteți pe cale să DISTRUGEȚI o întreagă bază de date!" @@ -1098,7 +1100,7 @@ msgstr "Adaugă Index" msgid "Edit Index" msgstr "Editează Index" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Adaugă %d coloană(e)" @@ -1118,16 +1120,16 @@ msgstr "Numele gazdei este gol!" msgid "The user name is empty!" msgstr "Numele de utilizator este gol!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Parola este goală!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Parolele nu corespund!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Adaugă utilizator" @@ -1148,25 +1150,26 @@ msgstr "Eliminarea utilizatorilor selectați" msgid "Close" msgstr "Închide" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Editare" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Alegerea serverului" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "Comanda SQL" @@ -1177,24 +1180,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1214,7 +1217,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Procese" @@ -1232,7 +1235,7 @@ msgstr "Întrebări de la ultima reîmprospătare" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "Statisticile rîndului" @@ -1282,14 +1285,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiO" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiO" @@ -1349,32 +1352,32 @@ msgstr "Octeți trimiși" msgid "Bytes received" msgstr "Octeți primiți" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Conexiuni" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "octeți" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiO" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiO" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiO" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiO" @@ -1391,11 +1394,11 @@ msgstr "%s tabele" msgid "Questions" msgstr "Versiuni" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Trafic" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1421,11 +1424,11 @@ msgstr "Aliniere la grilă" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Nici unul(a)" @@ -1526,7 +1529,7 @@ msgstr "Modificați setările" msgid "Current settings" msgstr "Setările curente" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1622,7 +1625,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Timp" @@ -1728,10 +1731,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importă" @@ -1787,9 +1790,9 @@ msgstr "Variabilă / formulă folosită" msgid "Test" msgstr "Test" -#: 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 +#: 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 msgid "Cancel" msgstr "Renunță" @@ -1801,11 +1804,11 @@ msgstr "încărcare" msgid "Processing Request" msgstr "Se procesează cererea" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Eroare în procesarea cererii" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Nu este selectată nici o bază de date." @@ -1817,9 +1820,9 @@ msgstr "Șterge Coloană" msgid "Adding Primary Key" msgstr "Se adaugă Cheia Primară" -#: 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 +#: 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 msgid "OK" msgstr "E bine" @@ -1861,19 +1864,19 @@ msgstr "Ascunde index-uri" msgid "Show indexes" msgstr "Arată index-uri" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Dezactivare verificări de cheie străine" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Activat" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1905,7 +1908,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1946,8 +1949,8 @@ msgstr "Afișează casuță interogare" msgid "No rows selected" msgstr "Niciun rând selectat" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Schimbare" @@ -1955,18 +1958,18 @@ msgstr "Schimbare" msgid "Query execution time" msgstr "Durata de execuție a interogării" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Salveaza" @@ -1978,7 +1981,7 @@ msgstr "Ascunde criteriile de căutare" msgid "Show search criteria" msgstr "Afișează criteriile de căutare" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2032,12 +2035,12 @@ msgstr "Operațiuni asupra rezultatelor interogării" msgid "Data point content" msgstr "Mărime pointer date" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignoră" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Copiază" @@ -2057,7 +2060,7 @@ msgstr "Alegeți cheia străină" msgid "Please select the primary key or a unique key" msgstr "Vă rugăm să alegeți cheia primară sau o cheie unică" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Selectează coloana pentru afișare" @@ -2158,7 +2161,7 @@ msgstr "Generează" msgid "Change Password" msgstr "Schimbare parolă" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Mai mult" @@ -2255,27 +2258,27 @@ msgid "December" msgstr "Decembrie" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2283,37 +2286,37 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dec" @@ -2354,32 +2357,32 @@ msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sâm" @@ -2499,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "pe secundă" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "pe minut" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "pe oră" @@ -2531,20 +2534,231 @@ msgstr "" msgid "Font size" msgstr "Dimensiune font" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +msgid "Save edited data" +msgstr "Directorul de bază pentru date" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Adaugă/șterge coloane" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Începe" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Anterior" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Următorul" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Sfîrșit" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Dum" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "Număr de cîmpuri" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Lun" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "orizontal" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "orizontal (colontitlu rotativ)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertical" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "Capete de tabel la fiecare %s rânduri" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Sortare după cheie" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Opțiuni" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Texte parțiale" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Texte întregi" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Cheie relațională" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational display field" +msgid "Relational display column" +msgstr "Relational display field" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Afişează conţinut binar" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Afişează conţinut BLOB" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Afișează conținutul binar ca HEX" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Ascunde transformarea browser-ului" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Text Bine Cunoscut" + +#: libraries/DisplayResults.class.php:1388 +#, fuzzy +msgid "Well Known Binary" +msgstr "Binar Bine Cunoscut" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Oprește" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "Poate fi aproximativ. Vezi FAQ 3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "în interogarea" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Afișează înregistrări" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "total" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "comanda a durat %01.4f sec" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operațiuni asupra rezultatelor interogării" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Vizualizare listare (împreună cu text)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Arată schema PDF" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Creare relație" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Legatură nevalidă" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Prea multe mesaje de eroare, unele nu sunt afișate." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 #, fuzzy msgid "File was not an uploaded file." msgstr "Fișierul nu a fost un fișier uploadat." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Fișierul încărcat depășește condiția upload_max_filesize din php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2552,27 +2766,27 @@ msgstr "" "Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în " "formularul HTML." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Fișierul a fost încărcat numai parțial." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Lipsește un dosar temporar." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Eșec la scrierea fișierului pe disc." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Încărcarea fișierului a fost împiedicată de extensie." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Eroare necunoscută la încărcarea fișierului." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2580,26 +2794,41 @@ msgstr "" "Eroare la mutarea fișierului încărcat, vezi [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Eroare la mutarea fișierului încărcat." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Nu se poate citi fișierul încărcat (și mutat)." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Deschide fereastră phpMyAdmin nouă" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Trebuie sa aveti activat \"cookies\"." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "Trebuie sa aveti activat \"cookies\"." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indexuri" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unic" @@ -2612,8 +2841,8 @@ msgstr "Împachetat" msgid "Cardinality" msgstr "Cardinalitate" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Comentariu" @@ -2634,129 +2863,129 @@ msgid "" "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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Baze de date" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Structură" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Inserare" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operații" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 #, fuzzy msgid "Tracking" msgstr "Urmărire" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tabelul pare a fi gol!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Baza de date pare a fi goală!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Interogare prin exemplu" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Drepturi de acces" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Evenimente" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Utilizatori" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sincronizați" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Jurnal binar" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variabile" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Seturi de caractere" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Motoare" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Eroare" @@ -2784,7 +3013,7 @@ msgstr[0] "%1$d rânduri inserate." msgstr[1] "%1$d rând inserat." msgstr[2] "%1$d rânduri inserate." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Eroare la creare PDF:" @@ -2876,16 +3105,109 @@ 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 +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 +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 +msgid "Value" +msgstr "Valoare" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Caută" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Inserare" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Selectează cîmpurile (cel puțin unul):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Adaugă condiție de căutare (parte a comenzii \"where\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Numărul de înregistrări pe pagină" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Ordine de afișare:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Caută printre valori necunoscute" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "Comanda SQL" + +#: 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 "Execută o interogare prin exemplu (metacaracter: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Execută o interogare prin exemplu (metacaracter: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +#| msgid "PHP extension to use" +msgid "How to use" +msgstr "Extensia PHP de utilizat" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Resetare" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Nici o previzualizare disponibilă." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "alege" @@ -2904,7 +3226,7 @@ msgstr "Tema %s nu a fost găsită!" msgid "Theme path not found for theme %s!" msgstr "Calea temei nu a fost găsită pentru tema %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Temă" @@ -3202,13 +3524,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Conexiune esuata: setari invalide." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Bine ați venit la %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3218,7 +3540,7 @@ msgstr "" "configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un " "astfel de fișier." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3234,48 +3556,42 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Trebuie sa aveti activat \"cookies\"." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Autentificare" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Puteți introduce adresă gazdă/IP și port separate de spațiu." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Nume utilizator:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Parolă:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Alegerea serverului" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Trebuie sa aveti activat \"cookies\"." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" @@ -3283,13 +3599,13 @@ msgstr "" "Nu ați avut activitate de mai mult de %s secunde, vă rugăm să vă " "autentificați din nou" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Nu pot face conexiunea catre serverul MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Nume de utilizator/parolă incorecte. Accesul interzis." @@ -3322,7 +3638,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabele" @@ -3334,13 +3650,13 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Date" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Asupra" @@ -3367,33 +3683,25 @@ msgstr "Verifică privilegiile pentru baza de date "%s"." msgid "Check Privileges" msgstr "Verifică privilegiile" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "cheie numerica detectată" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3405,223 +3713,201 @@ msgstr "" "Directiva $cfg['PmaAbsoluteUri'] TREBUIE să fie stabilită în " "fișierul de configurare!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Index de server nevalid: „%s”" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația " "dumneavoastră." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Metodă de autentificare nevalidă stabilită în configurație:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "cheie numerica detectată" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Mărime maximă: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Documentație" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "Comanda SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL zice: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 #, fuzzy msgid "Failed to connect to SQL validator!" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Explică SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Sari peste explicarea SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "fără cod PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Creează cod PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Reîncarcă" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Sari peste validarea SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validează SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Motoare" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Creare profil" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Dum" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y la %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s zile, %s ore, %s minute și %s secunde" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutine" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Începe" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Anterior" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Următorul" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Sfîrșit" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Sari la baza de date "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Click pentru a selecta" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Caută în calculatorul tău:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "director de încărcare al serverului Web" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Directorul stabilit pentru încărcare nu poate fi găsit" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Nu sunt fișiere pentru încărcare" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Execută" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Listare" @@ -3653,8 +3939,8 @@ msgid "Closed" msgstr "Citare neînchisă" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Dezactivat" @@ -3804,9 +4090,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Resetare" @@ -4032,10 +4318,6 @@ msgstr "Propune structura de tabele" msgid "Show binary contents as HEX by default" msgstr "Afișează conținutul binar ca HEX implicit" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Afișează conținutul binar ca HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Afișează listarea bazelor de date ca o listă, în loc de un drop down" @@ -4092,7 +4374,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Timpul maxim de execuție" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Salvează ca fișier" @@ -4101,7 +4383,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4211,7 +4493,7 @@ msgid "MIME type" msgstr "Tip MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Legături" @@ -5911,9 +6193,9 @@ msgstr "Are nevoie de SQL Validator pentru a fi activată" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Parola" @@ -6212,30 +6494,24 @@ msgstr "" msgid "Details..." msgstr "Detalii..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "Poate fi aproximativ. Vezi FAQ 3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Schimbare parolă" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Nu există parolă" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Re-tastează" @@ -6258,22 +6534,22 @@ msgstr "Creează bază de date nouă" msgid "Create" msgstr "Creează" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Nu există drepturi de acces" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nume" @@ -6457,25 +6733,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Versiunea clientului MySQL" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Creare relație" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Creare relație" @@ -6605,281 +6881,116 @@ msgstr "" msgid "Language" msgstr "Limbă" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -msgid "Save edited data" -msgstr "Directorul de bază pentru date" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Adaugă/șterge coloane" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Dum" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "Număr de cîmpuri" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Lun" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "orizontal" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "orizontal (colontitlu rotativ)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertical" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Capete de tabel la fiecare %s rânduri" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Sortare după cheie" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Opțiuni" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Texte parțiale" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Texte întregi" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Cheie relațională" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational display field" -msgid "Relational display column" -msgstr "Relational display field" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Afişează conţinut binar" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Afişează conţinut BLOB" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Ascunde transformarea browser-ului" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Text Bine Cunoscut" - -#: libraries/display_tbl.lib.php:1322 -#, fuzzy -msgid "Well Known Binary" -msgstr "Binar Bine Cunoscut" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Linia a fost ștearsă" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Oprește" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "în interogarea" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Afișează înregistrări" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "total" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "comanda a durat %01.4f sec" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operațiuni asupra rezultatelor interogării" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Vizualizare listare (împreună cu text)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Arată schema PDF" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Creare relație" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Legatură nevalidă" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Informații despre versiune" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Directorul de bază pentru date" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Fișiere cu date" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Auto-extinde incrementarea" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Zonă Tampon" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Stare InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "pagini" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Pagini libere" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Pagini murdare" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Pagini ce conțin date" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Pagini de golit" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Pagini ocupate" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Cereri de citire" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Cereri de scriere" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 #, fuzzy msgid "Read misses" msgstr "Citiri gresite" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Scrierea așteaptă" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Scrierea așteaptă în %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Mărime pointer date" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6888,11 +6999,11 @@ msgstr "" "pentru tabelele MyISAM atunci cînd nu este specificată nici o opțiune " "MAX_ROWS." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Regim de recuperare automată" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6900,11 +7011,11 @@ msgstr "" "Regimul de recuperare automată a tabelelor MyISAM deteriorate, stabilit prin " "opțiunea startup --myisam-recover server." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Mărimea maximă pentru fișierele de sortare temporare" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6914,11 +7025,11 @@ msgstr "" "recreării unui index MyISAM (în timpul operațiunilor REPAIR TABLE, ALTER " "TABLE, sau LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Mărimea maximă pentru fișierele temporare la crearea indexului" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6928,11 +7039,11 @@ msgstr "" "fi mai mare decît dacă s-ar utiliza cache-ul de chei. Se preferă utilizarea " "metodei „cache chei”." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Repară firele de execuție" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6941,11 +7052,11 @@ msgstr "" "create în paralel (fiecare index în firul de execuție propriu) în tipul " "operațiunii de reparare prin procesul de sortare." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Sortare Mărime tampon" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6953,11 +7064,11 @@ msgstr "" "Tamponul alocat la sortarea indexurilor MyISAM în timpul unei operațiuni " "REPAIR TABLE sau la crearea indexurilor cu CREATE INDEX sau ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Dimensiune cache index" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6966,11 +7077,11 @@ msgstr "" "32MB. Memoria alocată aici este folosită doar pentru cache-uirea paginilor " "index." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Dimensiune cache înregistrare" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 #, fuzzy msgid "" "This is the amount of memory allocated to the record cache used to cache " @@ -6982,11 +7093,11 @@ msgstr "" "este folosită pentru cache-uirea schimbărilor la datele de manipulare (.xtd) " "și fișierele row pointer (.xtr)." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Dimensiune cache jurnal" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6994,11 +7105,11 @@ msgstr "" "Cantitatea de memorie alocată pentru cache-ul jurnalului tranzacției, " "utilizat pentru a depozita datele jurnalului. Implicit este 16MO." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Prag fișiere-jurnal" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -7006,11 +7117,11 @@ msgstr "" "Dimensiunea unui log de tranzacții înainte de rollover și un nou log este " "creat. Valoarea implicită este de 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Dimensiune tampon tranzacție" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -7018,12 +7129,12 @@ msgstr "" "Dimensiunea tamponului global pentru jurnale de tranzacţii (engine-ul alocă " "2 tampoane de această dimensiune).Implicit este de 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 #, fuzzy msgid "Checkpoint frequency" msgstr "Frecvența punctelor de control" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -7031,11 +7142,11 @@ msgstr "" "Mărimea datelor scrise în jurnalul tranzacțiilor înaintea efectuării unei " "verificări. Mărimea implicită este 24MO." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Prag pentru jurnalul de date" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -7047,48 +7158,48 @@ msgstr "" "tabelele. Prin urmare, valoarea acestei variabile poate fi marită pentru a " "mări cantitatea totală de date care pot fi stocate în baza de date." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Prag gunoi" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Dimensiune tampon jurnal" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Număr de fișiere-jurnal" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -7096,20 +7207,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Legături" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -7170,14 +7281,14 @@ msgstr "Salvarea datelor din tabel" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Eveniment" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7247,14 +7358,14 @@ msgstr "Tipuri MIME disponibile" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Gazda" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Timp de generare" @@ -7454,21 +7565,12 @@ msgstr "Vizualizare" msgid "Export contents" msgstr "Modul de export" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Deschide fereastră phpMyAdmin nouă" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7565,12 +7667,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Denumire tabel" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Denumirile coloanelor" @@ -7640,100 +7742,82 @@ msgstr "Regim de compatibilitate SQL" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funcție" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Ascunde" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binar" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binar - a nu se edita" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "director de încărcare al serverului Web" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Inserare" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, 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:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "și apoi" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Inserează ca o nouă linie" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 #, fuzzy msgid "Show insert query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Revenire" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Adaugă o nouă înregistrare" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Înapoi la această pagină" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Editează rîndul următor" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Valoare" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rînd inserat: %1$d" @@ -7750,36 +7834,36 @@ msgstr "Nici unul(a)" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Vin" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Trimite" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Sigur doriți să " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Nici o schimbare" @@ -7992,93 +8076,93 @@ msgstr "Personalizează cadrul principal" msgid "This format has no options" msgstr "Acest format nu are opțiuni" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Nu este bine" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "E bine" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Activat" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Facilități generale" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Arată facilitățile" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Creare PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Arată comentariile coloanei" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Transformare navigator" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Parcurgeti documentatia pentru modul de updatare a Column_comments Table" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Comandă SQL salvată" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Istoric SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "Nu există descriere" @@ -8086,7 +8170,7 @@ msgstr "Nu există descriere" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Schimbați sau reconfigurați server-ul master" @@ -8101,13 +8185,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Nume utilizator" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -8120,7 +8204,7 @@ msgid "Slave status" msgstr "Stare sclav" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variabil" @@ -8134,38 +8218,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Oricare utilizator" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Utilizare cîmp text" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Oricare gazdă" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Local" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Această gazdă" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Utilizare tabel gazde" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8181,7 +8265,7 @@ msgstr "Generează parolă" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8214,92 +8298,93 @@ msgstr "" "Una sau mai multe erori au apărut în timpul procesării cererii " "dumneavoastră:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Editează evenimentul" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Eroare în procesarea cererii" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detalii" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Tip eveniment" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Tip eveniment" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Schimbați în %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Execută la" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Execută fiecare" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Începutul" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Sfârșitul" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Inserări complete" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Trebuie să introduceți un nume de eveniment" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Trebuie să introduceți o valoare internă validă pentru eveniment." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Trebuie să introduceți un timp valid de execuție pentru eveniment." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Trebuie să introduceți un tip valid pentru eveniment." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 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:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Nou" @@ -8334,7 +8419,7 @@ msgstr "" "evita orice problemă." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -8356,79 +8441,79 @@ msgstr "Tabelul %s a fost aruncat" msgid "Routine %1$s has been created." msgstr "Tabelul %1$s a fost creat." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Regim de redactare" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Legături directe" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Lungime/Setare" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Adăugați parametru" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Ștergeți ultimul parametru" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Tipul întors" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Lungime/Setare" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opțiuni tabel" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Este determinist" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Tip de securitate" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "Acces date SQL" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Trebuie să introduceți un nume de rutină" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Direcție invalidă \"%s\" dată pentru parametru." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8436,20 +8521,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:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Trebuie să introduceți o definiție a rutinei." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8457,18 +8542,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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Rezultatele execuției rutinei %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Executați rutina" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Parametrii rutinei" @@ -8488,44 +8573,44 @@ msgstr "Tabelul %s a fost aruncat" msgid "Trigger %1$s has been created." msgstr "Tabelul %1$s a fost creat." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new server" msgid "Edit trigger" msgstr "Adaugă un server nou" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Declanșatori" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Timp" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Denumire de tabel nevalidă" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8627,7 +8712,7 @@ msgstr "Nu există evenimente de afișat." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8637,7 +8722,7 @@ msgstr "Tabelul „%s” nu există!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8645,7 +8730,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Configureaza coordonatelepentru tabelul %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8657,27 +8742,27 @@ msgstr "Schema bazei de date \"%s\" - Pagina %s" msgid "This page does not contain any tables!" msgstr "Această pagină nu conține nicio tabelă!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Schema relațională" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Sumar" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Proprietăți" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8795,7 +8880,7 @@ msgstr "Limbă necunoscută: %1$s." msgid "Current Server" msgstr "Server Curent" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Baza de date sursă" @@ -8814,7 +8899,7 @@ msgstr "Server Web" msgid "Difference" msgstr "Diferență" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Baza de date țintă" @@ -8833,7 +8918,7 @@ msgstr "Execută interogare/interogări SQL pe serverul %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" @@ -8845,11 +8930,11 @@ msgstr "Calendar" msgid "Columns" msgstr "Denumirile coloanelor" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" @@ -8943,7 +9028,7 @@ msgstr "" "Validatorul SQL nu poate fi inițializat. Verificați dacă e instalată " "extesnsia necesară PHP, așa cum e descris în %sdocumentation%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8976,8 +9061,8 @@ msgstr "" "backslash, escape sau ghilimele, folosind formatul: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Index" @@ -9031,13 +9116,13 @@ msgstr "Nici unul(a)" msgid "As defined:" msgstr "Conform definiției:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primar" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Tot textul" @@ -9051,20 +9136,20 @@ msgstr "" msgid "after %s" msgstr "După %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, 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:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Trebuie să adăugați cel puțin un cîmp." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Motor de stocare" @@ -9072,45 +9157,6 @@ msgstr "Motor de stocare" msgid "PARTITION definition" msgstr "Definiție PARTIȚIE" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Caută" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Selectează cîmpurile (cel puțin unul):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Adaugă condiție de căutare (parte a comenzii \"where\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Numărul de înregistrări pe pagină" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Ordine de afișare:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Caută printre valori necunoscute" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Execută o interogare prin exemplu (metacaracter: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9300,13 +9346,13 @@ msgstr "" msgid "Manage your settings" msgstr "Facilități generale" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Modificările au fost salvate" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9319,7 +9365,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9350,7 +9396,7 @@ msgstr "MySQL connection collation" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9376,9 +9422,9 @@ msgstr "Versiune server" msgid "Protocol version" msgstr "Versiune protocol" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Utilizator" @@ -9512,137 +9558,137 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Nu sînt baze de date" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "nume tabel" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "nume tabel" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Creare tabel" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Selectați baza de date" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Arată/ascunde meniul stîng" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Salvează poziție" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Creare relație" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Reîncarcă" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Ajutor" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Legături unghiulare" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Legături directe" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Aliniere la grilă" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Comutare mare/mică" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "Pentru a alege relația, faceți clic:" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Trimite comanda" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Mutare meniu" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Arată/ascunde toate" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Arată/ascunde tabele fără realție" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Număr de tabele" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Șterge relația" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Operator relațional" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Cu excepția" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "subinterogare" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Redenumire tabel la" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Nume nou" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Agregat" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9656,59 +9702,59 @@ msgstr "Pagina a fost creată" msgid "Page creation failed" msgstr "Pagina nu a putut fi creată" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Pagină" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Import fișiere" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Exportă/Importă la scală" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Creează un nou index" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nume utilizator" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Exportă/Importă la scală" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "recomandat" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Eroare: relația deja există." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Eroare: Relația nu a fost adăugată." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Relație internă adăugată" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relație ștearsă" @@ -9720,88 +9766,88 @@ msgstr "Eroare la salvarea coordonatelor pentru Designer." msgid "Modifications have been saved" msgstr "Modificările au fost salvate" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Nu se pot salva setările, formularul trimis conține erori" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Nu s-a putut importa configurația" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Configurația conține date incorecte pentru anumite câmpuri." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Doriți să importați setările rămase?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Salvat pe: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importați din fișier" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Importați din depozitul browser-ului" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" "Setările vor fi importate din depozitul local al browser-ului dumneavoastră." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Nu aveți setări salvate!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Această facilitate nu este suportată de browser-ul dumneavoastră web" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Import fișiere" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Toate" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabelul nu a fost găsit sau nu este stabilit în %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9811,17 +9857,17 @@ msgstr "Tabelul „%s” nu există!" msgid "Select binary log to view" msgstr "Selectați jurnalul binar pentru vizualizare" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Fișiere" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Truncare comenzi afișate" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Afișare comandă întreagă" @@ -9837,7 +9883,7 @@ msgstr "Poziție" msgid "Original position" msgstr "Pozitie originală" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informație" @@ -9845,7 +9891,7 @@ msgstr "Informație" msgid "Character Sets and Collations" msgstr "Set de caractere și gestiunea acestora" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9854,24 +9900,24 @@ msgstr[0] "%s baza(ele) de data(e) au fost aruncate." msgstr[1] "%s baza(ele) de data(e) au fost aruncate." msgstr[2] "%s baza(ele) de data(e) au fost aruncate." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statisticile bazelor de date" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Activează statisticile" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9883,161 +9929,161 @@ msgstr "" msgid "Storage Engines" msgstr "Motoare de stocare" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Vizualizarea schemei bazei de date" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Începe" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "Persană" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Dezactivat" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Include toate privilegiile, excluzand GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Permite alterarea structurii la tabelele deja existente." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Permite alterarea și aruncarea rutinelor stocate." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Permite crearea de noi baze de date și tabele." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Permite crearea rutinelor stocate." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Permite crearea de noi tabele." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Permite crearea de tabele temporare." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Permite crearea noilor viziuni." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Permite stergere de date." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Permite stergerea unei baze de date sau a unor tabele." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Permite aruncarea a unei baze de date." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Permite configurarea evenimentelor pentru planificatorul de evenimente" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Permite executarea rutinelor stocate." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" "Permite importarea datelor in fisiere și exportarea acestora din fisiere." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite adaugarea utilizatorilor și drepturilor fara reincarcarea tabelelor " "de drepturi." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Permite crearea și stergerea indexurilor." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Permite inserarea și înlocuirea datelor." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Permite blocarea tabelelor din firul curent de execuție." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Limitează numărul de noi conexiuni care pot fi deschise de utilizator într-o " "oră." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Limiteaza numarul de comenzi care pot fi trimise de utilizator către server " "într-o oră." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -10045,61 +10091,61 @@ msgstr "" "Limitează numărul de comenzi pentru schimbarea vreunui tabel sau vreunei " "baze de date executabile de utilizator într-o oră." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Permite vizualizarea proceselor tuturor utilizatorilor" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Nu are efect în această versiune MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite reîncărcarea setărilor de server și golirea memoriei cache a " "serverului." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite utilizatorului de a interoga locația slave/master." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Necesară pentru „slave replication”." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Permite citirea datelor." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Permite accesul la lista completă a bazelor de date." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite executarea interogărilor SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Permite oprirea serverului." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -10109,176 +10155,176 @@ msgstr "" "pentru majoritatea operațiunilor administrative, cum ar fi setarea " "variabilelor globale sau oprirea firelor de execuție a altor utilizatori." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Permite crearea și eliminarea declanșatorilor" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Permite schimbarea datelor." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Fără drepturi." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nici unul(a)" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Drepturi specifice de tabele" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Important: numele drepturilor de acces MySQL apar în engleză" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administrare" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Privilegii globale" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Drepturi specifice bazei de date" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Limitare de resurse" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Observație: Prin stabilirea acestor opțiuni la 0 (zero) se elimină " "restricția." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Informații de autentificare" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Nu schimbați parola" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nu s-a găsit nici un utilizator." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Utilizatorul %s există deja!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Ați adăugat un nou utilizator." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Ați actualizat privilegiile pentru %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Drepturile tale au fost revocate pentru %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Parola pentru %s a fost schimbată cu succes." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Șterge %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Nici un utilizator ales pentru ștergere!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Reîncărcarea drepturilor" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Utilizatorii selectați au fost eliminați." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Drepturile au fost reîncarcate cu succes." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Editează drepturile de acces" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Revocare" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Exportă" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Oricare" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Drepturi de acces" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Drepturi de acces" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Descriere utilizator" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Permite" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Eliminarea utilizatorilor selectați" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10291,134 +10337,134 @@ msgstr "" "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: server_privileges.php:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Drepturi specifice coloanei" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Adaugă drepturi la baza de date următoare" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Adaugă drepturi la următorul tabel" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Schimbă informațiile de autentificare/Copiază utilizator" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Creează un utilizator nou cu aceleași privilegii și..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... menține cel vechi." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... șterge cel vechi din tabelul de utilizatori." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Bază de date pentru utilizatorul" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verifică privilegiile pentru baza de date "%s"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Utilizatorul are acces la "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "specific bazei de date" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "Metacaracter" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "Vizualizarea %s a fost eliminată" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Eroare necunoscută" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Nu s-a putut realiza conexiunea la master %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Nu s-a putut citi poziția jurnalului master. Posibilă eroare de permisiuni " "pe master." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Nu s-a putut schimba master-ul" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Server master schimbat cu succes în %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Acest server este configurat ca master într-un proces de replicare." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Afișați status master" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Afișați sclavi conectați" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10427,11 +10473,11 @@ msgstr "" "Acest server nu este configurat ca master într-un proces de replicare. " "Doriți să îl configurați?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Configurare master" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10445,20 +10491,20 @@ msgstr "" "date), fie a ignora toate bazele de date implicit și a permite doar " "anumitora să fie duplicate. Va rugăm sa selectați modul:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Selectați baza de date" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10466,7 +10512,7 @@ msgstr "" "Acum, adăugați următoarele linii la sfârșitul secțiunii [mysqld] în fișierul " "dumneavoastră my.cnf, după care vă rugăm să restartați server-ul MySQL." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10476,99 +10522,99 @@ msgstr "" "ar trebui să vedeți un mesaj care vă informează că acest server este " "configurat ca master" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Thread-ul SQL slave nu rulează!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Thread-ul IO slave nu rulează!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Server-ul este configurat ca slave într-un proces de replicare. Doriți să:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Tot textul" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full stop" msgstr "Tot textul" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Numai structura" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Numai structura" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Firul de execuție %s a fost oprit cu succes." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10576,151 +10622,151 @@ msgstr "" "phpMyAdmin n-a reusit sa opreasca firul de executie %s. Probabil a fost " "deja oprit." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Gestionar" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Cache interogări" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Fire" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Date temporare" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Inserări întîrziate" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Cache cheie" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Joncțiuni" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Sortare" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Coordonator tranzacție" -#: server_status.php:628 +#: server_status.php:627 #, fuzzy msgid "Flush (close) all tables" msgstr "Aruncă (închide) toate tabelele" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Afișează tabele deschise" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Afișează gazde sclavi" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Afișează stare sclav" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Reinițializare cache interogare" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Informații rulare" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Reîncarcă" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Fișiere" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nu schimbați parola" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Afișează tabele deschise" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Afișează tabele deschise" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Legături" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Tip interogare" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Introduction" msgid "Instructions" msgstr "Introducere" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10728,118 +10774,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Comenzi" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 #, fuzzy msgid "Replication status" msgstr "Replicare" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Recepționat" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Trimis" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "conexiuni concurente (maxim)" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Încercări nereușite" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Întrerupt" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Comanda" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Comprimă conexiunea la serverul MySQL" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10847,11 +10893,11 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Cîte fișiere temporare a creat mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10859,68 +10905,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:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10928,7 +10974,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10936,42 +10982,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 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:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Numărul de pagini actualmente murdare." -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Numărul de pagini libere." -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10979,33 +11025,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -11014,248 +11060,248 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Numărul de pagini create." -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Numărul de pagini citite." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Numărul de pagini scrise." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Numărul de rînduri citite din tabelele InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Numărul de rînduri actualizate în tabelele InnoDB." -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Formatul fișierului importat" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Numărul de tabele ce sînt deschise." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Numărul de nimeriri în cache." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Numărul de interogări adăugate la cache." -#: server_status.php:1408 +#: 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 " @@ -11263,99 +11309,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Numărul de interogări înregistrate în cache." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Numărul total de blocuri în cache-ul interogării." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Numărul de rînduri sortate." -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11363,18 +11409,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Numărul de conexiuni deschise momentan." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11382,74 +11428,74 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Monitorizarea nu este activată" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Dum" -#: server_status.php:1588 +#: server_status.php:1587 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Introducere" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Adaugă %s cîmp(uri)" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Reîncarcă" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adaugă/șterge coloane" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 #, fuzzy #| msgid "Introduction" msgid "Monitor Instructions" msgstr "Introducere" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11458,7 +11504,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11466,18 +11512,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11485,11 +11531,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11497,93 +11543,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Redenumire bază de date în" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Selectează tabele" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Denumire de tabel nevalidă" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Adaugă un server nou" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "Comanda SQL" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Statisticile rîndului" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Selectează tabele" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Tip interogare" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11592,7 +11638,7 @@ msgstr[0] "pe secundă" msgstr[1] "pe secundă" msgstr[2] "pe secundă" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11601,134 +11647,134 @@ msgstr[0] "în folosință" msgstr[1] "în folosință" msgstr[2] "în folosință" -#: server_synchronize.php:96 +#: server_synchronize.php:99 #, fuzzy msgid "Could not connect to the source" msgstr "Comprimă conexiunea la serverul MySQL" -#: server_synchronize.php:99 +#: server_synchronize.php:102 #, fuzzy msgid "Could not connect to the target" msgstr "Comprimă conexiunea la serverul MySQL" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 #, fuzzy msgid "Structure Difference" msgstr "Structură pentru vizualizare" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 #, fuzzy msgid "Data Difference" msgstr "Structură pentru vizualizare" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Faceți modificările selectate" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "Comanda SQL" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy msgid "Current connection" msgstr "Comprimă conexiunea" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Variabile și configurări de server" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Valoare sesiune" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Valoare globală" @@ -12023,182 +12069,182 @@ msgstr "" msgid "Wrong data" msgstr "Nu sînt baze de date" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Sigur doriți să " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Afișare ca și cod PHP" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validează SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Rezultat SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Generat de" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleme cu indexul tabelului `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Etichetă" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabelul %1$s a fost alterat cu succes" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Utilizatorii selectați au fost eliminați." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Denumirile coloanelor" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Motoare" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PiO" -#: tbl_chart.php:93 +#: tbl_chart.php:96 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Împachetat" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Titlu raport" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "Comanda SQL" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Valoare" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Valoare" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Tabelul %s există deja!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Tabelul %1$s a fost creat." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Vizualizarea schemei tabelului" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Adaugă/șterge coloane" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Număr de fișiere-jurnal" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Trimite" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12216,31 +12262,31 @@ msgstr "Nu puteți redenumi index-ul la un nume PRIMARY!" msgid "No index parts defined!" msgstr "Nu sînt definite părți din index!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Regim de redactare" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Nume index :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(Numele „PRIMARY” trebuie să fie numai la cheia primară!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Tip index :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Adaugă la coloana(ele) index  %s " @@ -12263,158 +12309,158 @@ msgstr "Tabelul %s a fost mutat la %s." msgid "Table %s has been copied to %s." msgstr "Tabelul %s a fost copiat la %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Numele de tabel este gol!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Alterare „ordonare tabel după”" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(individual)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Mută tabelul la (bază_de_date.tabel):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Opțiuni tabel" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Redenumire tabel la" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Copiază tabelul la (bază_de_date.tabel):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Schimbă la tabela copiată" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Administrare tabel" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmentare tabel" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabelul %s a fost curățat" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Curățarea tabelului (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy msgid "Delete data or table" msgstr "Șterge datele urmărite din acest tabel" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Nu sînt baze de date" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Întreținerea partiției" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partiția %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analizează" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Verifică" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimizează" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Reconstruiește" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Repară" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Elimină partiționarea" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Verificarea integrității referinței:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Arată tabelele" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Utilizare spațiu" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efectiv" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Statisticile rîndului" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamic" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Lungime linie" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Mărime rând" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relații interne" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12422,118 +12468,118 @@ msgstr "" "Nu este necesară o relație internă atunci cînd există o cheie externă " "corespondentă." -#: tbl_relation.php:412 +#: tbl_relation.php:415 #, fuzzy msgid "Foreign key constraint" msgstr "Constrângeri ale cheii străine" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Răsfoiește valori distincte" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Nici unul/una" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabelul %s a fost aruncat" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "A fost adăugată o cheie primară la %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "A fost adăugat un index la %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Arată informația PHP" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add columns" msgid "Move columns" msgstr "Adaugă coloane" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Vizualizare imprimare" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Vizualizare relațională" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Propune structura de tabele" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Adaugă %s cîmp(uri)" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "La sfîrșitul tabelului" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "La începutul tabelului" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "După %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "partiționat" @@ -12690,73 +12736,38 @@ msgstr "" msgid "Create version" msgstr "Creare relație" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Execută o interogare prin exemplu (metacaracter: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "Comanda SQL" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -#| msgid "PHP extension to use" -msgid "How to use" -msgstr "Extensia PHP de utilizat" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Resetare" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Tipuri MIME disponibile" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Tipurile MIME enumerate cursiv nu au o funcție de transformare separată" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Informații disponibile" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Descriere" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profilul a fost actualizat." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Denumire VIZIUNE" diff --git a/po/ru.po b/po/ru.po index b09b626429..517f1a3eb0 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,33 +3,33 @@ 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-04 13:49+0200\n" -"PO-Revision-Date: 2012-05-30 15:40+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\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" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Показать все" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Номер страницы:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "родительское окно или ваш браузер блокирует межоконные обновления из-за " "настроек безопасности." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "OK" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Имя индекса" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Описание" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Использовать это значение" @@ -108,88 +108,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "База данных %1$s была создана." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Комментарий к базе данных: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Комментарий к таблице" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Поле" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "По умолчанию" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Связи" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Комментарии" @@ -198,14 +199,14 @@ msgstr "Комментарии" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Нет" @@ -218,120 +219,120 @@ msgstr "Нет" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Да" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Отобразить дамп (схему) базы данных" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Таблиц в базе данных не обнаружено." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Выделить все" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Снять выделение" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Не указано имя базы данных!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "База данных %1$s переименована в %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "База данных %1$s скопирована в %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Переименовать базу данных в" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Удалить базу данных" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "База данных %s была удалена." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Удалить базу данных (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Скопировать базу данных в" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Только структура" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Структура и данные" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Только данные" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Перед копированием создать базу данных (CREATE DATABASE)" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Добавить %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Добавить AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Добавить ограничения" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Переключиться на скопированную базу данных" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Сравнение" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -340,59 +341,59 @@ msgstr "" "Некоторые из расширенных возможностей phpMyAdmin недоступны. Для определения " "причины нажмите %sздесь%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Редакция или экспорт схемы связей" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Таблица" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Строки" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Размер" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "используется" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Создание" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Последнее обновление" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Последняя проверка" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -405,117 +406,117 @@ msgid "You have to choose at least one column to display" msgstr "" "Для выполнения запроса, должен быть выбран отображаемый столбец/столбцы" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Переключиться на %sвизуальный составитель запросов%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Отсортировать" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "По возрастанию" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "По убыванию" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Показать" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Критерий" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Вставить" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "И" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Удалить" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Или" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Изменить" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Добавить/удалить строки критериея" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Добавить/удалить столбцы" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Дополнить запрос" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Использовать таблицы" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запрос к базе данных %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Выполнить запрос" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "В доступе отказано" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "любое из слов" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "все слова" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "точное соответствие" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "регулярное выражение" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Результаты поиска по \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, php-format msgid "%1$s match inside table %2$s" msgid_plural "%1$s matches inside table %2$s" @@ -523,30 +524,30 @@ msgstr[0] "%1$s соответствие в таблице %2$s" msgstr[1] "%1$s соответствия в таблице %2$s" msgstr[2] "%1$s соответствий в таблице %2$s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Удалить соответствия для таблицы %s?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -554,63 +555,63 @@ msgstr[0] "Итого: %s соответствие" msgstr[1] "Итого: %s соответствия" msgstr[2] "Итого: %s соответствий" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Поиск в базе данных" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Слова или значения для поиска (групповой символ: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Искать:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Слова разделяются пробелом (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "В таблицах:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "В поле:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Таблиц в базе данных не найдено" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "неизвестно" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Таблица %s была очищена" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Представление %s было удалено" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Таблица %s была удалена" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Слежение включено." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Слежение выключено." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -619,185 +620,186 @@ msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Репликация" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Всего" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "С отмеченными:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Отметить все" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Версия для печати" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Очистить" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Удалить" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Проверить таблицу" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Оптимизировать таблицу" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Восстановить таблицу" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Анализ таблицы" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Добавить префикс таблицы" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Заменить префикс таблицы" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Копировать таблицу с префиксом" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Словарь данных" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Отслеживаемые таблицы" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "База данных" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Последняя версия" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Создан" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Обновлён" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Состояние" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Действие" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Удалить данные слежения за таблицей" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "включено" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "выключено" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Версии" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Отчёт слежения" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Обзор структуры" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Неотслеживаемые таблицы" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Отслеживать таблицу" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Журнал базы данных" @@ -809,16 +811,16 @@ msgstr "Ошибочный тип!" msgid "Selected export type has to be saved in file!" msgstr "Выбранный тип экспорта возможен только в файл!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Ошибочные параметры!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Для сохранения файла %s недостаточно дискового пространства." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -826,12 +828,12 @@ msgstr "" "Файл %s уже существует на сервере, измените имя или включите параметр " "перезаписи." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Не достаточно прав для сохранения файла %s на веб-сервере." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп был сохранен в файл %s." @@ -840,86 +842,86 @@ msgstr "Дамп был сохранен в файл %s." msgid "Invalid export type" msgstr "Ошибочный тип экспорта" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Значение для поля \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Используйте в качестве основного слоя OpenStreetMaps" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Геометрия" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Точка" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Точка %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Добавить точку" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Линия" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Внешний контур" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Внутренний контур" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Добавить линию" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Добавить внутренний контур" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Многоугольник" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Добавить многоугольник" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Добавить геометрии" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Вывод" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -927,7 +929,7 @@ msgstr "" "Из поля функции выберите \"GeomFromText\" и вставьте строку ниже, как " "значение" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -936,21 +938,21 @@ msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Отображение закладки" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Закладка удалена." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Ошибка при чтении файла" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -960,7 +962,7 @@ msgstr "" "может быть импортирован. Поддержка данного метода еще не реализована, либо " "отключена при конфигурировании." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -970,28 +972,28 @@ msgstr "" "импортируемого файла превышает максимально допустимый, заданный в настройках " "PHP. Смотрите [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Без необходимой библиотеки невозможна конвертация кодировки файла" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Отсутствуют модули импорта. Проверьте содержимое установленной копии " "phpMyAdmin!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Закладка "%s" создана" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импорт успешно завершен, запросов выполнено: %d." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1000,7 +1002,7 @@ msgstr "" "его выбрав тот же файл, и процесс продолжится с того места на котором " "остановился." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1009,23 +1011,23 @@ msgstr "" "означает, что phpMyAdmin не сможет завершить процесс импорта до тех пор, " "пока не будет увеличено ограничение времени выполнения php-сценариев." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Назад" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "Для работы phpMyAdmin нужен браузер с поддержкой фреймов." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Команда \"DROP DATABASE\" (удалить базу данных) - отключена." @@ -1034,7 +1036,7 @@ msgstr "Команда \"DROP DATABASE\" (удалить базу данных) msgid "Do you really want to execute \"%s\"?" msgstr "Вы действительно хотите выполнить запрос \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "База данных будет полностью УДАЛЕНА!" @@ -1074,7 +1076,7 @@ msgstr "Добавить индекс" msgid "Edit Index" msgstr "Редактировать индекс" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Добавить %d поле(я) к индексу" @@ -1092,16 +1094,16 @@ msgstr "Пустое имя хоста!" msgid "The user name is empty!" msgstr "Не задано имя пользователя!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Пароль не задан!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Некорректное подтверждение пароля!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Добавить пользователя" @@ -1118,23 +1120,24 @@ msgstr "Удаление выбранных пользователей" msgid "Close" msgstr "Закрыть" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Изменить" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Графический вывод трафика" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Графический вывод соединений и процессов" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Графический вывод запросов" @@ -1144,24 +1147,24 @@ msgstr "Статические данные" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Всего" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Другое" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1181,7 +1184,7 @@ msgstr "Трафик сервера (в KiB)" msgid "Connections since last refresh" msgstr "Соединений с момента последнего обновления" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Процессы" @@ -1199,7 +1202,7 @@ msgstr "Вопросов с момента последнего обновлен msgid "Questions (executed statements by the server)" msgstr "Вопросы (выражения выполненные сервером)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Статистика запросов" @@ -1244,14 +1247,14 @@ msgid "System swap" msgstr "Система подкачки" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "КБ" @@ -1303,32 +1306,32 @@ msgstr "Отослано байт" msgid "Bytes received" msgstr "Принято байт" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Соединения" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Байт" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "ЭБ" @@ -1342,11 +1345,11 @@ msgstr "%d таблиц(а)" msgid "Questions" msgstr "Вопросы" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Настройки" @@ -1366,11 +1369,11 @@ msgstr "Добавить график к сетке" msgid "Please add at least one variable to the series" msgstr "Пожалуйста, добавьте в серию хотя бы одну переменную" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Нет" @@ -1471,7 +1474,7 @@ msgstr "Изменить настройки" msgid "Current settings" msgstr "Текущие настройки" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Заголовок графика" @@ -1558,7 +1561,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Время" @@ -1652,10 +1655,10 @@ msgstr "" "Ошибка построения сетки графика из импортированной конфигурации. Сброшено на " "изначальную конфигурацию..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1703,9 +1706,9 @@ msgstr "Использованная переменная / формула" msgid "Test" msgstr "Тест" -#: 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 +#: 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 msgid "Cancel" msgstr "Отмена" @@ -1717,11 +1720,11 @@ msgstr "Загрузка" msgid "Processing Request" msgstr "Обработка запроса" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Ошибка при обработке запроса" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Ни одна база данных не выбрана." @@ -1733,9 +1736,9 @@ msgstr "Удаление столбца" msgid "Adding Primary Key" msgstr "Добавление первичного ключа" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1775,15 +1778,15 @@ msgstr "Скрыть индексы" msgid "Show indexes" msgstr "Отображать индексы" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Проверка внешних ключей:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Включено)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Отключено)" @@ -1811,7 +1814,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "Редактор ENUM/SET" @@ -1851,8 +1854,8 @@ msgstr "Отобразить поле запроса" msgid "No rows selected" msgstr "Для совершения действия необходимо выбрать одну или несколько строк" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Изменить" @@ -1860,18 +1863,18 @@ msgstr "Изменить" msgid "Query execution time" msgstr "Время выполнения запроса" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "Число %d не является правильным номером строки." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Сохранить" @@ -1883,7 +1886,7 @@ msgstr "Скрыть параметры поиска" msgid "Show search criteria" msgstr "Отобразить параметры поиска" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Поиск с приближением" @@ -1900,8 +1903,6 @@ 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 "" "Кликните ссылку сброса увеличения для возвращения к исходному состоянию." @@ -1931,12 +1932,12 @@ msgstr "Результаты запроса" msgid "Data point content" msgstr "Содержание точки данных" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Игнорировать" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Копировать" @@ -1958,7 +1959,7 @@ msgstr "" "Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) " "индексом" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Выбор отображаемого столбца" @@ -2052,7 +2053,7 @@ msgstr "Генерировать" msgid "Change Password" msgstr "Изменить пароль" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Ещё" @@ -2143,63 +2144,63 @@ msgid "December" msgstr "Декабрь" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Дек" @@ -2237,32 +2238,32 @@ msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Сб" @@ -2379,16 +2380,16 @@ msgstr "" "Неожиданный символ на строке %1$s. Ожидается символ табуляции, а найден " "\"%2$s\"" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "в секунду" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "в минуту" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "в час" @@ -2411,23 +2412,208 @@ msgstr "" msgid "Font size" msgstr "Размер шрифта" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Сохранить отредактированные данные" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Восстановить порядок столбцов" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Начало" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Предыдущая" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Следующая" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Конец" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Начальная строка" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Количество строк" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Режим" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "горизонтальном" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "горизонтальном (повернутые заголовки)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "вертикальном" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "Заголовки каждые %s строк" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Сортировать по индексу" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Параметры" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Сокращенные тексты" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Полные тексты" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Ссылочный ключ" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Отображение связанного поля" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Показать бинарные данные" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Показать BLOB содержимое" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Показывать бинарные данные в виде HEX значений" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Скрыть преобразование" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Текст (WKT)" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Бинарный (WKB)" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Запись была удалена" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Завершить" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Может быть приблизительно. Смотрите [a@./Documentation." +"html#faq3_11@Documentation]FAQ 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "по запросу" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Отображает строки" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "всего" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Запрос занял %01.4f сек." + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Использование результатов запроса" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Версия для печати (полностью)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Отобразить график" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Визуализация GIS данных" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Создать представление" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Связь не найдена" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" "Слишком большое количество сообщений об ошибках, некоторые из которых не " "отображаются." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Файл не был загружен." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Размер загружаемого файла превышает значение директивы upload_max_filesize " "установленное в конфигурационном файле PHP (php.ini)." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2435,27 +2621,27 @@ msgstr "" "Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, " "определенной в HTML форме." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Загруженный файл был загружен только частично." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Не найден каталог для хранения временных файлов." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Ошибка при попытке записи файла на диск." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Загрузка файла остановлена из-за расширения." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "При время загрузке файла произошла неизвестная ошибка." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2463,26 +2649,39 @@ msgstr "" "Ошибка при перемещении загруженного файла, смотрите [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Ошибка при перемещении загруженного файла." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Невозможно прочесть (переместить) загруженный файл." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Открыть phpMyAdmin в новом окне" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Для полноценной работы необходима поддержка cookies браузером." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "Для полноценной работы необходима поддержка Javascript браузером" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Индексы" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Уникальный" @@ -2495,8 +2694,8 @@ msgstr "Упакован" msgid "Cardinality" msgstr "Уникальных элементов" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Комментарий" @@ -2517,128 +2716,128 @@ msgid "" "removed." msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Базы данных" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Сервер" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Структура" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Вставить" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Операции" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Слежение" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Таблица - пуста!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Пустая база данных!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Запрос по шаблону" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Привилегии" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Процедуры" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "События" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Пользователи" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Синхронизировать" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Бинарный журнал" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Переменные" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Кодировки" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Расширения" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Типы таблиц" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Ошибка" @@ -2666,7 +2865,7 @@ msgstr[0] "Добавлена %1$d строка." msgstr[1] "Добавлено %1$d строки." msgstr[2] "Добавлено %1$d строк." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Ошибка при создании PDF:" @@ -2759,16 +2958,98 @@ 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 +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 +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 +msgid "Value" +msgstr "Значение" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Поиск в таблице" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Редактировать/Вставить" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Выберите поля (не менее одного):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Добавить условия поиска (тело для условия \"WHERE\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Количество строк на странице" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Сортировка:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Использовать данное поле для обозначения каждой точки" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Максимальное количество строк для построения" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Обзор внешних значений" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Добавочный критерий поиска" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Выполнить \"запрос по образцу\" (символ шаблона: \"%\") для двух различных " +"столбцов" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Выполнить \"запрос по образцу\" (групповой символ: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Обзор/Редакция точек" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Как использовать" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "Сбросить увеличение" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Не найден правильный путь к изображениям для темы %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Предпросмотр не доступен." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "Применить" @@ -2787,7 +3068,7 @@ msgstr "Тема %s не найдена!" msgid "Theme path not found for theme %s!" msgstr "Путь к файлам темы %s не найден!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Тема" @@ -3143,13 +3424,13 @@ msgstr "Перечисление, выбор из списка определе msgid "Cannot connect: invalid settings." msgstr "Соединение невозможно! Неверные настройки." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Добро пожаловать в %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3158,7 +3439,7 @@ msgstr "" "Возможная причина - отсутствие файла конфигурации. Для его создания вы " "можете воспользоваться %1$sсценарием установки%2$s." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3174,59 +3455,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Невозможно использование Blowfish из mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Для полноценной работы необходима поддержка Javascript браузером" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "Время сессии истекло. Пожалуйста, войдите заново." -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Авторизация" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Вы можете ввести хост/IP адрес и порт разделенные пробелом." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Сервер:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Пользователь:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Пароль:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Выбор сервера" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Для полноценной работы необходима поддержка cookies браузером." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Вход без пароля запрещен при конфигурации (смотрите AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Отсутствие активности более %s секунд, пожалуйста, авторизуйтесь заново" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Невозможно подключиться к серверу MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Данные для входа не верны. В доступе отказано." @@ -3258,7 +3535,7 @@ msgstr "общий" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Таблицы" @@ -3270,13 +3547,13 @@ msgstr "Таблицы" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Данные" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Фрагментировано" @@ -3301,19 +3578,11 @@ msgstr "Проверить привилегии для базы данных &qu msgid "Check Privileges" msgstr "Проверить привилегии" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "возможная уязвимость" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "определена числовая клавиша" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Ошибка при чтении конфигурационного файла" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3321,12 +3590,12 @@ msgstr "" "Обычно это означает наличие синтаксических ошибок, пожалуйста, проверьте " "выведенные ниже ошибки." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Невозможно загрузить изначальную конфигурацию из: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3334,208 +3603,194 @@ msgstr "" "Директива [code]$cfg['PmaAbsoluteUri'][/code] ДОЛЖНА быть установлена в " "конфигурационном файле!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Неверный индекс сервера: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в " "конфигурационном файле phpMyAdmin." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" "В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Необходимо обновить %s до версии %s или выше." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "попытка перезаписи GLOBALS" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "возможная уязвимость" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "определена числовая клавиша" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Максимальный размер: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Документация" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-запрос" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "Ответ MySQL: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Невозможно соединиться с SQL валидатором!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Анализ SQL запроса" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Убрать анализ SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Убрать PHP-код" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Обновить" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Убрать проверку синтаксиса SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Проверка синтаксиса" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Быстрое редактирование запроса" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Быстрая правка" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Профилирование" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Вс" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y г., %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дней, %s часов, %s минут и %s секунд" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Отсутствующий параметр:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Начало" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Предыдущая" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Следующая" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Конец" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Перейти к базе данных "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Работа параметра "%s" подвержена ошибке, описание смотрите на %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Кликните для переключения" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Обзор вашего компьютера:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Выберите из каталога загрузки сервера %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Установленный каталог загрузки не доступен" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Файлы для загрузки отсутствуют" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Выполнить" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Печать" @@ -3565,8 +3820,8 @@ msgid "Closed" msgstr "Закрыт" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Недоступно" @@ -3707,9 +3962,9 @@ msgstr "Восстановить изначальное значение" msgid "Allow users to customize this value" msgstr "Разрешить пользователям изменять данное значение" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Сбросить" @@ -3934,10 +4189,6 @@ msgstr "Спрятать действия над структурой табли msgid "Show binary contents as HEX by default" msgstr "Показывать двоичные данные по умолчанию в шестнадцатеричном виде (HEX)" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Показывать бинарные данные в виде HEX значений" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3997,7 +4248,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Максимальное время выполнения" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Сохранить как файл" @@ -4006,7 +4257,7 @@ msgid "Character set of the file" msgstr "Кодировка файла" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Формат" @@ -4110,7 +4361,7 @@ msgid "MIME type" msgstr "MIME-тип" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Связи" @@ -5725,9 +5976,9 @@ msgstr "Требуется подключенный SQL валидатор" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Пароль" @@ -6024,32 +6275,24 @@ msgstr "Пожалуйста, проверьте привилегии катал msgid "Details..." msgstr "Детали..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Может быть приблизительно. Смотрите [a@./Documentation." -"html#faq3_11@Documentation]FAQ 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Ошибка при указании соединения для controluser в конфигурации." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Изменить пароль" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Без пароля" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Подтверждение" @@ -6070,22 +6313,22 @@ msgstr "Создать базу данных" msgid "Create" msgstr "Создать" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Нет привилегий" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Имя" @@ -6244,25 +6487,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Изменение кодировки:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s из %2$s ветки" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "нет ветки" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Git ревизия" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "отправлено %1$s, %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "создано %1$s, %2$s" @@ -6379,173 +6622,27 @@ msgstr "Параметры формата:" msgid "Language" msgstr "Язык" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Сохранить отредактированные данные" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Восстановить порядок столбцов" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Начальная строка" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Количество строк" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Режим" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "горизонтальном" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "горизонтальном (повернутые заголовки)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "вертикальном" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every" -msgid "Headers every %s rows" -msgstr "Заголовки каждые" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Сортировать по индексу" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Параметры" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Сокращенные тексты" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Полные тексты" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Ссылочный ключ" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Отображение связанного поля" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Показать бинарные данные" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Показать BLOB содержимое" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Скрыть преобразование" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Текст (WKT)" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Бинарный (WKB)" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Запись была удалена" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Завершить" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "по запросу" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Отображает строки" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "всего" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Запрос занял %01.4f сек." - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Использование результатов запроса" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Версия для печати (полностью)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Отобразить график" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Визуализация GIS данных" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Создать представление" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Связь не найдена" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Информация о версии" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Домашний каталог для данных" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Общая часть пути к каталогу для всех файлов данных InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Файлы данных" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Автоматическое увеличение" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6553,11 +6650,11 @@ msgstr "" "Размер (в мегабайтах) автоматического увеличения файла данных при " "переполнении табличной области." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Размер буферного пула" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6565,79 +6662,79 @@ msgstr "" "Размер буфера памяти, который InnoDB использует для кеширования данных и " "индексов своих таблиц." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Буферный пул" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Состояние InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Использование" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "страниц" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Чистых страниц" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Грязных страниц" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Страниц с данными" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Страниц к очистке" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Занятых страниц" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Блокированных страниц" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Активность" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Запросы на чтение" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Запросы на запись" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Пропуски при чтении" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Ожидание очистки" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Пропуски при чтении, в %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Ожидание очистки, в %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Размер указателя в файле данных" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6646,11 +6743,11 @@ msgstr "" "TABLE) типа MyISAM, с неустановленным параметром максимального числа строк " "(MAX_ROWS)." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Режим автоматического восстановления" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6658,11 +6755,11 @@ msgstr "" "Режим автоматического восстановления таблиц после сбоя. Устанавливается " "параметром --myisam-recover, при запуске сервера." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Максимальный размер временных индексных файлов" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6672,11 +6769,11 @@ msgstr "" "восстановления индекса (при выполнении команд REPAIR TABLE, ALTER TABLE, или " "LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Максимальный размер временного файла при создании индекса" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6687,11 +6784,11 @@ msgstr "" "индекса, то предпочтение отдается менее быстрому, но более надежному методу " "кеширования индекса." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Потоков восстановления" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6700,11 +6797,11 @@ msgstr "" "(каждый индекс в своем потоке) во время процесса восстановления с помощью " "сортировки (Repair by sorting)." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Размер буфера сортировки" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6713,11 +6810,11 @@ msgstr "" "REPAIR TABLE или для создания индексов при помощи команд CREATE INDEX или " "ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Размер кеша индекса" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6726,11 +6823,11 @@ msgstr "" "Выделенная здесь память используется только для кеширования индексных " "страниц." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Размер кеша записи" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6740,11 +6837,11 @@ msgstr "" "32MB. Данная память используется для кеширования изменений в файлах хранения " "данных (.xtd) и указателей строк (.xtr)." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Размер кеша журнала" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6752,11 +6849,11 @@ msgstr "" "Объём памяти выделенной для кеширования данных журнала транзакций. " "Изначальное значение 16MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Порог файла журнала" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6764,11 +6861,11 @@ msgstr "" "Размер журнала транзакций до отката, и создания нового журнала. Изначальное " "значение 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Размер буфера транзакций" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6776,11 +6873,11 @@ msgstr "" "Размер глобального буфера журнала транзакций (движок выделяет 2 буфера " "данного размера). Изначальное значение 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Частота проверки" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6788,11 +6885,11 @@ msgstr "" "Объем записанных данных в журнал транзакций, до произведения проверки. " "Изначальное значение 24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Порог журнала данных" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6804,11 +6901,11 @@ msgstr "" "таблицами. Таким образом, значение данной переменной может быть увеличено " "для увеличения общего объема данных, которые могут храниться в базе данных." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Порог захламления" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6816,11 +6913,11 @@ msgstr "" "Процентное соотношение захламления в файле журнала данных до его компоновки. " "Значение между 1 и 99. Изначальное значение 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Размер буфера журнала" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6830,27 +6927,27 @@ msgstr "" "Движок выделяет один буфер на поток, но только если поток требуется для " "записи данных журнала." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Размер возрастания файла данных" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Размер возрастания файлов хранения данных (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Размер возрастания файла строк" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Размер возрастания файлов указателей строк (.xtr)." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Количество файлов журнала" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6862,7 +6959,7 @@ msgstr "" "журналы будут удалены, иначе они будут переименованы и получат следующий " "порядковый номер." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6871,11 +6968,11 @@ msgstr "" "Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице " "PrimeBase XT%s." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Дополнительные ссылки" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "Блог Пола Маккалаха (Paul McCullagh) посвященный PrimeBase XT Blog" @@ -6922,14 +7019,14 @@ msgstr "Дамп данных таблицы" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Событие" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Определение" @@ -6987,14 +7084,14 @@ msgstr "Отобразить MIME типы" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Хост" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Время создания" @@ -7205,21 +7302,12 @@ msgstr "Представления" msgid "Export contents" msgstr "Экспортировать содержимое" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Открыть phpMyAdmin в новом окне" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Данные для визуализации GIS не найдены." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "попытка перезаписи GLOBALS" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." @@ -7318,12 +7406,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Имя таблицы" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Названия столбцов" @@ -7394,93 +7482,77 @@ msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" "Не использовать атрибут AUTO_INCREMENT для нулевых значений" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Функция" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Скрыть" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Двоичный" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "Из-за большого количества данных
    изменение поля невозможно" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Двоичные данные - не редактируются" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "Из каталога загрузки" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Редактировать/Вставить" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Продолжить вставку с %s строки" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "и затем" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Вставить запись" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Вставить в виде новой строки и игнорировать появляющиеся ошибки" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Отобразить запрос вставки" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Вернуться на предыдущую страницу" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Добавить новую запись" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Вернуться к данной странице" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Редактировать следующую строку" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Значение" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" @@ -7495,32 +7567,32 @@ msgstr "Нет" msgid "Convert to Kana" msgstr "Конвертировать в Кану" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "От" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "До" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Выполнить" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Добавить префикс таблицы" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Добавить префикс" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "Вы действительно хотите выполнить данный запрос?" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Нет изменений" @@ -7730,83 +7802,83 @@ msgstr "Обновить фрейм навигации" msgid "This format has no options" msgstr "Для этого формата нет настраиваемых параметров" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Не готово" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Доступно" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Основные возможности связей" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Показать возможности" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Создание PDF-схемы" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Отображать комментарии столбцов" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Преобразование" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Необходимо обновить таблицу column_comments. Детали смотрите в документации." -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Созданные закладки" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "История SQL-запросов" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Недавно использованные таблицы" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Настройки интерфейса часто используемых таблиц" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Пользовательские настройки" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Шаги необходимые для установки дополнительных функций:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Создайте необходимые таблицы с помощью скрипта examples/create_tables." "sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Создайте пользователя pma и предоставьте доступ к этим таблицам." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7814,12 +7886,12 @@ msgstr "" "Подключите дополнительные функции в конфигурационном файле (config.inc." "php), начните с примера в config.sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Перезайдите в phpMyAdmin, чтобы загрузить обновленный конфигурационный файл." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "нет описания" @@ -7827,7 +7899,7 @@ msgstr "нет описания" msgid "Slave configuration" msgstr "Настройка подчиненного сервера" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Изменить, или перенастроить головной сервер" @@ -7841,13 +7913,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Имя пользователя" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Порт" @@ -7860,7 +7932,7 @@ msgid "Slave status" msgstr "Статус Slave" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Переменная" @@ -7876,38 +7948,38 @@ msgstr "" "Только подчиненные сервера запущенные с ключом --report-host=host_name " "видимы в данном списке." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Добавьте подчиненного пользователя репликации" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Любой пользователь" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Использовать текстовое поле" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Любой хост" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Локальный" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Этот хост" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Использовать таблицу хостов" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7923,7 +7995,7 @@ msgstr "Создать пароль" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7954,88 +8026,89 @@ msgstr "Было создано событие %1$s." msgid "One or more errors have occured while processing your request:" msgstr "При обработке вашего запроса были обнаружены ошибки:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Редактировать событие" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Ошибка при обработке запроса" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Детали" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Название события" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Тип события" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Изменить на %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Выполнить в" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Выполнять каждые" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Начало" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Конец" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Сохранить при окончании" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Определитель" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "Определитель должен быть в формате \"username@hostname\"" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Необходимо задать имя события" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Необходимо задать корректный интервал значений для события." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Необходимо задать корректное время выполнения события." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Необходимо задать корректный тип события." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "Вы должны задать определение события." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Новый" @@ -8068,7 +8141,7 @@ msgstr "" "проблем, используйте улучшенное 'mysqli' расширение." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ошибочный тип процедуры: \"%s\"" @@ -8087,69 +8160,69 @@ msgstr "Была изменена процедура %1$s." msgid "Routine %1$s has been created." msgstr "Была создана процедура %1$s." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Изменить процедуру" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Имя процедуры" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Параметры" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Направление" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Длина/значения" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Добавить параметр" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Удалить последний параметр" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Возвращаемый тип" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Вернуть длину/значения" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Вернуть параметры" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Определяющий" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Тип безопасности" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "Доступ к SQL данным" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Необходимо задать имя процедуры" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "\"%s\" является ошибочным параметром." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8157,19 +8230,19 @@ msgstr "" "Вы должны задать длину/значения для параметров процедуры имеющих тип ENUM, " "SET, VARCHAR и VARBINARY." -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "Вы должны задать имя и тип для каждого параметра процедуры." -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "Необходимо задать корректный возвращаемый тип для процедуры." -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Вы должны задать определение процедуры." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8177,18 +8250,18 @@ msgstr[0] "Последним выражением в процедуре был msgstr[1] "Последним выражением в процедуре были затронуты %d строки" msgstr[2] "Последним выражением в процедуре было затронуто %d строк" -#: libraries/rte/rte_routines.lib.php:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Результаты выполнения процедуры %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Выполнить процедуру" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Параметры процедуры" @@ -8206,36 +8279,36 @@ msgstr "Триггер %1$s был изменен." msgid "Trigger %1$s has been created." msgstr "Триггер %1$s был создан." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Редактировать триггер" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Название триггера" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Время" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Необходимо задать имя триггера" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Необходимо задать корректное время выполнения триггера" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Вы должны задать корректное событие для триггера" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Необходимо задать корректное имя таблицы" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Вы должны задать определение триггера." @@ -8319,7 +8392,7 @@ msgstr "Отсутствуют события для отображения." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8328,7 +8401,7 @@ msgstr "Таблица %s не существует!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8336,7 +8409,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Измените координаты таблицы %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8347,27 +8420,27 @@ msgstr "Схема базы данных %s - Страница %s" msgid "This page does not contain any tables!" msgstr "Данная страница не содержит таблиц!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "Ошибка при создании схемы: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Cхема связей" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Содержание" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Атрибуты" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Дополнительно" @@ -8475,7 +8548,7 @@ msgstr "Неизвестный язык: %1$s." msgid "Current Server" msgstr "Текущий сервер" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Источник" @@ -8493,7 +8566,7 @@ msgstr "Удалённый сервер" msgid "Difference" msgstr "Различие" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Целевая база данных" @@ -8512,7 +8585,7 @@ msgstr "Выполнить SQL-запрос(ы) на сервере %s" msgid "Run SQL query/queries on database %s" msgstr "Выполнить SQL-запрос(ы) к базе данных %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Очистить" @@ -8521,11 +8594,11 @@ msgstr "Очистить" msgid "Columns" msgstr "Столбцы" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Создание закладки" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Доступна для всех пользователей" @@ -8620,7 +8693,7 @@ msgstr "" "Проверка синтаксиса SQL не осуществима. Проверьте, установлены ли " "необходимые модули расширений для PHP, описанные в %sдокументации%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "Слежение за %s включено." @@ -8646,8 +8719,8 @@ msgstr "" "формат значений: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Индекс" @@ -8697,13 +8770,13 @@ msgstr "Нет" msgid "As defined:" msgstr "Как определено:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Первичный" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Полнотекстовый" @@ -8716,17 +8789,17 @@ msgstr "первый" msgid "after %s" msgstr "после %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Добавить %s поле(я)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Необходимо добавить хотя бы одно поле." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Тип таблиц" @@ -8734,41 +8807,6 @@ msgstr "Тип таблиц" msgid "PARTITION definition" msgstr "Определение разделов (PARTITION)" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Поиск в таблице" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Выберите поля (не менее одного):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Добавить условия поиска (тело для условия \"WHERE\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Количество строк на странице" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Сортировка:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Обзор внешних значений" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Выполнить \"запрос по образцу\" (групповой символ: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8922,11 +8960,11 @@ msgstr "" msgid "Manage your settings" msgstr "Пользовательские настройки" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Настройки успешно сохранены" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8939,7 +8977,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Не получилось сохранить настройки" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8968,7 +9006,7 @@ msgstr "Сопоставление кодировки соединения с My msgid "Appearance Settings" msgstr "Настройки внешнего вида" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Дополнительные настройки" @@ -8988,9 +9026,9 @@ msgstr "Версия программы" msgid "Protocol version" msgstr "Версия протокола" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Пользователь" @@ -9127,126 +9165,126 @@ msgstr "" "Сервер использует защитную систему Suhosin. Для решения возможных проблем " "обратитесь к %sдокументации%s." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Базы данных отсутствуют" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "Фильтровать базы данных по имени" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Фильтровать таблицы по имени" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Создать таблицу" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Выберите базу данных" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Показать/скрыть левое меню" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Сохранить расположение таблиц" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Создать связь" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Обновить" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Помощь" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Угловые линии связей" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Прямые линии связей" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Привязать к сетке" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Свернуть/развернуть отображение всех таблиц" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Обратное отображение" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Переключение линий связи" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Импорт/экспорт координат таблиц в/из PDF-схемы" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Составить запрос" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Переместить меню" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Скрыть/отобразить все таблицы" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Скрыть/отобразить таблицы не имеющие связей" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Количество таблиц" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Удалить связь" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Оператор" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Кроме" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "подзапрос" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Переименовать в" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Новое имя" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Объединение" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Активные параметры" @@ -9258,51 +9296,51 @@ msgstr "Страница успешно создана" msgid "Page creation failed" msgstr "Ошибка создания страницы" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Страница" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Импортировать с выбранной страницы" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Экспортировать на выбранную страницу" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Создать страницу и экспортировать в нее" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Название новой страницы: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Масштаб" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "рекомендуемый" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Ошибка: Связь уже существует." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Ошибка: Связь не добавлена." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Добавлена связь на внешний ключ (FOREIGN KEY)" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Добавлена внутренняя связь" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Связь удалена" @@ -9314,51 +9352,51 @@ msgstr "Ошибка сохранения координат." msgid "Modifications have been saved" msgstr "Изменения сохранены" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Невозможно сохранить настройки, отправленная форма содержит ошибки" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Не получилось импортировать настройки" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "В некоторых полях, настройки содержать некорректные данные." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Вы хотите импортировать оставшиеся настройки?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Сохранено: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Импорт из файла" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Импорт из хранилища браузера" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Настройки будут импортированы из локального хранилища вашего браузера." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "У вас нет сохраненных настроек!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Данная функция не поддерживается вашим браузером" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Объединение с текущими настройками" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9367,38 +9405,38 @@ msgstr "" "Вы можете установить дополнительные настройки отредактировав config.inc.php, " "к примеру, используя %sСкрипт настройки%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Сохранить в хранилище браузера" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Настройки будут сохранены в локальное хранилище вашего браузера." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Текущие настройки будут перезаписаны!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Вы можете сбросить все пользовательские настройки и восстановить их в " "значения по умолчанию." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Импорт файлов" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Все" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Таблица %s не найдена или не установлена в %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Файл не существует" @@ -9406,17 +9444,17 @@ msgstr "Файл не существует" msgid "Select binary log to view" msgstr "Выберите бинарный журнал для просмотра" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Файлов" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Сокращенное отображение запросов" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Развернутое отображение запросов" @@ -9432,7 +9470,7 @@ msgstr "Позиция" msgid "Original position" msgstr "Исходная позиция" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Информация" @@ -9440,7 +9478,7 @@ msgstr "Информация" msgid "Character Sets and Collations" msgstr "Кодировки и сравнения" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -9448,24 +9486,24 @@ msgstr[0] "%1$d база данных была успешно удалена." msgstr[1] "%1$d базы данных были успешно удалены." msgstr[2] "%1$d баз данных было успешно удалено." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Статистика баз данных" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Репликация головного сервера" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Репликация подчинённого сервера" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Включить статистику" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9477,158 +9515,158 @@ msgstr "" msgid "Storage Engines" msgstr "Типы таблиц" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Отобразить дамп (схему) баз данных" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Модули" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Начало" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Расширение" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Модуль" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Библиотека" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Версия" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Автор" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Лицензия" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "отключено" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Содержит все привилегии, за исключением GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Разрешает изменение структуры существующих таблиц." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Разрешает изменение и удаление хранимых процедур." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Разрешает создание новых баз данных и таблиц." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Разрешает создание хранимых процедур." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Разрешает создание новых таблиц." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Разрешает создание временных таблиц." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Разрешает создание, удаление и переименование учетных записей пользователей." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Разрешает создание новых представлений (CREATE VIEW)." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Разрешает удаление данных." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Разрешает удаление баз данных и таблиц." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Разрешает удаление таблиц." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Разрешает настройку отложенных событий" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Разрешает выполнение хранимых процедур." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Разрешает импорт и экспорт данных в файлы." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Разрешает добавление пользователей и привилегий без перезагрузки таблиц " "привилегий." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Разрешает создание и удаление индексов." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Разрешает вставку и замену данных." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Разрешает блокировку таблиц для текущего потока." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Максимальное количество новых подключений, которые пользователь может " "установить в течение часа." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Максимальное количество запросов, которые пользователь может отправить в " "течение часа." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9636,59 +9674,59 @@ msgstr "" "Максимальное количество команд изменяющих какую-либо таблицу или базу " "данных, которые пользователь может выполнить в течение часа." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Максимальное количество одновременных подключений одного пользователя." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Разрешает просмотр процессов всех пользователей" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Не доступно в данной версии MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Разрешает перезагрузку настроек сервера и очистку его кешей." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Разрешает запрашивать местонахождение головного и подчиненных серверов." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Необходимо для подчиненных серверов при репликации." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Разрешает выборку данных." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Разрешает доступ к полному списку баз данных." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Разрешает вывод запроса создающего представление (SHOW CREATE VIEW)." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Разрешает остановку сервера." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9699,162 +9737,162 @@ msgstr "" "установка глобальных переменных или завершение процессов других " "пользователей)." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Разрешает создание и удаление триггеров" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Разрешает изменение данных." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Нет привилегий." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Нет" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Привилегии уровня таблицы" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Примечание: типы привилегий MySQL отображаются по-английски" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Администрирование" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Глобальные привилегии" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Привилегии уровня базы данных" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Ограничение на использование ресурсов" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Замечание: Установка значения параметров в 0 (ноль), снимает ограничения." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Информация учетной записи" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Не менять пароль" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Пользователь не найден." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Пользователь %s уже существует!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Был добавлен новый пользователь." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Были изменены привилегии для %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Отменены привилегии для %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s был успешно изменен." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Удаление %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Не выбраны пользователи подлежащие удалению!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Перезагрузка привилегий" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Выбранные пользователи были успешно удалены." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Привилегии были успешно перезагружены." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Редактирование привилегий" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Отменить" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Экспорт" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Любой" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Привилегии всех пользователей" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Привилегии для %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Обзор учетных записей" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Удалить выделенных пользователей" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отменить все активные привилегии пользователей и затем удалить их." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9867,136 +9905,136 @@ msgstr "" "отличаться от привилегий, используемых сервером, если они были изменены " "вручную. В таком случае необходимо %sперезагрузить привилегии%s." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Выделенный пользователь не был найден в таблице привилегий." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Привилегии уровня столбца" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Добавить привилегии на следующую базу" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "При использовании в имени базы данных символов нижнего подчеркивания _ и " "процента %, необходимо экранировать их символом обратной косой черты \\, в " "противном случае они будут интерпретированы как групповые символы" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Добавить привилегии на следующую таблицу" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Изменить/Копировать учетную запись" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Создать нового пользователя с такими же привилегиями..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "и сохранить старого." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "и удалить старого из таблиц пользователей." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr ", отменить все активные привилегии старого и затем удалить его." -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr ", удалить старого из таблиц пользователей и перезагрузить привилегии." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "База данных для пользователя" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" "Создать базу данных с именем пользователя в названии и предоставить на нее " "полные привилегии" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Предоставить полные привилегии на базы данных подпадающие под шаблон (имя " "пользователя\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Выставить полные привилегии на базу данных "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Пользователи с правами доступа к "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "Глобальный уровень" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "Уровень базы данных" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "Групповой символ" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Пользователь был добавлен." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Неизвестная ошибка" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Невозможно соединиться с головным сервером %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Невозможно прочесть позицию журнала у головного сервера. Вероятно проблема в " "настройке привилегий головного сервера." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Невозможно изменить головной сервер" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Головной сервер успешно изменён на %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Показать состояние головного сервера" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Показать соединённые подчиненные сервера" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10005,11 +10043,11 @@ msgstr "" "Данный сервер не настроен в качестве головного для процесса репликации. " "Хотите произвести настройку?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Настройка головного сервера" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10023,19 +10061,19 @@ msgstr "" "выбрать игнорирование всех баз данных по умолчанию и разрешение для " "репликации только определенных. Пожалуйста, выберите желаемый режим:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Репликация всех баз данных; игнорировать:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Игнорировать все базы данных; репликация:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Пожалуйста, выберите базы данных:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10043,7 +10081,7 @@ msgstr "" "Теперь добавьте данные строки в конец раздела [mysqld] конфигурационного " "файла my.cnf, после чего перезапустите сервер MySQL." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10053,84 +10091,84 @@ msgstr "" "чего вы должны увидеть сообщение указывающее, что данный сервер настроен как головной" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Подчиненный SQL поток не запущен!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Подчиненный поток ввода-вывода не запущен!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Сервер настроен в качестве подчиненного для процесса репликации. Произвести " "действие:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Смотрите таблицу состояния подчинённого сервера" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Синхронизировать базы данных с головным сервером" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Контролировать подчинённый сервер:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Полный запуск" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Полная остановка" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Сбросить подчиненный сервер" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Запустить только SQL поток" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Остановить только SQL поток" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Запустить только поток ввода-вывода" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Остановить только поток ввода-вывода" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Управление ошибками:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Игнорирование ошибок может привести к рассинхронизации головного и " "подчинённого сервера!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Игнорировать текущую ошибку" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Пропустить следующую" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "ошибки." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10139,12 +10177,12 @@ msgstr "" "Данный сервер не настроен в качестве подчинённого для процесса репликации. " "Хотите произвести настройку?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Процесс %s был успешно завершен." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10152,115 +10190,115 @@ msgstr "" "phpMyAdmin не смог завершить работу потока с ID %s. Вероятно, он уже был " "закрыт." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Обработчик" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Кеш запросов" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Потоки" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Временные данные" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Отложенные вставки" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Кеш индекса" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Объединения" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Сортировка" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Координатор транзакций" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Закрыть все таблицы" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Список открытых таблиц" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Информация о подчиненных серверах" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Информация о состоянии сервера репликации" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Дефрагментировать кеш запросов" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Текущее состояние MySQL" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Все переменные состояния" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Монитор" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Советчик" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Частота обновления: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Фильтры" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Содержит слово:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Выводить только предупреждающие значения" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Фильтр по категории..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Выводить неотформатированные значения" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Связанные ссылки:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Запустить анализ" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Инструкции" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10268,7 +10306,7 @@ msgstr "" "Система советов может предоставлять рекомендации по переменным сервера, " "основываясь на анализе их статуса." -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10277,7 +10315,7 @@ msgstr "" "Однако, данная система предоставляет рекомендации основываясь на " "примитивных подсчетах и может быть не применима к вашему серверу." -#: server_status.php:920 +#: server_status.php:919 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 " @@ -10287,7 +10325,7 @@ msgstr "" "(прочитайте документацию) и знаете как отменить настройки. Ошибочная " "настройка может отрицательно сказаться на производительности." -#: server_status.php:922 +#: server_status.php:921 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 " @@ -10299,31 +10337,31 @@ msgstr "" "работе." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Вопросов начиная с запуска: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Характеристика" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "Кол-во" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Сетевой трафик с момента запуска: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10331,16 +10369,16 @@ msgstr "" "Данный MySQL сервер настроен головным и подчиненным в процессе " "репликации." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" "Данный сервер настроен подчиненным в процессе репликации." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10348,11 +10386,11 @@ msgstr "" "Для получения подробной информации о состоянии репликации сервера, " "пожалуйста, перейдите в раздел репликации." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Состояние репликации" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10360,35 +10398,35 @@ msgstr "" "На загруженном сервере, побайтовые счетчики могут переполняться, таким " "образом, статистика, передаваемая MySQL-сервером, может быть некорректной." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Принято" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Отправлено" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "Максимально одновременных" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Неудачных попыток" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Прерваны" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Команда" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10396,11 +10434,11 @@ msgstr "" "Количество прерванных соединений в связи с потерей связи и неверно закрытым " "соединением клиента." -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Количество неудавшихся попыток соединения к серверу MySQL." -#: server_status.php:1322 +#: server_status.php:1321 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 " @@ -10410,16 +10448,16 @@ msgstr "" "значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения " "были сохранены во временном файле." -#: server_status.php:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "Количество транзакций, использовавших кеш бинарного журнала." -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Количество попыток соединения (успешных либо нет) к серверу MySQL." -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10431,11 +10469,11 @@ msgstr "" "велико, следует увеличить значение переменной tmp_table_size, чтобы " "временные таблицы располагались в памяти, а не на жестком диске." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10443,7 +10481,7 @@ msgstr "" "Количество временных таблиц в памяти, созданных сервером автоматически в " "процессе выполнения SQL-выражений." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10451,31 +10489,31 @@ msgstr "" "Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, " "например, из-за дублирования ключей." -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" "Количество строк записанных в режиме отложенной вставки данных (INSERT " "DELAYED)." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Количество выполненных команд FLUSH." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Количество внутренних команд COMMIT." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Количество запросов на удаление строк из таблицы." -#: server_status.php:1334 +#: 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 " @@ -10485,7 +10523,7 @@ msgstr "" "определенным именем. Этот процесс называется обнаружением. Handler_discover " "- число обнаружений таблиц." -#: server_status.php:1335 +#: 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, " @@ -10496,7 +10534,7 @@ msgstr "" "индекса. Например, SELECT col1 FROM foo, при условии, что col1 " "проиндексирован." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10505,7 +10543,7 @@ msgstr "" "значение переменной говорит о том, что запросы и таблицы проиндексированы " "надлежащим образом." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10515,7 +10553,7 @@ msgstr "" "индексов. Значение увеличивается при запросе индексного столбца с " "ограничением по размеру или при сканировании индекса." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10523,7 +10561,7 @@ msgstr "" "Количество запросов на чтение предыдущей строки при ниспадающей сортировке " "индекса. Обычно используется при оптимизации: ORDER BY ... DESC." -#: server_status.php:1339 +#: 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 " @@ -10536,7 +10574,7 @@ msgstr "" "требующих полного сканирования таблиц, наличием объединений не использующих " "индексы надлежащим образом." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10548,39 +10586,39 @@ msgstr "" "что таблицы не проиндексированы надлежащим образом или запросы не используют " "преимущества индексов." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Количество внутренних команд ROLLBACK." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Количество запросов на обновление строк в таблице." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Количество запросов на вставку строк в таблицу." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Количество страниц содержащих данные ("грязные" или "" "чистые")." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Текущее количество "грязных" страниц." -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Количество страниц буферного пула, над которыми был осуществлен процесс " "очистки (FLUSH)." -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Количество свободных страниц." -#: server_status.php:1348 +#: 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 " @@ -10590,7 +10628,7 @@ msgstr "" "страницами осуществляется процесс чтения или записи, либо они не могут быть " "очищены или удалены по какой-либо другой причине." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10602,11 +10640,11 @@ msgstr "" "Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Общий размер буферного пула (в страницах)." -#: server_status.php:1351 +#: 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." @@ -10614,7 +10652,7 @@ msgstr "" "Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это " "происходит, когда запрос сканирует большую часть таблицы в случайном порядке." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10623,11 +10661,11 @@ msgstr "" "происходит, когда InnoDB выполняет полное последовательное сканирование " "таблицы." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Количество последовательных запросов на чтение, выполненных InnoDB." -#: server_status.php:1354 +#: 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." @@ -10635,7 +10673,7 @@ msgstr "" "Количество последовательных запросов на чтение, которые InnoDB не смог " "выполнить из буферного пула и использовал постраничное чтение." -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10649,55 +10687,55 @@ msgstr "" "ожиданий. Если размер буферного пула был установлен должным образом, " "значение будет небольшим." -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Количество записей, выполненных в буферный пул InnoDB." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Количество операций fsync(), выполненных на данный момент." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Текущее количество незавершенных операций fsync()." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Текущее количество незавершенных операций чтения." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Текущее количество незавершенных операций записи." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Сумма данных (в байтах), прочитанных на данный момент." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Общее количество операций чтения данных." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Общее количество операций записи данных." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Сумма данных (в байтах), записанных на данный момент." -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -10705,36 +10743,36 @@ msgstr "" "Количество ожиданий очистки журнального буфера, вследствие малого его " "размера." -#: server_status.php:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Количество запросов на запись в журнал." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Количество физических записей в файл журнала." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Количество записей с помощью fsync(), сделанных в файл журнала." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" "Количество незавершенных попыток синхронизации с помощью операции fsync." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Количество незавершенных запросов на запись в журнал." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Объем данных в байтах, записанных в файл журнала." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Количество созданных страниц." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10743,51 +10781,51 @@ msgstr "" "приводятся в страницах, но зная объем страницы, можно перевести эти значения " "в байты." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Количество прочитанных страниц." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Количество записанных страниц." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Текущее количество ожиданий блокировок строк." -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Среднее время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Общее время, ожидания блокировок строк (в миллисекундах)." -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "Общее количество ожиданий блокировки строк." -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Количество строк, удаленных из таблиц InnoDB." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Количество строк, добавленных в таблицы InnoDB." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Количество строк, прочитанных из таблиц InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Количество строк, обновленных в таблицах InnoDB." -#: server_status.php:1387 +#: 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." @@ -10795,7 +10833,7 @@ msgstr "" "Количество блоков в кеше индекса, которые были изменены, но еще не записаны " "на диск. Данный параметр также известен как Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -10803,7 +10841,7 @@ msgstr "" "Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет " "определить как полно используется кеш индекса." -#: server_status.php:1389 +#: server_status.php:1388 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 " @@ -10812,16 +10850,16 @@ msgstr "" "Количество используемых блоков в кеше индекса. Данное значение - " "максимальное количество блоков, использованных одновременно." -#: server_status.php:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "" "Процентное соотношение использованного кеша ключей (подсчитанное значение)" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "Количество запросов на чтение блока из кеша индексов." -#: server_status.php:1392 +#: 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 " @@ -10832,7 +10870,7 @@ msgstr "" "key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан " "как: Key_reads/Key_read_requests." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10840,22 +10878,22 @@ msgstr "" "Промахи кеша ключей рассчитываются, как соотношение физических чтений " "сравнительно к запросам чтения (подсчитанное значение)" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "Количество запросов на запись блока в кеш индекса." -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "Количество физических операций записи блока индексов на диск." -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" "Процентное соотношение физических процессов записи сравнительно к запросам " "записи (подсчитанное значение)" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -10866,7 +10904,7 @@ msgstr "" "одного запроса. Изначальное нулевое значение, означает, что процесса " "компиляции запроса еще не было." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10874,11 +10912,11 @@ msgstr "" "Максимальное количество соединений использованных одновременно начиная с " "запуска сервера." -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED." -#: server_status.php:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10886,20 +10924,20 @@ msgstr "" "Общее количество открывавшихся таблиц. При большом значении переменной " "рекомендуется увеличить размер кеша таблиц (table_cache)." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Количество открытых файлов." -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Количество открытых потоков (в основном применяется к файлам журналов)." -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Количество открытых таблиц." -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10909,21 +10947,21 @@ msgstr "" "указывать на фрагментацию, проблема которой решается выполнением запроса " "FLUSH QUERY CACHE." -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Объем свободной памяти для кеша запросов." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" "Количество "попаданий" в кеш запросов, т.е. сколько запросов было " "удовлетворено запросами, находящимися в кеше." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Количество запросов, добавленных в кеш запросов." -#: server_status.php:1408 +#: 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 " @@ -10936,7 +10974,7 @@ msgstr "" "не использующиеся страницы заменяются новыми) при принятии решения об " "удаления запроса из кеша." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10944,19 +10982,19 @@ msgstr "" "Количество запросов, которые оказались некешируемыми или для которых " "кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Количество запросов, зарегистрированных в кеше." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Состояние отказоустойчивой репликации (пока не реализовано)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10964,13 +11002,13 @@ msgstr "" "Количество запросов-объединений, выполненных без использования индексов. " "Если значение переменной не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" "Количество запросов-объединений, выполненных с использованием поиска по " "диапазону в таблице, на которую делается ссылка." -#: server_status.php:1415 +#: 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.)" @@ -10979,7 +11017,7 @@ msgstr "" "диапазону для выборки строк из вторичной таблицы. Если значение переменной " "не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10988,18 +11026,18 @@ msgstr "" "диапазону в первой таблице. Обычно значение этой переменной не критично, " "даже если оно велико." -#: server_status.php:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" "Количество запросов-объединений, выполненных с использованием полного поиска " "по первой таблице." -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Количество временных таблиц, открытых в настоящий момент подчиненным потоком." -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11007,13 +11045,13 @@ msgstr "" "Общее количество повторов транзакций подчиненным потоком репликации с " "момента запуска." -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Присваивается значение ON, если данный сервер функционирует как подчиненный, " "подключенный к главному." -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11021,12 +11059,12 @@ msgstr "" "Количество потоков, на создание которых потребовалось более чем " "slow_launch_time секунд." -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Количество запросов, выполнявшихся более long_query_time секунд." -#: server_status.php:1423 +#: server_status.php:1422 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 " @@ -11035,28 +11073,28 @@ msgstr "" "Количество проходов, сделанных алгоритмом сортировки. При большом значении " "следует увеличить значение переменной sort_buffer_size." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" "Количество операций сортировки, выполненных с использованием диапазона." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Количество отсортированных строк." -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" "Количество операций сортировки, выполненных с использованием полного " "сканирования таблицы." -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Количество запросов на блокировку таблицы, которые были удовлетворены " "немедленно." -#: server_status.php:1428 +#: server_status.php:1427 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,7 +11106,7 @@ msgstr "" "производительностью, необходимо сначала оптимизировать свои запросы, а затем " "разбить свою таблицу (или таблицы) или использовать репликацию." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11078,11 +11116,11 @@ msgstr "" "вычислить по формуле Threads_created/Connections. Если это значение окрашено " "в красный цвет - вам следует увеличить thread_cache_size." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Количество открытых текущих соединений." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11094,47 +11132,47 @@ msgstr "" "thread_cache_size (это не даст существенного выигрыша в производительности, " "при хорошей реализации потоков)." -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "Соотношение обращений в кеш потока (подсчитанное значение)" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Количество процессов, находящихся в активном состоянии." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Запустить монитор" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Инструкции/Настройки" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Завершено редактирование графиков" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Добавить график" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Упорядочить/отредактировать графики" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Частота обновления" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Столбцы графика" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Расположение гарфика" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -11142,15 +11180,15 @@ msgstr "" "Расположения графиков сохраняются в локальном хранилище браузера. При " "наличии сложной настройки, вы можете осуществить ее экспорт." -#: server_status.php:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Восстановить изначальное значение" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Инструкции мониторинга" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11164,7 +11202,7 @@ msgstr "" "general_log. Будьте внимательны, включение general_log производит увеличение " "хранимых данных и увеличивает нагрузку на сервер до 15%." -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11176,11 +11214,11 @@ msgstr "" "phpMyAdmin. Сохранение журналов в таблицу поддерживается MySQL 5.1.6 и выше. " "Однако, вы все еще можете использовать функции графиков сервера." -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Использование мониторинга:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11191,7 +11229,7 @@ msgstr "" "настройках, или удалить график используя соответствующую иконку на каждом из " "них." -#: server_status.php:1655 +#: server_status.php:1654 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 " @@ -11203,11 +11241,11 @@ msgstr "" "будет загружена таблица сгруппированных запросов, где вы сможете кликнуть на " "любые выражения SELECT, для их последующего анализа." -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Примечание:" -#: server_status.php:1664 +#: server_status.php:1663 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,79 +11258,79 @@ msgstr "" "небольшие промежутки времени, а так же отключать general_log и очищать его " "таблицу, когда мониторинг больше не требуется." -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Заготовки графиков" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Переменные состояния" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Выберите серии:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Частый мониторинг" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "или задайте имя переменной:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Отобразить в виде значения разницы" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Применить делитель" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Добавить к значениям единицу измерения" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Добавить данные серии" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Очистить серии" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Серии в графике:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Статистика журналов" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Выбранный диапазон времени:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Выполнять только выражения SELECT,INSERT,UPDATE и DELETE" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "Для лучшей группировки, удалить данные переменной в запросах INSERT" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "Выберите из какого журнала должна генерироваться статистика." -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Результаты сгруппированы по тексту запроса." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Анализ запроса" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11300,7 +11338,7 @@ msgstr[0] "%d секунда" msgstr[1] "%d секунды" msgstr[2] "%d секунд" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11308,110 +11346,110 @@ msgstr[0] "%d минута" msgstr[1] "%d минуты" msgstr[2] "%d минут" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Не получилось соединиться с источником" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Не получилось соединиться с целевой базой данных" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "База данных '%s' не существует." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Синхронизация структуры" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Синхронизация данных" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "отсутствует" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Различие структуры" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Различие данных" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Добавить поле(я)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Удалить поле(я)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Изменить поле(я)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Удалить индекс(ы)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Применить индекс(ы)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Обновить строку(и)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Вставить строку(и)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Удалить все предыдущие строки из целевой таблицы?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Применить выбранные изменения" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Синхронизировать базы данных" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Выбранные целевые таблицы были синхронизированы с таблицами источника." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Целевая база данных была синхронизирована с базой данных источника" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Выполнено запросов" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Ввести вручную" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Текущее соединение" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Настройки: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Сокет" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11419,19 +11457,19 @@ msgstr "" "Целевая база данных будет полностью синхронизована с источником. База данных " "источника останется неизменной." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Не удалось установить переменную" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Серверные переменные и настройки" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Значение сессии" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Глобальное значение" @@ -11781,153 +11819,153 @@ msgstr "Ключ должен содержать символы алфавита msgid "Wrong data" msgstr "Ошибочные данные" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Для обзора данных использован запрос из закладки \"%s\"." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Вы действительно хотите выполнить данный запрос?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Отображает как PHP-код" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "SQL синтаксис проверен" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Результат SQL-запроса" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Создан" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблемы с индексами таблицы `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Метка" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Таблица %1$s была успешно изменена" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "Поля были успешно перемещены." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Ряд" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Столбец" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Линия" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Сплайн" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Круговая" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Уложенный" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Заголовок графика" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "Ось-X:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Серии:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Подпись для оси X:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "Значения X" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Подпись для оси Y:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Значения Y" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Таблица %s уже существует!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Таблица %1$s была создана." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Отобразить дамп (схему) таблицы" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Визуализация GIS данных" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Ширина" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Высота" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Название столбца" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Пусто --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Пространственный столбец" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Пересоздать" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Сохранить в файл" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Имя файла" @@ -11943,28 +11981,28 @@ msgstr "Невозможно переименовать индекс в PRIMARY! msgid "No index parts defined!" msgstr "Части индекса не определены!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Добавить индекс" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Редактировать индекс" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Имя индекса :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(Имя \"PRIMARY\" должен иметь только первичный индекс!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Тип индекса :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Добавить к индексу %s столбец(ы)" @@ -11987,150 +12025,150 @@ msgstr "Таблица %s была перемещена в %s." msgid "Table %s has been copied to %s." msgstr "Таблица %s была скопирована в %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Не задано имя таблицы!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Изменить сортировку таблицы" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(столбец)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Переместить таблицы в (база данных.таблица):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Параметры таблицы" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Переименовать таблицу в" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Скопировать таблицу в (база данных.таблица):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Переключиться на скопированную таблицу" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Обслуживание таблицы" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Дефрагментировать таблицу" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Обновлен кеш таблицы %s" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Обновить кеш таблицы (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Удалить данные или таблицу" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Очистить таблицу (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Удалить таблицу (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Обслуживание разделов" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Раздел %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Анализ" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Проверка" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Оптимизация" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Перестройка" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Исправление" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Удалить разделение" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Проверить целостность данных:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Отображение таблиц" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Используемое пространство" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Эффективность" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Статистика строк" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "статический" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "динамический" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Длина строки" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Размер строки" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Следующий автоматический индекс" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Ошибка создания внешнего ключа на %1$s (проверьте типы данных)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Внутренняя связь" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12138,103 +12176,103 @@ msgstr "" "Внутренняя связь не обязательна, если существует соответствующая связь с " "помощью внешнего ключа (FOREIGN KEY)." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Ограничение внешнего ключа" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Пространственный" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Уникальные значения" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Добавить первичный ключ" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Добавить уникальный индекс" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Добавить пространственный индекс" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Добавить полнотекстовый индекс" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Нет" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Поле %s было удалено" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Был добавлен первичный ключ к %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Был добавлен индекс для %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Показать больше операций" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "Переместить поля" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "Переместите поля перетаскивая их вверх и вниз." -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Редактировать представление" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Связи" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Анализ структуры таблицы" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Добавить столбец" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "В конец таблицы" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "В начало таблицы" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "После %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Создать индекс для  %s столбца/ов" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "разделён" @@ -12385,68 +12423,38 @@ msgstr "Отслеживать выражения изменяющие данн msgid "Create version" msgstr "Создать версию" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Выполнить \"запрос по образцу\" (символ шаблона: \"%\") для двух различных " -"столбцов" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Добавочный критерий поиска" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Использовать данное поле для обозначения каждой точки" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Максимальное количество строк для построения" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Обзор/Редакция точек" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Как использовать" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "Сбросить увеличение" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Другие темы!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Доступные MIME-типы" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-типы, выделенные курсивом, не имеют отдельной функции трансформации" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Доступные преобразования" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Описание" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Для доступа к данной странице у вас недостаточно прав!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Профиль был обновлен." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "VIEW название" diff --git a/po/si.po b/po/si.po index d62e81897a..4b656d41a1 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-11 19:33+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "සියල්ල පෙන්වන්න" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "පිටු අංකය:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,58 +37,58 @@ msgstr "" "ඉලක්කගත බ්‍රව්සර කවුලුව යාවත්කාලීන කල නොහැක. ඔබ එහි මව් කවුලුව වසා තිබීම හෝ ඔබගේ බ්‍රව්සරයේ " "ආරක්ෂක සැකසුම් අන්තර් කවුළු යාවත්කාලීන කිරීම් අවහිර කරන ලෙස සකසා තිබීම මීට හේතු විය හැක." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "යන්න" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "යතුරු නම" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "විස්තරය" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "මෙම අගය භාවිතා කරන්න" @@ -104,88 +104,89 @@ msgstr "%s ගොනුව මෙම පද්ධතියේ නොමැත. msgid "Database %1$s has been created." msgstr "%1$s දත්තගබඩාව සාදන ලදි." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "දත්තගබඩා විස්තර: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "වගු විස්තර" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "තීර" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "පෙරනිමි" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "සම්බන්ද වන්නේ" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "විස්තරය" @@ -194,14 +195,14 @@ msgstr "විස්තරය" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "නැත" @@ -214,120 +215,120 @@ msgstr "නැත" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "ඔව්" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "දත්තගබඩාවේ නික්ෂේපනය (ක්‍රමානුරූපය) දර්ශනය කරන්න" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "සියල්ල තෝරන්න" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන්න‍" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "දත්තගබඩා නම හිස්ව පවතී!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s දත්තගබඩාව %2$s බවට නම වෙනස් කරන ලදි" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s දත්තගබඩාව %2$s වෙතට පිටපත් කරන ලදි" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "දත්තගබඩාව ඉවත් කරන්න" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "%s දත්තගබඩාව හලන ලදි." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "දත්තගබඩාව හලන්න. (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "සැකිල්ල පමණයි" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "සැකිල්ල සහ දත්ත" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "දත්ත පමණයි" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "පිටපත් කිරීමට ප්‍රථම දත්තගබඩාවක් සාදන්න" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "%s එක් කරන්න" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT අගයක් එක් කරන්න" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "සීමා බාධවන් එක් කරන්න" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙත මාරු වන්න" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Collation" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -336,59 +337,59 @@ msgstr "" "phpMyAdmin හි configuration storage අක්‍රිය කර ඇත. ඇයිදැයි සොයා බැලීමට %sමෙතන%s ක්ලික් " "කරන්න." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "වගුව" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "පේළි" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "ප්‍රමාණය" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "භාවිතා වෙමින් පවතී" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "සෑදීම" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "අවසන් යාවත්කාලීන කිරීම" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "අවසන් පරීක්ෂාව" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -399,210 +400,210 @@ msgstr[1] "%s වගු" msgid "You have to choose at least one column to display" msgstr "පෙන්වීම සඳහා අවම වශයෙන් එක් තීරයක්වත් තෝරාගත යුතුයි" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sදෘශ්‍ය ගොඩනංවනය%s වෙත යන්න" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "සුබෙදන්න" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "ආරෝහන" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "අවරෝහන" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "පෙන්වන්න" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "නිර්ණායක" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "ඇතුල්" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "සහ" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "ඉවත්" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "හෝ" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "වෙනස් කිරීම" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "නිර්ණායක පේළියක් එක් කරන්න/ඉවත් කරන්න" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "තීර එක් කරන්න/ඉවත් කරන්න" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "විමසුම යාවත්කාලීන කරන්න" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "වගු භාවිතා කරන්න" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "%s දත්තගබඩාව මත SQL විමසුම:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "විමසුම ඉදිරිපත් කරන්න" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "පිවිසුම වලක්වා ඇත" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "අවම වශයෙන් එක් වචනයක්වත්" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "සියලු වචන" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "හරියටම වාක්‍යාංශය" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "regular expression ලෙස" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s සඳහා සෙවීම් ප්‍රතිළුල:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "එකතුව: %s ගැලපුමයි" msgstr[1] "එකතුව: ගැලපුම් %s යි" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "දත්තගබඩාවේ සොයන්න" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "සෙවීම සඳහා වචන(ය) හෝ අගය(න්) (wildcard: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "සොයන්න:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "වචන වෙන් කෙරෙන්නේ හිස් තැනකිනි(\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "වගු තුල:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "තීරය තුල:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "නොදන්නා" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "%s වගුව හිස් කරන ලදි" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "%s දසුන හලන ලදි" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "%s වගුව හලන ලදි" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "අවධානය සක්‍රීයයි." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "අවධානය අක්‍රීයයි." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -610,186 +611,187 @@ msgid "" msgstr "" "මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්‍යනය කරන්න." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "අනුරූ කරණය" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "එකතුව" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s මෙම සේවාදායකයේ පෙරනිමි ගබඩා යන්ත්‍රයයි." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "තෝරාගත්:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "සියල්ල කතිර කොටුගත කරන්න" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "පිරිවැයක් සහිත වගු පරීක්ෂා කරන්න" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "අපනයනය" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "හිස් කරන්න" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "හලන්න" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "වගුව පරීක්ෂා කරන්න" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "වගුව ප්‍රශස්තගත කරන්න" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "වගුව විශ්ලේෂණය කරන්න" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "වගුවට නාම මූලයක් එක් කරන්න" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "වගු නාම මූලය ප්‍රතිස්ථාපනය කරන්න" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "නාම මූලය සහිත වගු පිටපත් කරන්න" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "දත්ත කෝෂය" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "අවධානය සක්‍රීය වගු" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "දත්තගබඩාව" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "අවසන් අනුවාදය" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "සාදන ලදි" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "යාවත්කාලීන කරන ලදි" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "තත්වය" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "ක්‍රියාව" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "මෙම වගුවේ අවධානය පිළිබඳ දත්ත ඉවත් කරන්න" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "සක්‍රිය" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "අක්‍රිය" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "අනුවාද" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "අවධානය පිළිබඳ වාර්තාව" # සැණරුව = snapshot. Source: Glossary of Information Technology terms - ICTA -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "සැකිල්ලේ සැණරුව" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "අවධානය අක්‍රීය වගු" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "වගුව අවධානයට ලක් කරන්න" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "දත්තගබඩා ලොගය" @@ -801,16 +803,16 @@ msgstr "වැරදි වර්ගය!" msgid "Selected export type has to be saved in file!" msgstr "තෝරාගත් අපනයන වර්ගය ගොනුව තුල සුරැකිය යුතුයි!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "වැරදි පරාමිතියන්!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s ගොනුව සුරැකීමට ප්‍රමාණවත් ඉඩ අවකාශ නොමැත." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -818,12 +820,12 @@ msgstr "" "%s ගොනුව මේ වන විටත් සේවාදායකයෙහි පවතී, ගොනු නාමය වෙනස් කරන්න නැතහොත් උඩින් ලිවීමේ හැකියාව " "සලකා බලන්න." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "වෙබ් සේවාදායකයට %s ගොනුව සුරැකීමට අවසර නොමැත." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකින ලදි." @@ -832,86 +834,86 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකි msgid "Invalid export type" msgstr "වැරදි අපනයන වර්ගයකි" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" තීරය සඳහා අගයන්" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "මූලික ස්ථරය ලෙස OpenStreetMaps භාවිතා කරන්න" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "ජ්‍යාමිතිය" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "ලක්ෂ්‍යය" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "%dවන ලක්ෂ්‍යය" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "ලක්ෂ්‍යයක් එක් කරන්න" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "රේඛාව" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "පිටත කවය" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "ඇතුලත කවය" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "රේඛාවක් එක් කරන්න" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "ඇතුල් කවයක් එක් කරන්න" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "බහු අස්‍රය" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "බහු අස්‍රයක් එක් කරන්න" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "ජ්‍යාමිතියක් එක් කරන්න" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "ප්‍රතිදානය" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -919,7 +921,7 @@ msgstr "" "\"Function\" තීරුවෙන් \"GeomFromText\" තෝරා පහත ඇති දේ \"Value\" ක්ෂේත්‍රයට පිටපත් " "කරන්න" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -928,28 +930,28 @@ msgstr "" "ඔබ උඩුගත කරන ගොනුව විශාල වැඩි විය හැක. මෙම සීමාවන් ඉක්මවීමේ ක්‍රම සඳහා කරුණාකර %sලියකියවිලි" "%s බලන්න." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "පොත් සලකුණ පෙන්වන්න" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "පොත් සලකුණ ඉවත් කරන ලදි." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "ගොනුව කියවිය නොහැක" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -959,26 +961,26 @@ msgstr "" "විශාලත්වය PHP වින්‍යාසයන්හි අනුමත ප්‍රමාණයට වැඩ විශාල වීම මීට හේතු විය හැකිය. [a@./" "Documentation.html#faq1_16@Documentation]FAQ 1.16[/a] බලන්න." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "අක්ෂර කට්ටල හැරවීම් පුස්තකාලය නොමැතිව ගොනුවේ අක්ෂර කට්ටලය හැරවීම කල නොහැක" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "ආනයනය පේනු පූරණය අසමත් විය. ඔබගේ ස්ථාපිතය පරීක්ෂා කරන්න!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "%s පොත් සලකුණ සාදන ලදි" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "ආනයනය සාර්ථකව අවසන් කරන ලදි, විමසුම්%d ක්‍රියාත්මක කරන ලදි." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -986,7 +988,7 @@ msgstr "" "විධානාවලිය ක්‍රියාත්මක වීමට ලබා දුන් කාලය අවසන් විය. ඔබට ආනයනය සම්පූර්ණ කිරීමට අවශ්‍ය නම් එම " "ආනයන ගොනුවම නැවත ආනයනය සඳහා යොමු කරන්න." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -994,23 +996,23 @@ msgstr "" "කෙසේ නමුදු අවසන් වාරයේදී කිසිදු දත්තයක් ලබා ගත නොහැකි විය. මෙයින් අදහස් වන්නේ ඔබගේ php කාල " "සීමාව වැඩි කිරීමකින් තොරව phpMyAdmin හට මෙම ආනයනය සම්පූර්ණ කිරීමට හැකි නොවන බවය." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "ආපසු" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "frame සහය ඇති බ්‍රව්සර සමග phpMyAdmin වඩා හොඳින් ක්‍රියා කරයි." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ප්‍රකාශ අක්‍රීය කර ඇත." @@ -1019,7 +1021,7 @@ msgstr "\"DROP DATABASE\" ප්‍රකාශ අක්‍රීය කර ඇ msgid "Do you really want to execute \"%s\"?" msgstr "\"%s\" ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!" @@ -1059,7 +1061,7 @@ msgstr "සුචිය එක් කරන්න" msgid "Edit Index" msgstr "සුචිය සංස්කරණය කරන්න" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "සුචියට ක්ෂේත්‍ර %d ක් එක් කරන්න" @@ -1077,16 +1079,16 @@ msgstr "දාරක නම හිස්ව පවතී!" msgid "The user name is empty!" msgstr "භාවිත නාමය හිස්ව පවතී!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "මුරපදය හිස්ව පවතී!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "මුරපද නොගැලපේ!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "භාවිතා කරන්නෙක් එක් කරන්න" @@ -1103,23 +1105,24 @@ msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත msgid "Close" msgstr "වසන්න" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "සංස්කරණය කරන්න" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "සජීවී දත්ත හුවමාරු ප්‍රස්තාරය" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "සජීවී සබඳතා/ක්‍රියාවලි ප්‍රස්තාරය" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "සජීවී විමසුම් ප්‍රස්තාරය" @@ -1129,24 +1132,24 @@ msgstr "ස්ථිතික දත්ත" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "මුළු එකතුව" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "අනෙකුත්" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1166,7 +1169,7 @@ msgstr "සේවාදායකයේ තදබදය (KiB වලින්)" msgid "Connections since last refresh" msgstr "අවසන් යාවත්කාලින කිරීමේ සිට සබැඳුම්" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "ක්‍රියාවලි" @@ -1184,7 +1187,7 @@ msgstr "අවසන් යාවත්කාලින කිරීමේ සි msgid "Questions (executed statements by the server)" msgstr "ප්‍රශ්න (සේවාදායකය විසින් ක්‍රියාත්මක කරන ලද ප්‍රකාශ)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "විමසුම් සංඛ්‍යාලේඛන" @@ -1225,14 +1228,14 @@ msgid "System swap" msgstr "පද්ධතියේ swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1284,32 +1287,32 @@ msgstr "යැවුණු බයිට ගණන" msgid "Bytes received" msgstr "ලැබුණු බයිට ගණන" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "සම්බන්ධතා" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1323,11 +1326,11 @@ msgstr "වගු %d" msgid "Questions" msgstr "ප්‍රශ්න" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "තදබදය" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "සිටුවම්" @@ -1347,11 +1350,11 @@ msgstr "ජාලකයට ප්‍රස්තාර එක් කරන්න msgid "Please add at least one variable to the series" msgstr "කරුණාකර ශ්‍රේණියට අවම වශයෙන් එක විචල්‍යයක්වත් ඇතුලත් කරන්න" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "කිසිවක් නැත" @@ -1451,7 +1454,7 @@ msgstr "සිටුවම් වෙනස් කිරීම" msgid "Current settings" msgstr "වර්තමාන සිටුවම්" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "ප්‍රස්තාර මාතෘකාව" @@ -1529,7 +1532,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "කාලය" @@ -1622,10 +1625,10 @@ msgid "" msgstr "" "අනයනිත වින්‍යාස සමඟින් ප්‍රස්ථාර ජාලය ගොඩනැගීම අසමත් විය. පෙරනිමි වින්‍යාස වෙත මාරු වෙමින්..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "ආනයනය" @@ -1673,9 +1676,9 @@ msgstr "භාවිතා කරන ලද විචල්‍යයන් / ස msgid "Test" msgstr "ඇගයීම" -#: 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 +#: 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 msgid "Cancel" msgstr "අවලංගු කරන්න" @@ -1687,11 +1690,11 @@ msgstr "පූරණය කෙරෙමින්" msgid "Processing Request" msgstr "ඉල්ලීම පිරිසැකසෙමින්" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "දත්තගබඩාවක් තෝරාගෙන නොමැත." @@ -1705,9 +1708,9 @@ msgstr "තීරුව හලමින්" msgid "Adding Primary Key" msgstr "ප්‍රාථමික මූලය එක් කරමින්" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1747,15 +1750,15 @@ msgstr "සුචි සඟවන්න" msgid "Show indexes" msgstr "සුචි පෙන්වන්න" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "අන්‍ය මූල පරීක්ෂාව:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(සක්‍රිය)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(අක්‍රිය)" @@ -1783,7 +1786,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET සංස්කාරකය" @@ -1822,8 +1825,8 @@ msgstr "විමසුම් කවුළුව පෙන්වන්න" msgid "No rows selected" msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "වෙනස් කරන්න" @@ -1831,18 +1834,18 @@ msgstr "වෙනස් කරන්න" msgid "Query execution time" msgstr "විමසුම ක්‍රියාත්මක කිරීමේ කාලය" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "%d වලංගු පේළි අංකයක් නොවේ." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "සුරකින්න" @@ -1854,7 +1857,7 @@ msgstr "සෙවුම් නිර්ණායක සඟවන්න" msgid "Show search criteria" msgstr "සෙවුම් නිර්ණායක පෙන්වන්න" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Zoom සෙවීම" @@ -1898,12 +1901,12 @@ msgstr "විමසුම් ප්‍රථිඵල" msgid "Data point content" msgstr "ලක්ෂයට අදාල දත්ත" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "නොසලකන්න" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "පිටපත් කරන්න" @@ -1925,7 +1928,7 @@ msgstr "අන්‍ය මූලය තෝරන්න" msgid "Please select the primary key or a unique key" msgstr "කරුණාකර ප්‍රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන්න" @@ -2013,7 +2016,7 @@ msgstr "උත්පාදනය කරන්න" msgid "Change Password" msgstr "මුරපදය වෙනස් කරන්න" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "තවත්" @@ -2104,63 +2107,63 @@ msgid "December" msgstr "දෙසැම්බර්" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "ජුනි" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "දෙසැම්බර්" @@ -2198,32 +2201,32 @@ msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "සඳුදා" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "අඟහ" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "බ්‍රහස්" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "සිකුරා" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "සෙනසු" @@ -2337,16 +2340,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "තප්පරයකට" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "මිනිත්තුවකට" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "පැයකට" @@ -2367,45 +2370,231 @@ msgstr "වින්‍යාස ගොනුව සඳහා වැරදි msgid "Font size" msgstr "ෆොන්ටයෙහි ප්‍රමාණය" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "සංස්කරණය කල දත්ත සුරකින්න" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "තීර අනුපිලිවල ප්‍රතිෂ්ඨාපනය කරන්න" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "ඇරඹුම" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "පෙර" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "මීලඟ" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "අවසන" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "ආරම්භක පේළිය" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "පේළි ගණන" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "ප්‍රකාරය" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "තිරස්" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "තිරස් (rotated headers)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "සිරස්" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "ශීර්ෂක, පේළි %s කට වරක්" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "යතුර අනුව තෝරන්න" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "විකල්ප" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "අර්ධ පෙළ" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "පූර්ණ පෙළ" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "සබැඳි යතුර" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "සබැඳි දර්ශන තීරය" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "ද්වීමය දත්ත පෙන්වන්න" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "BLOB දත්ත පෙන්වන්න" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "ද්වීමය දත්ත HEX ලෙස පෙන්වන්න" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "බ්‍රව්සර රූපාන්තරනය සඟවන්න" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Well Known Text" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Well Known Binary" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "පේළිය ඉවත් කරන ලදි" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "නවතා දමන්න" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"සමහර විට ආසන්න වශයෙන්. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/" +"a] බලන්න" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "විමසුම තුල" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "පේළි පෙන්වමින්" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "මුළු එකතුව" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "විමසුම් ප්‍රථිඵල සඳහා මෙහෙයුම්" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "මුද්‍රණ දර්ශනය (පූර්ණ පෙළ සමඟින්)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "ප්‍රස්තාරගත කරන්න" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "ජ්‍යාමිතික දත්ත නිරූපණය" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "දසුනක් සාදන්න" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "සබැඳිය හමු නොවිණි" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "දෝෂ පණිවුඩ ප්‍රමාණය ඉක්මවා ගොස් ඇත, ඇතැමෙක් ප්‍රදර්ශනය නොකෙරේ." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "ගොනුව උඩුගත කරන ලද්දක් නොවේ." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "උඩුගත කෙරුනු ගොනුව php.ini හි upload_max_filesize අගය ඉක්මවයි." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "උඩුගත කෙරුනු ගොනුව HTML පෝරමයෙහි සඳහන් MAX_FILE_SIZE අගය ඉක්මවයි." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "උඩුගත කෙරුනු ගොනුවේ කොටසක් පමණක් උඩුගත විය." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "තාවකාලික ෆෝල්ඩරයක් නැතිවී ඇත." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "ගොනුව ඩිස්කයට පිටපත් කිරීම අසාර්ථක විය." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "දිගුව නිසා ගොනුව උඩුගත කිරීම නවතන ලදි." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "ගොනුව උඩුගත කිරීමේදී දෝෂයක් ඇති විය." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2413,26 +2602,39 @@ msgstr "" "උඩුගත කෙරුණු ගොනුව ගෙන යාමේදී දෝෂයක් ඇති විය, [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a] බලන්න" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "උඩුගත කරන ලද ගොනුව චලනයේදී දෝෂයක් මතු විය." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "උඩුගත කරන ලද ගොනුව කියවීමට නොහැක." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "නව phpMyAdmin කවුළුවක් විවෘත කරන්න" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "මෙම ස්ථානය පසු කිරීම සඳහා කුකීස් - Cookies සක්‍රිය කල යුතුයි." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "මෙම ස්ථානයයෙන් පසු JavaScript සක්‍රිය කර තිබීම අවශ්‍යය" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "සූචියන්" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "අනන්‍ය" @@ -2445,8 +2647,8 @@ msgstr "අහුරන ලද" msgid "Cardinality" msgstr "Cardinality" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "ටීකාව" @@ -2467,128 +2669,128 @@ msgid "" "removed." msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "දත්තගබඩා" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "සේවාදායකය" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "සැකිල්ල" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "ඇතුල් කරන්න" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "මෙහෙයුම්" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "අවධානය" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "දත්තගබඩාව හිස්ය!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "විමසුම" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "වරප්‍රසාද" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "නෛත්‍යක" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "සිද්ධි" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "සැලසුම්කරණය" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "භාවිතා කරන්නන්" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "සමමුහුර්ත කරන්න" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "ද්වීමය ලොගය" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "විචල්‍යනයන්" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "අක්ෂර කට්ටලය" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "පේණු" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "යන්ත්‍රයන්" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "දෝෂය" @@ -2613,7 +2815,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "පේළි %1$d ක් ඇතුල් කෙරුනි." msgstr[1] "පේළි %1$d ක් ඇතුල් කෙරුනි." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "PDF සැදීමේදී දෝෂ:" @@ -2704,16 +2906,98 @@ 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 +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 +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 +msgid "Value" +msgstr "අගය" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "වගුව තුල සෙවීම" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "සංස්කරණය/ඇතුල් කරන්න" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "පේළි තෝරන්න (අවම වශයෙන් එකක්):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "සෙවීම් කොන්දේසි එක් කරන්න (\"where\" වාක්‍යාංශය යටතේ):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "පිටුවකට පේළි ගණන" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "දර්ශනය කිරීමේ අනුපිළිවෙල:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "ලක්ෂ්‍ය ලේබල ගත කිරීමට මෙම තීරය භාවිත කරන්න" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "උපරිම තීර ගණන" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "අන්‍ය අගයන් පිරික්සන්න" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "අමතර සෙවීම් නිර්ණායක" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "තීර දෙකක් සඳහා \"උදාහරණයෙන් විමසුම\" ක් සිදු කරන්න (wildcard: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "\"උදාහරණයෙන් විමසුම\" ක් සිදු කරන්න (wildcard: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "ලක්ෂ්‍ය පිරික්සීම/සංස්කරණය" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "භාවිතා කරන අයුරු" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "ප්‍රතිසකසන්න" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "පූර්වදර්ශනයක් නොමැත." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "ලබාගන්න" @@ -2732,7 +3016,7 @@ msgstr "%s තේමාව හමු නොවිණි!" msgid "Theme path not found for theme %s!" msgstr "%s තේමාව සඳහා තේමාව ඇති තැන හමු නොවිණි!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "තේමාව" @@ -3076,13 +3360,13 @@ msgstr "අර්ථදක්වන ලද අගයන් අඩංගු ල msgid "Cannot connect: invalid settings." msgstr "සම්බන්ධ විය නොහැක : වලංගු නොවන සැකසුමකි." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%s වෙත ආයුබෝවන්" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3091,7 +3375,7 @@ msgstr "" "ඔබ වින්‍යාස ගොනුවක් නොසෑදුවා විය යුතුය. වින්‍යාස ගොනුවක් සෑදීමට %1$sපිහිටුවීමේ විධානාවලිය%2$s " "භාවිතා කිරීම අවශ්‍ය විය හැකිය." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3106,58 +3390,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "mcrypt හි Blowfish භාවිතා කිරීම අසමත් විය!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "මෙම ස්ථානයයෙන් පසු JavaScript සක්‍රිය කර තිබීම අවශ්‍යය" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "ප්‍රවේශ වන්න" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "ඔබට සේවාදායකය/IP ලිපිනය සහ පොර්ට් අංකය හිස්තැනක් මගින් වෙන්කර ඇතුල් කල හැක." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "සේවාදායකය:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "භාවිත නාමය:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "මුරපදය:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "සේවාදායකයේ තේරීම" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "මෙම ස්ථානය පසු කිරීම සඳහා කුකීස් - Cookies සක්‍රිය කල යුතුයි." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "මුර පදයක් නොමැතිව ඇතුල් වීම ඔබගේ සිටුවම් මගින් වලකා ඇත. (AllowNoPassword බලන්න)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "පසුගිය තත්පර %s තුල අක්‍රීයයි; නැවත ඇතුළු වන්න" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL සේවාදායකයට ලොග් විය නොහැක" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "වැරදි භාවිත නාමය/මුරපදය. පිවිසුම වලක්වා ඇත." @@ -3189,7 +3469,7 @@ msgstr "හවුල්" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "වගු" @@ -3201,13 +3481,13 @@ msgstr "වගු" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "දත්ත" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "පිරිවැය" @@ -3232,235 +3512,213 @@ msgstr ""%s" දත්තගබඩාව සඳහා වරප්‍ msgid "Check Privileges" msgstr "වරප්‍රසාද පරීක්ෂා කරන්න" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "විය හැකි අයුතු ප්‍රයෝජන ගැනීමක්" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "සංඛ්‍යාත්මක යතුරක් අනාවරණය වුණි" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "වින්‍යාස ගොනුව කියවීමට අසමත් විය" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "මෙහි සාමාන්‍ය අරුත වාක්‍ය වින්‍යාස දෝෂයකි, කරුණාකර පහත දැක්වෙන දෝෂ පරීක්ෂා කර බලන්න." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "%1$s වෙතින් පෙරනිමි සිටුවම් පූරණය කර ගත නොහැකි විය" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" "[code]$cfg['PmaAbsoluteUri'][/code] සඳහා අගය ඔබගේ වින්‍යාස ගොනුවේ අඩංගු විය යුතුමය!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "අවලංගු සේවාදායක සුචිය: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s සේවාදායකය සඳහා වැරදි දායක නාමයක්. ඔබ ඔබගේ වින්‍යාසයන් පරීකෂා කර බැලිය යුතුය." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "වින්‍යසයන්හි වලංගු නැති සත්‍යාපන ක්‍රමයක් සිටුවා ඇත:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "ඔබ %s %s හෝ ඉන්පසු අනුවාදයක් වෙත යාවත්කාලීන කල යුතුය." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "විය හැකි අයුතු ප්‍රයෝජන ගැනීමක්" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "සංඛ්‍යාත්මක යතුරක් අනාවරණය වුණි" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "උපරිම: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "ලියකියවිලි" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL විමසුම" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL පවසන ලදි: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "SQL වලංගු කරණයට සම්බන්ද වීම අසමත් විය!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL ය පහදන්න" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "SQL ය පහදා දීමෙන් ඉවත් වන්න" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP කේත නොමැතිව" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "අලුත් කරන්න" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL සත්‍යාපනයෙන් ඉවත් වන්න" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL සත්‍යාපනය" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "මෙම විමසුමේ පේළිගත සංස්කරණය" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "පේළිගත" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "ඉරිදා" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y දින %I:%M %p ට" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "නොමැති පරාමිතිය:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "ඇරඹුම" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "පෙර" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "මීලඟ" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "අවසන" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr ""%s" දත්තගබඩාව වෙත යන්න." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s විශේෂාංගයෙහි හඳුනාගත් දෝෂයක් ඇත, %s බලන්න" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "මාරු කිරීමට ක්ලික් කරන්න" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "පරිගණකය තුළ පිරික්සන්න:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "ක්‍රියාත්මක කරන්න" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "මුද්‍රණය කරන්න" @@ -3490,8 +3748,8 @@ msgid "Closed" msgstr "වසන ලද" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "අක්‍රිය" @@ -3632,9 +3890,9 @@ msgstr "පෙරනිමි අගය ප්‍රතිස්ථාපනය msgid "Allow users to customize this value" msgstr "මෙම අගය වෙනස් කිරීමට භවිතා කරන්නන්ට ඉඩ දෙන්න" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "ප්‍රතිසකසන්න" @@ -3850,10 +4108,6 @@ msgstr "වගු සැකිල්ලට අදාල ක්‍රියාව msgid "Show binary contents as HEX by default" msgstr "පෙරනිමිය ලෙස ද්වීමය දත්ත HEX ලෙස පෙන්වන්න" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "ද්වීමය දත්ත HEX ලෙස පෙන්වන්න" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "දත්තගබඩා පතනයක් ලෙස නොව ලැයිස්තුවක් ලෙස පෙන්වන්න" @@ -3910,7 +4164,7 @@ msgstr "" msgid "Maximum execution time" msgstr "උපරිම ක්‍රියාත්මක කාලය" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "ගොනුවක් ලෙස තෝරන්න" @@ -3919,7 +4173,7 @@ msgid "Character set of the file" msgstr "ගොනුවේ අක්ෂර කට්ටලය" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "ආකෘතිය" @@ -4023,7 +4277,7 @@ msgid "MIME type" msgstr "MIME වර්ගය" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "සබඳතා" @@ -5550,9 +5804,9 @@ msgstr "SQL වලංගු කරණය සක්‍රීය කිරීම #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "මුරපදය" @@ -5827,32 +6081,24 @@ msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩි msgid "Details..." msgstr "තොරතුරු..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"සමහර විට ආසන්න වශයෙන්. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/" -"a] බලන්න" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "වින්‍යාසයන් හි අර්ථදක්වා ඇති පරිදි පරිපාලක භාවිතා කරන්නා ලෙස සම්බන්ධ වීම අසමත් විය." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "මුරපදය වෙනස් කරන්න" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "මුරපදයක් නැත" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "නැවත ටයිප් කරන්න" @@ -5873,22 +6119,22 @@ msgstr "දත්තගබඩාවක් සාදන්න" msgid "Create" msgstr "සාදන්න" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "වරප්‍රසාද නොමැත" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "නම" @@ -6048,25 +6294,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "MySQL සේවාදායකයාගේ සංස්කරණය" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "%2$s ශාඛාවේ %1$s සංස්කරණය" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "ශාඛාවක් නොමැත" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Git සංස්කරණය" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "%1$s %2$s විසින් එක් කරන ලද" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "%1$s %2$s විසින් රචිත" @@ -6181,384 +6427,238 @@ msgstr "ආකෘති-විශේෂී තෝරා ගැනීම්:" msgid "Language" msgstr "භාෂාව" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "සංස්කරණය කල දත්ත සුරකින්න" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "තීර අනුපිලිවල ප්‍රතිෂ්ඨාපනය කරන්න" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "ආරම්භක පේළිය" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "පේළි ගණන" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "ප්‍රකාරය" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "තිරස්" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "තිරස් (rotated headers)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "සිරස්" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "ශීර්ෂක, පේළි %s කට වරක්" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "යතුර අනුව තෝරන්න" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "විකල්ප" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "අර්ධ පෙළ" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "පූර්ණ පෙළ" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "සබැඳි යතුර" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "සබැඳි දර්ශන තීරය" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "ද්වීමය දත්ත පෙන්වන්න" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "BLOB දත්ත පෙන්වන්න" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "බ්‍රව්සර රූපාන්තරනය සඟවන්න" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Well Known Text" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Well Known Binary" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "පේළිය ඉවත් කරන ලදි" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "නවතා දමන්න" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "විමසුම තුල" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "පේළි පෙන්වමින්" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "මුළු එකතුව" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "විමසුම් ප්‍රථිඵල සඳහා මෙහෙයුම්" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "මුද්‍රණ දර්ශනය (පූර්ණ පෙළ සමඟින්)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "ප්‍රස්තාරගත කරන්න" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "ජ්‍යාමිතික දත්ත නිරූපණය" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "දසුනක් සාදන්න" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "සබැඳිය හමු නොවිණි" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "අනුවාදය පිළිබඳ තොරතුරු" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "දත්ත මුල් පිටුව" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "සියලුම InnoBD දත්ත ගොනු වල පෙතෙහි පොදු කොටස." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "දත්ත ගොනු" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "ස්වයංක්‍රීය-විස්තීරණ ප්‍රමාණය" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "වගුවේ ඉඩ මදිවී වගුව ස්වයංක්‍රීයව විශාල කිරීමේදී විශාල කල යුතු ප්‍රමාණය." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "තම වගු වල දත්ත සහ සුචි කෑෂ්ගත කිරීමට InnoDB භාවිතා කරන මතක බෆරයේ ප්‍රමාණය." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Buffer Pool" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB තත්වය" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "පිටු" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "නිදහස් පිටු" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "අපවිත්‍ර පිටු" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "දත්ත අඩංගු පිටු" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "කාර්ය බහුල පිටු" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "කියවීම සඳහා වූ ඉල්ලීම්" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "ලිවීම සඳහා වූ ඉල්ලීම්" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Read misses" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Write waits" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "ලොග කෑෂ් විශාලත්වය" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6566,48 +6666,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "ලොග බෆරයේ විශාලත්වය" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6615,18 +6715,18 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "අදාල සබැඳි" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "Paul McCullagh ගේ PrimeBase XT බ්ලොගය" @@ -6673,14 +6773,14 @@ msgstr "වගු සඳහා නික්ෂේප දත්ත" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "සිද්ධිය" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "අර්ථ දැක්වීම" @@ -6738,14 +6838,14 @@ msgstr "MIME වර්ග පෙන්වන්න" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "දායකයා" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "උත්පාදන වේලාව" @@ -6948,21 +7048,12 @@ msgstr "දසුන්" msgid "Export contents" msgstr "අන්තර්ගතය අපනයනය කරන්න" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "නව phpMyAdmin කවුළුවක් විවෘත කරන්න" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "ජ්‍යාමිතික නිරූපණයට දත්ත කිසිවක් හමු නොවිණි." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL හිස් ප්‍රතිඵල කුලකයක් (පේළි කිසිවක් අඩංගු නොවන) සපයන ලදි." @@ -7060,12 +7151,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "වගුවේ නම" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "තීර නම්" @@ -7133,91 +7224,75 @@ msgstr "SQL ගැළපුම් ප්‍රකාරය:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "ශුන්‍ය අගයන් සඳහා AUTO_INCREMENT භාවිතා නොකරන්න" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "ශ්‍රිතය" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "සඟවන්න" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "ද්වීමය" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "මෙහි දිග නිසා,
    මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "ද්වීමය - සංස්කරණය නොකරන්න" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "සංස්කරණය/ඇතුල් කරන්න" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "අනතුරුව" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "දෝෂ නොසලකමින් නව පේළියක් ලෙස ඇතුල් කරන්න" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "ඇතුල් කිරීමේ විමසුම පෙන්වන්න" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "පෙර පිටුවට ආපසු යන්න" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "නව පේළියක් එක් කරන්න" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "මෙම පිටුව වෙත ආපසු යන්න" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "මීලඟ පේළිය සංස්කරණය කරන්න" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "අගය" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "SQL විමසුම පෙන්වමින්" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "%1$d පේළිය ඇතුල් කරන ලදි" @@ -7232,32 +7307,32 @@ msgstr "නැත" msgid "Convert to Kana" msgstr "Kana වෙත පරිවර්තනය කරන්න" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "සිට" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "දක්වා" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "ඉදිරිපත් කරන්න" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "වගු නාම මූලයක් එක් කරන්න" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "නාම මූලයක් එක් කරන්න" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "පහත විමසුම ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "වෙනස්කම් නැත" @@ -7467,90 +7542,90 @@ msgstr "යාත්‍රණ රාමුව ප්‍රතිපූර්ණ msgid "This format has no options" msgstr "මෙම ආකෘතියේ ආකෘති-විශේෂී තෝරා ගැනීම් කිසිවක් නැත" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "OK නැත" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "සක්‍රිය කරන ලද" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "වගු සබඳතා වලට අදාල සාමාන්‍ය විශේෂාංග" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "දර්ශන ලක්ෂණ" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF සෑදීම" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "තීර විස්තර පෙන්වීම" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "බ්‍රව්සර රූපාන්තරනය" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "ඔබගේ column_comments වගුව යාවත්කාලීන කරන්නේ කෙසේද යන්න පිළිබඳව ලියකියවිලි බලන්න" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "පොත් සලකුණු කරන ලද SQL විමසුම" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL ඉතිහාසය" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "කල්පවතිනා ලෙස සටහන් කෙරෙන මෑතදී භාවිතා කල වගු" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "කල්පවතිනා ලෙස සටහන් කෙරෙන වගු අතුරු මුහුණත සම්බන්ධ අභිරුචි" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "භාවිතා කරන්නාගේ අභිරුචි" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "examples/create_tables.sql භාවිතා කර අවශ්‍ය කරන වගු තනා ගන්න." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "පරිපාලක භාවිතා කරන්නෙක් තනා ඔහුට මෙම වගු සඳහා පරිශීලන වරප්‍රසාද ලබා දෙන්න." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "යාවත්කාලීන කරන ලද වින්‍යාස ගොනුව පූරණය සඳහා phpMyAdmin වෙත නැවත වරක් ඇතුල් වන්න." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "විස්තරයක් නොමැත" @@ -7558,7 +7633,7 @@ msgstr "විස්තරයක් නොමැත" msgid "Slave configuration" msgstr "Slave සඳහා වින්‍යාසයන්" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Master සේවාදායකය වෙනස් කරන්න හෝ නැවත වින්‍යාස කරන්න" @@ -7572,13 +7647,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "භාවිත නාමය" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "පෝර්ට්" @@ -7591,7 +7666,7 @@ msgid "Slave status" msgstr "Slave සේවාදායකයේ තත්වය" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "විචල්‍යය" @@ -7606,38 +7681,38 @@ msgid "" msgstr "" "--report-host=host_name විකල්පය සමඟ ඇරඹි slave සේවාදායක පමණක් මෙම ලැයිස්තුවේ පෙන්වයි." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "ඕනෑම භාවිතා කරන්නෙක්" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "ඕනෑම දායකයෙක්" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "ස්වදේශී" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "මෙම දායකයා" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "දායක වගුව භාවිතා කරන්න" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7652,7 +7727,7 @@ msgstr "මුරපදය උත්පාදනය කරන්න" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7683,88 +7758,89 @@ msgstr "%1$s සිද්ධිය සාදන ලදි." msgid "One or more errors have occured while processing your request:" msgstr "ඔබගේ ඉල්ලීම පිරිසකසන අතරතුර දෝෂ එකක් හෝ වැඩි ගණනක් ඇති විය:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "සිද්ධිය සංස්කරණය කරන්න" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "තොරතුරු" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "සිද්ධියේ නම" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "සිද්ධි වර්ගය" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "%s ලෙස වෙනස් කරන්න" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "ක්‍රියාත්මක කල යුත්තේ" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "ක්‍රියාත්මක කරන්න සෑම" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "අරඹන්න" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "නවතන්න" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "සමාප්තියේදී සුරකින්න" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "අර්ථ දක්වන්නා" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "අර්ථ දක්වන්නා \"භාවිත නාමය@සේවාදායක නාමය\" ආකෘතියේ විය යුතුය" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "ඔබ සිද්ධිය සඳහා නමක් ලබාදිය යුතුයි" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "ඔබ සිද්ධිය සඳහා වලංගු කාල පරතරයක් ලබාදිය යුතුයි." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "ඔබ සිද්ධිය සඳහා වලංගු ක්‍රියාත්මක කිරීමේ වෙලාවක් ලබාදිය යුතුයි." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "ඔබ සිද්ධිය සඳහා වලංගු වර්ගයක් ලබාදිය යුතුයි." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "ඔබ සිද්ධි අර්ථ දැක්වීමක් ලබාදිය යුතුයි." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "නව" @@ -7793,7 +7869,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "වලංගු නැති නෛත්‍යක වර්ගය: \"%s\"" @@ -7812,69 +7888,69 @@ msgstr "%1$s නෛත්‍යකය වෙනස් කරන ලදී." msgid "Routine %1$s has been created." msgstr "%1$s නෛත්‍යකය සාදන ලදි." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "නෛත්‍යකය සංස්කරණ කරන්න" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "නෛත්‍යකයේ නම" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "පරාමිතියන්" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "දිශාව" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "දිග/අගයන්" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "පරාමිතය එක් කරන්න" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "අවසන් පරාමිතය ඉවත් කරන්න" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "ප්‍රතිදාන වර්ගය" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "ප්‍රතිදානයේ දිග/අගයන්" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "ප්‍රතිදාන විකල්ප" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "නිර්ණයනය කල හැකිද යන වග" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "ආරක්ෂණ වර්ගය" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "SQL දත්ත පරිශීලනය" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "ඔබ නෛත්යකය සඳහා නමක් ලබාදිය යුතුයි" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "පරාමිතිය සඳහා සපයන ලද \"%s\", දිශාව සඳහා වැරදි අගයකි." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7882,37 +7958,37 @@ msgstr "" "ENUM, SET, VARCHAR සහ VARBINARY වර්ගවල නෛත්‍යක පරාමිති සඳහා ඔබ ප්‍රමාණය/අගයන් ලබා දිය " "යුතුය." -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "සෑම නෛත්‍යක පරාමිතියක් සඳහාම ඔබ නමක් සහ වර්ගයක් ලබා දිය යුතුය." -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "නෛත්‍යකය සඳහා ඔබ වලංගු ප්‍රතිදාන වර්ගයක් ලබා දිය යුතුය." -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "ඔබ නෛත්‍යක අර්ථදක්වීමක් ලබා දිය යුතුය." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "%s නෛත්‍යකයේ ප්‍රතිදානය" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "නෛත්‍යකය ක්‍රියාත්මක කරන්න" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "නෛත්‍යක පරාමිති" @@ -7930,36 +8006,36 @@ msgstr "%1$s ප්‍රේරකය වෙනස් කරන ලදි." msgid "Trigger %1$s has been created." msgstr "%1$s ප්‍රේරකය සාදන ලදි." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "ප්‍රේරකය සංස්කරණය කරන්න" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "ප්‍රේරකයේ නම" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "වේලාව" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "ඔබ ප්‍රේරකය සඳහා නමක් ලබාදිය යුතුයි" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "ඔබ ප්‍රේරකය සඳහා වලංගු වේලාවක් ලබාදිය යුතුයි" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "ඔබ ප්‍රේරකය සඳහා වලංගු සිද්ධියක් ලබාදිය යුතුයි" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "ඔබ වලංගු වගු නාමයක් ලබාදිය යුතුයි" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "ඔබ ප්‍රේරක අර්ථදක්වීමක් ලබා දිය යුතුය." @@ -8043,7 +8119,7 @@ msgstr "පෙන්වීම සඳහා සිද්ධි නොමැත." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8052,7 +8128,7 @@ msgstr "%s නමින් වගුවක් නොපවතියි!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8060,7 +8136,7 @@ msgid "Please configure the coordinates for table %s" msgstr "කරුණාකර %s වගුව සඳහා ඛණ්ඩාංක අගයන් සිටුවන්න" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8071,27 +8147,27 @@ msgstr "%s දත්තගබඩාවේ ක්‍රමානුරූපය - msgid "This page does not contain any tables!" msgstr "මෙම පිටුවේ වගු කිසිවක් අඩංගු නොවේ!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "ක්‍රමානුරූප දෝෂය: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "ක්‍රමානුරූපය" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "පටුන" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "ගුණාංග" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "අතිරේක" @@ -8197,7 +8273,7 @@ msgstr "%1$s නොදන්නා භාෂාවකි." msgid "Current Server" msgstr "වත්මන් සේවාදායකය" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "මූලාශ්‍ර දත්ත ගබඩාව" @@ -8215,7 +8291,7 @@ msgstr "දුරස්ථ සේවාදායකය" msgid "Difference" msgstr "වෙනස" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "ඉලක්කගත දත්තගබඩාව" @@ -8234,7 +8310,7 @@ msgstr "SQL විමසුමක් සිදු කරන්න/%s සේව msgid "Run SQL query/queries on database %s" msgstr "SQL විමසුමක් සිදු කරන්න/%s දත්තගබඩාව මත විමසුම්" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "මකන්න" @@ -8243,11 +8319,11 @@ msgstr "මකන්න" msgid "Columns" msgstr "තීර" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" @@ -8329,7 +8405,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "%s සඳහා අවධානය සක්‍රීයයි." @@ -8359,8 +8435,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "සූචිය" @@ -8406,13 +8482,13 @@ msgstr "කිසිවක් නැත" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "ප්‍රාථමික" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "සම්පූර්ණ පාඨය" @@ -8426,17 +8502,17 @@ msgstr "" msgid "after %s" msgstr "%s ට පසු" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "%s ක්ෂේත්‍ර(ය) එක් කරන්න" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "ඔබ අවම වශයෙන් එක් ක්ෂේත්‍රයක්වත් එක් කල යුතුයි." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "ගබඩා යන්ත්‍ර‍" @@ -8444,41 +8520,6 @@ msgstr "ගබඩා යන්ත්‍ර‍" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "වගුව තුල සෙවීම" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "පේළි තෝරන්න (අවම වශයෙන් එකක්):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "සෙවීම් කොන්දේසි එක් කරන්න (\"where\" වාක්‍යාංශය යටතේ):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "පිටුවකට පේළි ගණන" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "දර්ශනය කිරීමේ අනුපිළිවෙල:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "අන්‍ය අගයන් පිරික්සන්න" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "\"උදාහරණයෙන් විමසුම\" ක් සිදු කරන්න (wildcard: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8619,11 +8660,11 @@ msgstr "" msgid "Manage your settings" msgstr "සිටුවම් පරිපාලනය" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "වෙනස් කිරීම් සුරකින ලදි" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8636,7 +8677,7 @@ msgstr "" msgid "Could not save configuration" msgstr "වින්‍යාස සුරැකීම අසමත් විය" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8664,7 +8705,7 @@ msgid "Appearance Settings" msgstr "මුහුණුවර සම්බන්ධ සිටුවම්" # සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "තවත් සිටුවම්" @@ -8684,9 +8725,9 @@ msgstr "මෘදුකාංග අනුවාදය" msgid "Protocol version" msgstr "ප්‍රෝටකෝල අනුවාදය" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "භාවිතා කරන්නා" @@ -8801,129 +8842,129 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "දත්තගබඩා නොමැත" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "වගු නමින් පෙරහන්න" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "වගු නමින් පෙරහන්න" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "වගුවක් සාදන්න" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "කරුණාකර දත්තගබඩාවක් තෝරන්න" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "වම් මෙනුව පෙන්වන්න/සඟවන්න" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "ස්ථාපිතය සුරකින්න" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "සම්බන්දතාවයක් සාදන්න" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "ප්‍රතිපූරණය" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "උදවු" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "ආංශික සබැඳුම" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "ඍජු සබැඳුම" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "සබඳතා දක්වන ඉරි පෙන්වන්න/සඟවන්න" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "විමසුම ගොඩ නඟන්න" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "සියල්ල පෙන්වන්න/සඟවන්න" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "වගු ගණන" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "Relation view" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "හැර" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "උප විමසුම" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "නව නාමය" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "නව නාමය" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "එකතු කරන්න" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "සක්‍රිය විකල්ප" @@ -8935,51 +8976,51 @@ msgstr "පිටුව සාදන ලදි" msgid "Page creation failed" msgstr "පිටුව සෑදීම අසමත් විය" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "පිටුව" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "තෝරාගත් පිටු ආනයනය කරන්න" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "තෝරාගත් පිටු අපනයනය කරන්න" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "පිටුවක් සාදා අපනයනය කරන්න" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "නව පිටු නාමය: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "අභ්‍යන්තර සබඳතා එක් කරන ලදි" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "සම්බන්දතාවය ඉවත් කරන ලදී" @@ -8991,51 +9032,51 @@ msgstr "" msgid "Modifications have been saved" msgstr "වෙනස් කිරීම් සුරකින ලදි" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "වින්‍යාස ආනයනය අසමත් විය" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "ගොනුවකින් ආනයනය කරන්න" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "බ්‍රවුසරයේ ගබඩාවෙන් ආනයනය කරන්න" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "බ්‍රවුසරයේ ගබඩාවෙන් සිටුවම් ආනයනය කෙරෙනු ඇත." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "සුරැකූ සිටුවම් නොමැත!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "වත්මන් වින්‍යාස සමග ඒකාබද්ධ කරන්න" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9044,36 +9085,36 @@ msgstr "" "config.inc.php වෙනස් කිරීම මඟින් ඔබට තවත් සිටුවම් සිටුවිය හැකිය. උදා. %sSetup script%s " "භාවිතා කිරීමෙන්." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "බ්‍රවුසරයේ ගබඩාවේ සුරකින්න" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "බ්‍රවුසරයේ ගබඩාවේ සිටුවම් සුරැකෙනු ඇත." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "වත්මන් සිටුවම් උඩින් නව සිටුවම් ලියැවේ!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "ඔබගේ සියලුම සිටුවම් ප්‍රතිසකසා ඒවා පෙරනිමි අගයන් වෙත ප්‍රතිෂ්ඨාපනය කල හැක." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "ගොනු ආනයනය" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "සියලු" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "ගොනුව නොපවතියි" @@ -9081,17 +9122,17 @@ msgstr "ගොනුව නොපවතියි" msgid "Select binary log to view" msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය තෝරන්න" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "ගොනු" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" @@ -9107,7 +9148,7 @@ msgstr "පිහිටුම" msgid "Original position" msgstr "මුල් පිහිටුම" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "තොරතුරු" @@ -9115,31 +9156,31 @@ msgstr "තොරතුරු" msgid "Character Sets and Collations" msgstr "අක්ෂර කට්ටල සහ ‍Collations" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "දත්තගබඩා %1$d ක් සාර්ථකව හලන ලදි." msgstr[1] "දත්තගබඩා %1$d ක් සාර්ථකව හලන ලදි." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "දත්තගබඩා සංඛ්‍යා ලේඛන" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "සංඛ්‍යා ලේඛන සක්‍රිය කරන්න" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9151,369 +9192,369 @@ msgstr "" msgid "Storage Engines" msgstr "ගබඩා යන්ත්‍ර" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "අරඹන්න" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "අනුවාදය" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "අක්‍රීයයි" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "ප්‍රේරක සැදීමට හා ඉවත් කිරීමට අවසර ලබා දෙයි" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "වරප්‍රසාද නොමැත." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "කිසිවක් නැත" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "වගු-විශේෂී වරප්‍රසාද" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "සටහන: MySQL වරප්‍රසාද නම් සඳහන් වනුයේ ඉංග්‍රීසියෙනි" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "පරිපාලනය" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "ගෝලීය වරප්‍රසාද" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "දත්තගබඩා විශේෂිත වරප්‍රසාද" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "සම්පත් සීමා" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "සටහන: මෙම විකල්පය 0 (බිංදුවට) පත් කිරීම මගින්සීමා ඉවත් වනු ලැ‍‍බේ." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "ලොගින තොරතුරු" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "මුරපදය වෙනස් නොකරන්න" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "භාවිතා කරන්නන් හමු නොවිණි." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "%s භාවිතා කරන්නා දැනටමත් පවතී!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "ඔබ %s සඳහා වරප්‍රසාද අලුත් කර ඇත." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "ඔබ %s සඳහා වරප්‍රසාද අහෝසි කර ඇත" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "%s ගේ මුරපදය සාර්ථකව වෙනස් කරන ලදි." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "%s ඉවත් කරමින් පවතී" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "ඉවත් කිරීම සඳහා භාවිතා කරන්නන් කිසිවෙක් තෝරාගෙන නොමැත!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "වරප්‍රසාද පූරණය කෙරෙමින්" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "තෝරාගත් භාවිතා කරන්නන් සාර්ථකව ඉවත් කරන ලදි." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "සාර්ථකව වරප්‍රසාද පූරණය කරන්න ලදි." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "වරප්‍රසාද සංස්කරණය කරන්න" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "අහෝසි කරන්න" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "සියල්ල අපනයනය කරන්න" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "ඕනෑම" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "සියලුම භාවිතා කරන්නන් සඳහා වරප්‍රසාද" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "%s සඳහා වරප්‍රසාද" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "භාවිතා කරන්නන් පිළිබඳ දළ විශ්ලේෂණය" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "ප්‍රදානය කරන්න" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කරන්න" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "භාවිතා කරන්නන්ගේ සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව ඔවුන් ඉවත් කරන්න." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9525,127 +9566,127 @@ msgstr "" "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " "වඩා වෙනස් විය හැකිය. එවැනි අවස්ථාවක ඔබ %sවරප්‍රසාද පූරණය%s කල යුතුය." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "තෝරාගත් භාවිත කරන්නා වරප්‍රසාද වගුවේ හමු නොවිණි." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "තීර-විශේෂී වරප්‍රසාද" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "පහත දත්තගබඩාවට වරප්‍රසාද එක් කරන්න" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිතා කරන්නා පිටපත් කරන්න" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... පැරණි එක තබා ගන්න." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... පැරැන්නෙන් සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව එය ඉවත් කරන්න." -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "භාවිතා කරන්නා සඳහා දත්තගබඩාව" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "එකම නමින් දත්තගබඩාවක සාදා සියලු වරප්‍රසාද එයට දෙන්න" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද දෙන්න (භාවිත නාමය\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" දත්තගබඩාව සඳහා සියලු වරප්‍රසාද ප්‍රදානය කරන්න" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr ""%s" වෙත ප්‍රවේශ වරප්‍රසාද ඇති භාවිතා කරන්නන්" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "ගෝලීය" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "දත්තගබඩා විශේෂිත" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "භාවිතා කරන්නා එක් කරන ලදි." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "හඳුනා නොගත් දෝෂය" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "master %s වෙත සම්බන්ධ විය නොහැක." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Master වෙනස් කල නොහැක" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Master සේවාදායකය %s වෙත සාර්ථකව වෙනස් කරන ලදි" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක master ලෙස සකසා ඇත." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Master හි තත්වය පෙන්වන්න" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "සම්බන්ධිත salves පෙන්වන්න" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9654,11 +9695,11 @@ msgstr "" "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක master ලෙස සකසා නැත. එසේ සකස් " "කිරීමට ඔබ කැමතිද?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Master සැකසුම" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9667,19 +9708,19 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "සියලුම දත්තගබඩා අනුරූකරන්න; අතහරින්න:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "සියලු දත්තගබඩා නොසලකා හරින්න, අනුරූ කරන්න:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "කරුණාකර දත්තගබඩා තෝරන්න:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -9687,7 +9728,7 @@ msgstr "" "දැන් පහත දැක්වෙන පේළි ඔබගේ my.cnf හි [mysqld] කොටසේ අවසානයට එක්කර අනතුරුව සේවාදායකය " "නැවත පණගන්වන්න." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -9696,80 +9737,80 @@ msgstr "" "සේවාදායකය නැවත පණගැන්වීමෙන් අනතුරුව යන්න බොත්තම ඔබන්න. ඉන් අනතුරුව මෙම සේවාදායකය master " "ලෙස සකසා ඇති බවට පණිවිඩයක් දර්ශනයවනු ඇත" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Slave SQL ත්‍රෙඩය අක්‍රීයයි!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Slave IO ත්‍රෙඩය අක්‍රීයයි!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "සේවාදායකය අනුරූ ක්‍රියාවලියක slave ලෙස සකසා ඇත. ඔබ කැමතිද:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "slave තත්ව වගුව බලන්න" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "දත්තගබඩාව master සමඟ සමමුහුර්තනය කරන්න" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "පූර්ණ ඇරඹුම" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "පූර්ණ නැවතුම" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "slave ප්‍රත්‍යාරම්භ කරන්න" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "SQL ත්‍රෙඩය පමණක් අරඹන්න" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "SQL ත්‍රෙඩය පමණක් නවත්තන්න" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "IO ත්‍රෙඩය පමණක් අරඹන්න" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "IO ත්‍රෙඩය පමණක් නවත්තන්න" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "දෝෂ කළමනාකරණය:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "දෝෂ අතහැර යාම සමමුහුර්තනය නොවූ master හා slave ඇති කරවිය හැක!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "වත්මන් දෝෂය මගහරින්න" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "ඊළඟ මඟහරින්න" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "දෝෂ." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -9778,126 +9819,126 @@ msgstr "" "මෙම සේවාදායකය අනුරූකරණ ක්‍රියාවලියක slave ලෙස සකසා නැත. එසේ සකස් " "කිරීමට ඔබ කැමතිද?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "හසුරුවනය" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "විමසුම් කෑෂ්" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "ත්‍රෙඩයන්" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "තාවකාලික දත්ත" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "ප්‍රමාදිත ඇතුළු කිරීම්" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "යතුරු කෑෂ් කිරීම" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "ඈඳුම්" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "තේරීම" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Flush (close) all tables" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "විවෘත වගු පෙන්වන්න" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "උපදායකයන් පෙන්වන්න" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "උපතත්වයන් පෙන්වන්න" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Flush query cache" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "ධාවන කාල තොරතුරු" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "සියලුම තත්ත්ව විචල්‍යයන්" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "අධීක්ෂකය" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "උපදේශකය" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "යාවත්කාලීන කිරීමේ ශ්‍රීඝ‍්‍රතාව: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "පෙරහන්" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "වචනය අඩංගු:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "අනතුරුදායක අගයන් පමණක් පෙන්වන්න" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "වර්ගය මත පෙරන්න..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "ආකෘතික අගයන් පෙන්වන්න" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "අදාල සබැඳි:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "විශ්ලේශකය ක්‍රියාත්මක කරවන්න" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "උපදෙස්" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -9905,7 +9946,7 @@ msgstr "" "සේවාදායක තත්ත්ව විචල්‍යයන් අධ්‍යයනය කිරීමෙන් සේවාදායක විචල්‍යයන්ට අදාල නිර්දේශ ලබා දීමට උපදේශක " "පද්ධතියට හැකිය." -#: server_status.php:918 +#: server_status.php:917 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 " @@ -9914,7 +9955,7 @@ msgstr "" "කෙසේ වෙතත් මෙම නිර්දේශ ලබා දෙනුයේ සරල ගණනය කිරීම් හා ආනුභූතික රීති පදනම් කරගෙන බවත් එම නිසා " "එවැනි නිර්දේශ ඔබගේ පද්ධතියට අදාල නොවීමට ඉඩ ඇති බවත් සලකන්න." -#: server_status.php:920 +#: server_status.php:919 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 " @@ -9924,7 +9965,7 @@ msgstr "" "වෙනස්කම් ප්‍රතිවර්තනය කරන්නේ කෙසේද යන්න දැනගන්න. වැරදි සුසර කිරීම් මඟින් පද්ධතියේ කාර්යසාධනය " "තවදුරටත් නරක විය හැකිය." -#: server_status.php:922 +#: server_status.php:921 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 " @@ -9935,31 +9976,31 @@ msgstr "" "කිරීම් ප්‍රතිවර්තනය කිරීමත් ය." #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "ආරම්භයේ සිට සේවාදායකය වෙත යැවුණු ප්‍රශ්න ගණන: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "ප්‍රකාශය" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "ආරම්භයේ සිට ජාලය හරහා ගමන් ගත් දත්ත ප්‍රමාණය: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -9967,15 +10008,15 @@ msgstr "" "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී master හා slave " "ලෙස ක්‍රියාකරයි." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී master ලෙස ක්‍රියාකරයි." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී slave ලෙස ක්‍රියාකරයි." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9983,71 +10024,71 @@ msgstr "" "සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ අංශය වෙත යන්න." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "අනුරූ කරණයේ තත්වය" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "ලබන ලද" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "යවන ලද" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "උපරිම සමගාමී සම්බන්ධතා" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "අසාර්ථක උත්සාහයන්" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "අත්හැර දමන ලදි" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "හැඳුනුම් අංකය" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "විධානය" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL සේවාදායකය හා සම්බන්ද වීමට ගත් අසාර්ථක උත්සාහ ගණන." -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10055,78 +10096,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10134,7 +10175,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10142,42 +10183,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "අභ්‍යන්තරව සිදු කෙරුණු ROLLBACK ප්‍රකාශ ගණන." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "වගුවක පේළියක් යාවත්කාලීන කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "වගුවකට පේළියක් ඇතුලු කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "දත්ත අඩංගු පිටු ගණන (අපවිත්‍ර හෝ පවිත්‍ර)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "දැනට අපවිත්‍රව ඇති පිටු ගණන." -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "නිදහස් පිටු ගණන." -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10185,33 +10226,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10220,251 +10261,251 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "මුළු දත්ත කියැවුම් ගණන." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "මුළු දත්ත ලියැවුම් ගණන." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "මේ දක්වා ලියැවුණු දත්ත ප්‍රමාණය, බයිට වලින්." -#: server_status.php:1365 +#: 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:1366 +#: 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." -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "ලොගය වෙත ලිවීමට කෙරුණු ඉල්ලීම් ගණන." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "ලොග ගොනුව වෙත සිදු කරන ලද fsync() ලිවීම් ගණන." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති fsync ගණන." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති ලිවීම්." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "ලොග ගොනුව වෙත ලියන ලද බයිට ගණන." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "සාදන ලද පිටු ගණන." -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "කියවන ලද පිටු ගණන." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "ලියන ලද පිටු ගණන." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "නිදහස් වන තුරු බලා සිටින පේළි අගුලු ගණන." -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ මධ්‍යන්‍ය කාලය, මිලිතත්පර වලින්." -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "පේළි අගුලු අත්පත් කර ගැනීමට ගතවූ මුළු කාලය, මිලිතත්පර වලින්." -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ උපරිම කාලය, මිලිතත්පර වලින්." -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "පේළි අගුලක් නිදහස් වන තුරු බලා සිටීමට සිදු වූ අවස්ථා ගණන." -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB වගු වලින් ඉවත් කෙරුණු පේළි ගණන." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB වගු වෙත ඇතුල් කෙරුණු පේළි ගණන." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB වගු වෙතින් කියැවුණු පේළි ගණන." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB වගු තුල යාවත්කාලීන කෙරුණු පේළි ගණන." -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "ආනයනය කරන ලද ගොනුවේ ආකෘතිය" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10472,99 +10513,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10572,18 +10613,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10591,49 +10632,49 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "අවධානය අක්‍රීයයි." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "අධීක්ෂණය අරඹන්න" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "උපදෙස්/පිහිටුවීම" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "ප්‍රස්ථාර වෙනස් කර/අනුපිලිවෙල සකස්කර අවසානයි" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "ප්‍රස්ථාර එක් කරන්න" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "ප්‍රස්ථාර වෙනස් කිරීම/අනුපිලිවෙල සකස් කිරීම" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "යාවත්කාලීන කිරීමේ ශ්‍රීඝ‍්‍රතාව" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "ප්‍රස්ථාරයේ තීර" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "ප්‍රස්ථාර සැකසුම" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -10641,15 +10682,15 @@ msgstr "" "ප්‍රස්ථාර සැකැස්ම බ්‍රවුසරයේ ගබඩාවේ ගබඩා කර ඇත. සංකීර්ණ වූ සැකැස්මක් ඇත්නම් ඔබට එය අපනයනය " "කර ගැනීමට අවශ්‍ය විය හැකිය." -#: server_status.php:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "පෙරනිමි අගයන් පිහිටුවන්න" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "අධීක්ෂකය පිලිබඳ උපදෙස්" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10663,7 +10704,7 @@ msgstr "" "general_log ය ඉතා විශාල දත්ත ප්‍රමාණයක් උත්පාදනය කරන බව සහ එමගින් සේවාදායකය මත භාරය " "15% දක්වා ඉහල යා හැකි බව සලකන්න" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10675,11 +10716,11 @@ msgstr "" "MySQL 5.1.6 හෝ පසු අනුවාදයක සිදු කල හැක. කෙසේ නමුත් ඔබට සේවාදායකයේ ප්‍රස්ථාර විශේෂාංග " "භාවිතා කල හැක." -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "අධීක්ෂකය භාවිතා කිරීම:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -10689,7 +10730,7 @@ msgstr "" "ප්‍රස්ථාර එකතු කිරීම, 'සිටුවම්' භාවිතා කරමින් යාවත්කාලීන කරන වේගය වෙනස් කිරීම හෝ අදාල ප්‍රස්ථාරය " "මත ඇති අයිකනය භාවිතා කර ඕනෑම ප්‍රස්ථාරයක් ඉවත් කිරීම සිදු කල හැක." -#: server_status.php:1655 +#: server_status.php:1654 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 " @@ -10701,11 +10742,11 @@ msgstr "" "පූරණය කෙරෙනු ඇත. එහි ඇතුලත් ඕනෑම SELECT ප්‍රකාශයක් ක්ලික් කිරීමෙන් එය තවදුරටත් විශ්ලේෂණය කල " "හැක." -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "කරුණාවෙන් සලකන්න:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10717,196 +10758,196 @@ msgstr "" "මේ සඳහා කුඩා කාල පරාසයක් තෝරා ගැනීමද අධීක්ෂණය තවදුරටත් අවශ්‍ය නොවන විට general_log " "අක්‍රීය කිරීම හා ඊට අයත් වගුව හිස් කිරීම ද නිර්දේශිතය." -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "පෙරසැදි ප්‍රස්ථාර" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "තත්ව විචල්‍ය(ය)" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "ශ්‍රේණිය තෝරන්න:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "සාමාන්‍යයෙන් අධීක්ෂණය කරනු ලබන" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "හෝ විචල්‍ය නාමය යතුරු කරන්න:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "ආන්තර අගයන් ලෙස පෙන්වන්න" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "භාජකයක් භාවිතා කරන්න" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "දත්ත අගයන් සඳහා ඒකකයක් එක් කරන්න" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "මෙම ශ්‍රේණිය එක් කරන්න" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "ශ්‍රේණිය ඉවත් කරන්න" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "ප්‍රස්ථාරයේ ශ්‍රේණි:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "ලොග සංඛ්‍යලේඛන" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "තෝරාගත් කාල පරාසය:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "SELECT,INSERT,UPDATE සහ DELETE ප්‍රකාශ පමණක් ලබාගන්න" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "වඩා හොඳ සමූහනයන් සඳහා INSERT ප්‍රකාශ වල අඩංගු විචල්‍ය දත්ත ඉවත් කරන්න" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "සංඛ්‍යාලේඛන උත්පාදනය කල යුත්තේ කුමන ලොගයෙන් දැයි තෝරන්න." -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "ප්‍රතිඵල විමසුම් පෙළ මගින් සමූහනය කර ඇත." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "විමසුම් විශ්ලේශකය" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "තත්පර %dක්" msgstr[1] "තත්පර %dක්" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "මිනිත්තු %dක්" msgstr[1] "මිනිත්තු %dක්" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "මූලාශ්‍රය වෙත සම්බන්ද විය නොහැකි විය" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "ඉලක්කය වෙත සම්බන්ද විය නොහැකි විය" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' දත්තගබඩාව නොමැත." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "සැකිල්ල සමමුහුර්ත කරණය" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "දත්ත සමමුහුර්ත කරණය" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "නොමැති" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "ආකෘති වෙනස" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "දත්ත වෙනස" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "පේළි(යක්) එක් කරන්න" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "පේළි(යක්) ඉවත් කරන්න" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "පේළි(යක්) වෙනස් කරන්න" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "සුචි(ය) ඉවත් කරන්න" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "සුචි(ය) යොදන්න" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "පේළි(ය) යාවත්කාලීන කරන්න" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "පේළි(ය) ඇතුල් කරන්න" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "ඉලක්කගත වගුවෙන් සියලුම පෙර තීරු ඉවත් කිරීමට‍ ඔබ කැමතිද?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "තෝරාගත් වෙනස්කම් යොදන්න" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "දත්තගබඩා සමමුහුර්ත කරන්න" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "ඉලක්ක ලෙස තෝරාගත් වගු මූලාශ්‍ර වගු සමඟ සමමුහුර්ත කර ඇත." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "ඉලක්ක දත්තගබඩා මූලාශ්‍ර දත්තගබඩා සමඟ සමමුහුර්ත කර ඇත" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "ක්‍රියාත්මක කරන ලද විමසුම්" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "අතින් ඇතුල් කරන්න" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "වත්මන් සම්බන්ධතාව" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "සැකසුම : %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "සොකට්" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10914,19 +10955,19 @@ msgstr "" "ඉලක්ක දත්තගබඩාව මූලාශ්‍ර දත්තගබඩාව සමඟ සම්පූර්ණයෙන් සමමුහුර්ත වෙයි. මූලාශ්‍ර දත්තගබඩාව නොවෙනස්ව " "පවතියි." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "විචල්‍යය සිටුවීම අසමත් විය" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "සේවාදායකයේ විචල්‍යයන් සහ සිටුවම්" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "සැසි අගය" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "ගෝලීය අගය" @@ -11222,155 +11263,155 @@ msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em] msgid "Wrong data" msgstr "වැරදි දත්ත" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "පහත විමසුම ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "PHP කේත ලෙස පෙන්වමින්" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "තහවුරු කරන ලද SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL ප්‍රතිළුල" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "උත්පාදනය කරන ලද්දේ" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "ලේබලය" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s වගුව සාර්ථකව වෙනස් කරන ලදි" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "තෝරාගත් භාවිතා කරන්නන් සාර්ථකව ඉවත් කරන ලදි." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "තීර" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "ස්ථම්භ" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "රේඛා" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "සුනම්‍ය රේඛා" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "වට" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "ගොඩ ගසන ලද" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "ප්‍රස්ථාර මාතෘකාව" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "ශ්‍රේණි:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "X-අක්ෂයේ ලේබලය:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "X අගයන්" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Y-අක්ෂයේ ලේබලය:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Y අගයන්" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "%s වගුව දැනටමත් පවතී!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "%1$s වගුව සාදන ලදි." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "ජ්‍යාමිතික දත්ත නිරූපණය" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "පළල" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "උස" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "ලේබල තීරුව" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "- කිසිවක් නොමැත -" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "ජ්‍යාමිතික තීරුව" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "නැවත අඳින්න" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "ගොනුවකට සුරකින්න" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "ගොනුවේ නම" @@ -11386,28 +11427,28 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "සුචිය එක් කරන්න" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "සුචිය සංස්කරණය කරන්න" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "සූචියේ නම:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" නාමය ප්‍රාථමික මූලය සඳහා පමණක් භාවිතා කල යුතුය!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "සූචි වර්ගය:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr " %s තීර(ය) සූචියට එක් කරන්න" @@ -11430,254 +11471,254 @@ msgstr "%s වගුව %s වෙතට ගෙනයන ලදි." msgid "Table %s has been copied to %s." msgstr "%s වගුව %s වෙතට පිටපත් කරන ලදි." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "වගුවෙහි නම හිස්ව ඇත!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "වගු අනුපිළිවෙල වෙනස් කරන්න" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(singly)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට ගෙන යන්න:" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "වගු විකල්ප" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "වගුව බවට නම වෙනස් කරන්න" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට පිටපත් කරන්න:" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "පිටපත් කල වගුව වෙත මාරු වන්න" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "වගු නඩත්තුව" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Flush the table (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "වගුව හෝ දත්ත ඉවත් කරන්න" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "වගුව හිස් කරන්න (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "වගුව ඉවත් කරන්න (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "කොටස් නඩත්තුව" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "%s කොටස" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "විශ්ලේෂණය" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "පරීක්ෂාව" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "ප්‍රශස්තනය" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "නැවත සෑදීම" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "ප්‍රතිසංස්කරණය" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "කොටස් කිරීම ඉවත් කරන්න" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "වගු පෙන්වමින්" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "අවකාශ භාවිතය" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "එලදායී" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "පේළි සංඛ්‍ය ලේඛන" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "ස්ථිතික" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "ගතික" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "පේළියේ දිග" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "පේළියේ ප්‍රමාණය" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "මීළඟ ක්‍රමාංකය" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s මත අන්‍ය මූලය සෑදීමේදී දෝෂ ඇතිවිය (දත්ත වර්ග පරීක්ෂා කරන්න)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "අභ්‍යන්තර සබඳතා" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "අදාල අන්‍ය මූලය ඇති විට අභ්‍යන්තර සබඳතාවක් අවශ්‍ය නොවේ." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "අන්‍ය මූල නිරෝධය" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "ජ්‍යාමිතික" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "එකිනෙකට වෙනස් අගයන්" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "ප්‍රාථමික මූලය එක් කරන්න" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "අනන්‍ය මූලය එක් කරන්න" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "SPATIAL මූලය එක් කරන්න" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "FULLTEXT මූලය එක් කරන්න" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "කිසිවක් නැත" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "%s තීරුව හලන ලදි" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "%s ට ප්‍රාථමික මූලයක් එක් කරන ලදි" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "%s සඳහා සූචියක් එක්කරන ලදි" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "තවත් ක්‍රියාවන් පෙන්වන්න" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "තීර අනුපිළිවල සකසන්න" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "ඉහළ පහළ ඇදීමෙන් තීර අනුපිළිවෙල සකසන්න." -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "දසුන සංස්කරණය කරන්න" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "වගු සබඳතා දර්ශනය" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "සැකිල්ලක් යෝජනා කරන්න" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "තීරයක් එක් කරන්න" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "වගුව අවසනදී" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "වගුව මුලදී" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "%s ට පසු" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "පේළි %s මත සුචියක් සාදන්න" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "කොටස් කරන ලද" @@ -11825,67 +11866,37 @@ msgstr "" msgid "Create version" msgstr "අනුවාදය සාදන්න" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "තීර දෙකක් සඳහා \"උදාහරණයෙන් විමසුම\" ක් සිදු කරන්න (wildcard: \"%\")" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "අමතර සෙවීම් නිර්ණායක" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "ලක්ෂ්‍ය ලේබල ගත කිරීමට මෙම තීරය භාවිත කරන්න" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "උපරිම තීර ගණන" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "ලක්ෂ්‍ය පිරික්සීම/සංස්කරණය" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "භාවිතා කරන අයුරු" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "ප්‍රතිසකසන්න" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "තවත් තේමාවන් ලබා ගන්න!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "විස්තරය" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "පරිශීලක පැතිකඩ යාවත්කාලීන කරන ලදි." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "දසුනේ නම" diff --git a/po/sk.po b/po/sk.po index 9ec0078c02..e895b52e4a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 14:52+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: slovak \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Zobraziť všetko" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Číslo stránky:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "nadradené okno, alebo prehliadač blokuje operácie medzi oknami z dôvodu " "bezpečnostných nastavení." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Vykonaj" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Kľúčový názov" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Popis" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Použiť túto hodnotu" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databáza %1$s bola vytvorená." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Komentár k databáze: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Komentár k tabuľke" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Stĺpec" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Nulový" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Predvolené" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Linkovať na" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Komentáre" @@ -197,14 +198,14 @@ msgstr "Komentáre" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nie" @@ -217,122 +218,122 @@ msgstr "Nie" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Áno" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Zobraziť dump (schému) databázy" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Neboli nájdené žiadne tabuľky v tejto databáze." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Označiť všetko" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Odznačiť všetko" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Meno databázy je prázdne!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Databáza %s bola premenovaná na %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Databáza %s bola skopírovaná do %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Premenovať databázu na" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Odstrániť databázu" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Databáza %s bola zmazaná." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Odstrániť databázu (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Skopírovať databázu do" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Iba štruktúru" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Štruktúru a dáta" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Iba dáta" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Vytvoriť databázu (CREATE DATABASE) pred kopírovaním" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Pridať %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Pridať hodnotu AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Pridať obmedzenia" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Prepnúť na skopírovanú databázu" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Zotriedenie" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -341,59 +342,59 @@ msgstr "" "Konfiguračná pamäť phpMyAdmina bola deaktivovaná. Ak chcete zistiť prečo, " "kliknite %ssem%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Upraviť alebo exportovať relačnú schému" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabuľka" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Riadkov" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Veľkosť" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "práve sa používa" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Vytvorenie" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Posledná zmena" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Posledná kontrola" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -405,117 +406,117 @@ msgstr[2] "%s tabuliek" msgid "You have to choose at least one column to display" msgstr "Zvolte prosím aspoň jeden stĺpec, ktorý chcete zobraziť" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Prepnúť do %svizuálneho návrhára%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Triediť" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Vzostupne" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Zostupne" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Ukázať" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kritéria" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Vložiť" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "A" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Zmazať" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Alebo" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Zmeniť" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Pridať/Odobrať riadky s kritériami" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Pridať/Odobrať stĺpce" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Aktualizovať dopyt" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Použiť tabuľky" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL dopyt v databáze %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Odošli dopyt" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Prístup odmietnutý" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "najmenej jedno zo slov" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "všetky slová" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "presný výraz" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "ako regulárny výraz" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Prehľadať výsledky na \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -525,30 +526,30 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -556,63 +557,63 @@ msgstr[0] "Celkovo: %s výskyt" msgstr[1] "Celkovo: %s výskyty" msgstr[2] "Celkovo: %s výskytov" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Hľadať v databáze" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Slová alebo hodnoty, ktoré chcete vyhľadať (nahradzujúci znak: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Nájdi:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Slová sú rozdelené medzerou (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "V tabuľkách:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "V tabuľke:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "V tejto databáze neboli nájdené žiadne tabuľky" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "neznámy" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabuľka %s bola vyprázdená" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Pohľad %s bol odstránený" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabuľka %s bola odstránená" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Sledovanie je aktívne." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Sledovanie nie je aktívne." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -620,185 +621,186 @@ msgid "" msgstr "" "Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Pohľad" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikácia" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Celkom" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Výber:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Označiť všetko" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportovať" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Náhľad k tlači" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Vyprázdniť" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Odstrániť" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Skontrolovať tabuľku" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimalizovať tabuľku" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Opraviť tabuľku" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analyzovať tabuľku" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Pridať predponu k tabuľke" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Nahradiť predponu tabuľky" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Skopírovať tabuľku s predponou" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Dátový slovník" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Sledované tabuľky" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Databáza" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Posledná verzia" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Vytvorené" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Aktualizované" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Stav" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Akcia" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Odstrániť všetky informácie o sledovaní tejto tabuľky" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "zapnuté" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "nie je zapnuté" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Verzia" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Informácie o monitorovanie" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Snímok štruktúry" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Nesledované tabuľky" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Sledovať tabuľku" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Databázový log" @@ -810,16 +812,16 @@ msgstr "Nesprávny typ!" msgid "Selected export type has to be saved in file!" msgstr "Vybraný typ exportu musí byť uložený do súboru!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Chybné parametre!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedostatok miesta pre uloženie súboru %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -827,12 +829,12 @@ msgstr "" "Súbor %s už existuje na servery, zmente názov súboru alebo zvolte prepísanie " "súboru." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web server nemá oprávenia na uloženie do súboru %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Výpis bol uložený do súboru %s." @@ -841,86 +843,86 @@ msgstr "Výpis bol uložený do súboru %s." msgid "Invalid export type" msgstr "Chybný typ exportu" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Hodnota pre pole \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Použíť OpenStreetMap ako základnú vrstvu" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometria" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Bod" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Bod %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Pridať bod" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Linka" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Vonkajší obrys" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Vnútorný obrys" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Pridať linku" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Pridať vnútorný obrys" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Polygón" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Pridať polygón" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Pridať geometriu" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Výstup" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -928,7 +930,7 @@ msgstr "" "Z voľby „Funkcie“ zvoľte „GeomFromText“ a vložte nižšie uvedený text ako " "hodnotu" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -937,21 +939,21 @@ msgstr "" "Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si " "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Zobrazujem obľúbený príkaz" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Záznam z obľúbených bol zmazaný." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Súbor sa nedá prečítať" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -960,7 +962,7 @@ msgstr "" "Pokúsili ste sa načítať súbor s nepodporovanou kompresiou (%s). Buď nie je " "zahrnutá podpora tejto kompresie alebo bola deaktivovaná v konfigurácii." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -970,28 +972,28 @@ msgstr "" "jeho veľkosť prekročila maximálnu veľkosť povolenú v PHP konfigurácii. Pozri " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Bez potrebnej knižnice nemožno previesť konverziu znakovej sady" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Nebolo možné načítať importovacie pluginy, skontrolujte prosím vašu " "inštaláciu!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Príkaz %s bol zaradený medzi obľúbené" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import bol úspešne ukončený, bolo vykonaných %d dopytov." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -999,7 +1001,7 @@ msgstr "" "Časový limit behu skriptu vypršal. Ak chcete import súboru dokončiť, " "odošlite znova formulár a import bude pokračovať." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1008,23 +1010,23 @@ msgstr "" "že phpMyAdmin nebude schopný dokončiť tento import, pokiaľ nebude zvýšený " "časový limit behu skriptu v php." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Späť" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funguje lepšie s prehliadačmi podporujúcimi rámy." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Príkaz \"DROP DATABASE\" je zakázaný." @@ -1034,7 +1036,7 @@ msgstr "Príkaz \"DROP DATABASE\" je zakázaný." msgid "Do you really want to execute \"%s\"?" msgstr "Skutočne chcete vykonať príkaz " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte sa ZMAZAŤ celú databázu!" @@ -1075,7 +1077,7 @@ msgstr "Pridať index" msgid "Edit Index" msgstr "Upraviť index" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Pridať %d polí do indexu" @@ -1093,16 +1095,16 @@ msgstr "Názov hostiteľa je prázdny!" msgid "The user name is empty!" msgstr "Meno používateľa je prázdne!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Heslo je prázdne!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Heslá sa nezhodujú!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Pridať používateľa" @@ -1119,23 +1121,24 @@ msgstr "Odstránenie vybraných používateľov" msgid "Close" msgstr "Zavrieť" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Upraviť" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Živý graf prevádzky" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Živý graf spojení/procesov" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Živý graf dopytov" @@ -1145,24 +1148,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Celkom" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Ostatné" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1182,7 +1185,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Procesy" @@ -1200,7 +1203,7 @@ msgstr "Dotazov od posledného obnovenia" msgid "Questions (executed statements by the server)" msgstr "Dopyty (príkazy vykonané na serveri)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Štatistika dopytov" @@ -1244,14 +1247,14 @@ msgid "System swap" msgstr "Stránkovacia oblasť" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1303,32 +1306,32 @@ msgstr "Odoslaných bajtov" msgid "Bytes received" msgstr "Prijatých bajtov" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Spojenia" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1342,11 +1345,11 @@ msgstr "%d tabuliek" msgid "Questions" msgstr "Dopyty" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Vyťaženie" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Nastavenia" @@ -1366,11 +1369,11 @@ msgstr "Pridať graf do mriežky" msgid "Please add at least one variable to the series" msgstr "Pridajte prosím aspoň jednu hodnotu do série" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Žiadny" @@ -1470,7 +1473,7 @@ msgstr "Zmeniť nastavenia" msgid "Current settings" msgstr "Aktuálne nastavenia" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Názov grafu" @@ -1561,7 +1564,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Čas" @@ -1659,10 +1662,10 @@ msgstr "" "Nepodarilo sa vytvoriť graf z importovanej konfigurácie. Používam východzie " "nastavenia..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1714,9 +1717,9 @@ msgstr "Použitá premenná / vzorec" msgid "Test" msgstr "Kontrola" -#: 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 +#: 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 msgid "Cancel" msgstr "Zrušiť" @@ -1728,11 +1731,11 @@ msgstr "Načítanie" msgid "Processing Request" msgstr "Prebieha spracovanie požiadavka" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Chyba pri spracovanie požiadavku" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Neboli vybrané žiadne databázy." @@ -1744,9 +1747,9 @@ msgstr "Odstraňujem stĺpce" msgid "Adding Primary Key" msgstr "Pridavam primarny kľúč" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1786,19 +1789,19 @@ msgstr "Skryť indexy" msgid "Show indexes" msgstr "Zobraziť indexy" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Vypnúť kontrolu cudzích kľúčov" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Zapnuté" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1828,7 +1831,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "Upraviť ENUM/SET" @@ -1868,8 +1871,8 @@ msgstr "Zobrazit vyhľadávacie pole" msgid "No rows selected" msgstr "Nebol vybraný žiadny riadok" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Zmeniť" @@ -1877,18 +1880,18 @@ msgstr "Zmeniť" msgid "Query execution time" msgstr "Čas behu dopytu" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Uložiť" @@ -1900,7 +1903,7 @@ msgstr "Skryť parametre vyhľadávania" msgid "Show search criteria" msgstr "Zobraziť parametre vyhľadávania" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Zoomovacie vyhľadávanie" @@ -1946,12 +1949,12 @@ msgstr "Výsledky dopytu" msgid "Data point content" msgstr "Obsah datového bodu" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignorovať" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Kopírovať" @@ -1971,7 +1974,7 @@ msgstr "Zvoliť cudzí kľúč" msgid "Please select the primary key or a unique key" msgstr "Zoľte, prosím, primárny alebo unikátny kľúč" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Zvoľte, ktoré polia zobraziť" @@ -2060,7 +2063,7 @@ msgstr "Vytvoriť" msgid "Change Password" msgstr "Zmeniť heslo" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Viac" @@ -2151,63 +2154,63 @@ msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dec" @@ -2245,32 +2248,32 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "So" @@ -2384,16 +2387,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "za sekundu" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "za minútu" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "za hodinu" @@ -2416,21 +2419,212 @@ msgstr "" msgid "Font size" msgstr "Veľkosť písma" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +#| msgid "Save directory" +msgid "Save edited data" +msgstr "Adresár pre ukladanie" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Obnoviť poradie stĺpcov" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Začiatok" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Predchádzajúci" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Ďalší" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Koniec" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Prvý riadok" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Počet riadkov" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Režim" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontálnom" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "vodorovnom (otočené hlavičky)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertikálnom" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "Opakovať hlavičku každých %s riadkov" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Zoradiť podľa kľúča" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Nastavenia" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Čiastočné texty" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Plné texty" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Relačný kľúč" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Relačné zobrazenie stĺpcov" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Zobraziť binárny obsah" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Zobraziť obsah BLOBu" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Zobraziť binárny obsah v HEX formáte" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Transformácia pri prehliadaní" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Text (Well Known Text)" + +#: libraries/DisplayResults.class.php:1388 +#, fuzzy +msgid "Well Known Binary" +msgstr "Well Known Binary" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Riadok bol zmazaný" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Zabiť" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Môže byť nepresné. Viď [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11" +"[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "v dopyte" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Zobrazené riadky" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "celkovo" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Dopyt zabral %01.4f s" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operácie s výsledkami dopytu" + +#: libraries/DisplayResults.class.php:4365 +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 +msgid "Display chart" +msgstr "Zobraziť graf" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Zobraziť GIS data" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Vytvoriť pohľad" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Linka nebola nájdená" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Príliš veľa chybových správ, niektoré neboli zobrazené." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Veľkosť nahrávaného súboru prekračuje hodnotu premennej upload_max_filesize " "v php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2438,27 +2632,27 @@ msgstr "" "Veľkosť nahrávaného súboru prekračuje hodnotu premennej MAX_FILE_SIZE, ktorá " "bola nastavená v HTML formulári." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Súbor bol nahraný len čiastočne." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Chýba adresár pre dočasné súbory." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Chyba pri zápise súboru na disk." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Nahrávanie súboru bolo zastavené rozšírením." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Neznáma chyba pri nahrávaní súboru." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2466,26 +2660,41 @@ msgstr "" "Chyba pri presune nahrávaného súboru, viď [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Chyba pri presúvaní nahraného súboru." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Nahraný súbor sa nedá prečítať (presunúť)." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Otvoriť nové okno phpMyAdmina" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indexy" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikátny" @@ -2498,8 +2707,8 @@ msgstr "Zabalené" msgid "Cardinality" msgstr "Mohutnosť" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Komentár" @@ -2522,130 +2731,130 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Databázy" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Štruktúra" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Vložiť" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operácie" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Sledovanie" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tabuľka vyzerá prázdna!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Databáza vyzerá prázdna!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Dopyt podľa príkladu" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Oprávnenia" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutiny" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Udalosti" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Dizajnér" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Používateľ" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synchronizovať" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binárny log" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Premenné" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Znakové sady" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Systémy" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Chyba" @@ -2673,7 +2882,7 @@ msgstr[0] "Bol vložený %1$d riadok." msgstr[1] "Boli vložené %1$d riadky." msgstr[2] "Bolo vložených %1$d riadkov." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Chyba pri vytváraní PDF:" @@ -2764,16 +2973,110 @@ 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 +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 +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 +msgid "Value" +msgstr "Hodnota" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Hľadať" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Vložiť" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Zvoliť stĺpec (najmenej jeden):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Pridať vyhľadávacie parametre (obsah dopytu po \"where\" príkaze):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Záznamov na stránku" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Zobraziť zoradené:" + +#: libraries/TableSearch.class.php:813 +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 "Maximálny počet zobrazených riadkov" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Prejsť hodnoty cudzích kľúčov" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Additional search criteria" +msgstr "Skryť parametre vyhľadávania" + +#: 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 "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +#| msgid "Control user" +msgid "How to use" +msgstr "Kontrolný užívateľ" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Vynulovať" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nebola nájdená platná cesta k obrázkom pre vzhľad %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Náhľad nie je dostupný." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "zvoliť" @@ -2792,7 +3095,7 @@ msgstr "Vzhľad %s nebol nájdený!" msgid "Theme path not found for theme %s!" msgstr "Nebola nájdená platná cesta ku vzhľadu %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Vzhľad" @@ -3091,13 +3394,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Nepodarilo sa pripojiť: chybné nastavenia." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Vitajte v %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3106,7 +3409,7 @@ msgstr "" "Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho " "vytvorenie môžete použiť %1$skonfiguračný skript%2$s." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3121,61 +3424,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Pri použití funkcie Blowfish z knižnice mcrypt došlo k chybe!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Login" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Možete zadať medzerou oddelený hostname/IP adresu a port." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Používateľ:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Heslo:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Voľba serveru" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Prihlásenie bez hesla je zakázané v konfigurácií (pozri AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Boli ste neaktívni viac ako %s sekúnd, prihláste sa prosím znovu" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Nedá sa prihlásiť k MySQL serveru" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Zlé používateľské meno alebo heslo. Prístup zamietnutý." @@ -3207,7 +3504,7 @@ msgstr "zdieľaný" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabuľky" @@ -3219,13 +3516,13 @@ msgstr "Tabuľky" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Dáta" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Naviac" @@ -3250,19 +3547,11 @@ msgstr "Skontrolovať oprávnenia pre databázu "%s"." msgid "Check Privileges" msgstr "Skontrolovať oprávnenia" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "možný pokus o exploit" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Nepodarilo sa načítať konfiguračný súbor" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3270,12 +3559,12 @@ msgstr "" "Toto je často spôsobené syntaktickou chybou v súbore, prosím skontrolujte " "chyby vypísané nižšie." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3287,204 +3576,190 @@ msgstr "" "Direktíva $cfg['PmaAbsoluteUri'] MUSÍ byť nastavená v " "konfiguračnom súbore!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Chybný index servera: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné meno servera %1$s. Prosím, skontrolujte konfiguráciu." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "možný pokus o exploit" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Maximálna veľkosť: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentácia" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL dopyt" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL hlási: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Nepodarilo sa pripojiť k SQL validátoru!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Vysvetliť SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Preskočiť vysvetlenie SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Obnoviť" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Bez kontroly SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Skontrolovať SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Upraviť dopyt na tejto stránke" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Upraviť tu" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profilovanie" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Ne" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d.%B %Y, %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dní, %s hodín, %s minút a %s sekúnd" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Chýbajúci parameter:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Začiatok" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Predchádzajúci" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Ďalší" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Koniec" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Prejsť na databázu "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Kliknite pre prepnutie" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Prechádzať váš počítač:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format 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:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Adresár určený pre upload súborov sa nedá otvoriť" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Žiadny súbor pre nahrávanie" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Spustiť" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Vytlačiť" @@ -3514,8 +3789,8 @@ msgid "Closed" msgstr "Zatvorené" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Vypnuté" @@ -3656,9 +3931,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Vynulovať" @@ -3884,10 +4159,6 @@ msgstr "Navrhnúť štruktúru tabuľky" msgid "Show binary contents as HEX by default" msgstr "Zobrazenie binárneho obsahu štandardne v HEX formáte" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Zobraziť binárny obsah v HEX formáte" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Zobraziť prehľad databáz ako zoznam namiesto rozbaľovacieho menu" @@ -3942,7 +4213,7 @@ msgstr "Nastavte dĺžku behu skriptu v sekundách ([kbd]0[/kbd] bez obmedzení) msgid "Maximum execution time" msgstr "Maximálny čas behu" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Uložiť ako súbor" @@ -3951,7 +4222,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formát" @@ -4055,7 +4326,7 @@ msgid "MIME type" msgstr "MIME typ" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Prepojenia" @@ -5660,9 +5931,9 @@ msgstr "Vyžaduje povolené kontrolovanie SQL" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Heslo" @@ -5949,32 +6220,24 @@ msgstr "" msgid "Details..." msgstr "Podrobnosti..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Môže byť nepresné. Viď [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11" -"[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Zmeniť heslo" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Žiadne heslo" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Potvrdiť" @@ -5995,22 +6258,22 @@ msgstr "Vytvoriť databázu" msgid "Create" msgstr "Vytvoriť" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Žiadne oprávnenia" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Názov" @@ -6168,26 +6431,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Prevod znakovej sady:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version" msgid "committed on %1$s by %2$s" msgstr "Vytvoriť verziu" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version" msgid "authored on %1$s by %2$s" @@ -6309,178 +6572,27 @@ msgstr "" msgid "Language" msgstr "Jazyk" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -#| msgid "Save directory" -msgid "Save edited data" -msgstr "Adresár pre ukladanie" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Obnoviť poradie stĺpcov" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Prvý riadok" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Počet riadkov" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Režim" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontálnom" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "vodorovnom (otočené hlavičky)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertikálnom" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Opakovať hlavičku každých %s riadkov" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Zoradiť podľa kľúča" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Nastavenia" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Čiastočné texty" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Plné texty" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Relačný kľúč" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Relačné zobrazenie stĺpcov" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Zobraziť binárny obsah" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Zobraziť obsah BLOBu" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Transformácia pri prehliadaní" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Text (Well Known Text)" - -#: libraries/display_tbl.lib.php:1322 -#, fuzzy -msgid "Well Known Binary" -msgstr "Well Known Binary" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Riadok bol zmazaný" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Zabiť" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "v dopyte" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Zobrazené riadky" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "celkovo" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Dopyt zabral %01.4f s" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operácie s výsledkami dopytu" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Náhľad tlače (s kompletnými textami)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Zobraziť graf" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Zobraziť GIS data" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Vytvoriť pohľad" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Linka nebola nájdená" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Informácie o verzii" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Domovský adresár pre dáta" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Spoločná časť cesty k adresáru s InnoDB súbormi s dátami." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Súbory s dátami" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Navýšenie pri automatickom zväčšovaní" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6488,90 +6600,90 @@ msgstr "" "Veľkosť, o ktorú je zväčšený automaticky sa zväčšujúci priestor tabuľky pri " "zaplnení." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Veľkosť vyrovnávacej pamäte" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" "Veľkosť pamäte, ktorú InnoDB používa pre cachovanie dát a indexov tabuliek." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Vyrovnávacia Pamäť" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Stav InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Využitie Vyrovnávacej Pamäte" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "stránok" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Prázdnych stránok" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Zmenených stránok" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Stránky obsahujúce dáta" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Stránok určených k uvoľneniu" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Spracovávaných stránok" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Uzavretých stránok" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Aktivita Vyrovnávacej Pamäte" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Požiadavkov na čítanie" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Požiadavkov na zápis" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Výpadkov pri čítaní" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Čakaní na zápis" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Výpadkov pri čítaní v %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Čakaní na zápis v %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Veľkosť smerníka na dáta" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6580,11 +6692,11 @@ msgstr "" "MyISAM tabuliek príkazom CREATE TABLE, v prípade keď nie je zadaná hodnota " "MAX_ROWS." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Režim automatickej obnovy" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6592,11 +6704,11 @@ msgstr "" "Režim automatickej obnovy poškodených MyISAM tabuliek, ktorý sa dá nastaviť " "parametrom --myisam-recover pri spúšťaní servra." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Maximálna veľkosť dočasných zoraďovacích súborov" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6606,11 +6718,11 @@ msgstr "" "MyISAM indexu (počas vykonávania príkazov REPAIR TABLE, ALTER TABLE alebo " "LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Maximálna veľkosť dočasných súborov pre vytvorenie indexu" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6619,11 +6731,11 @@ msgstr "" "Ak je veľkosť dočasného súboru, použitého pre rýchlejšie vytváranie MyISAM " "indexov, väčšia ako pri použití cache, použije sa metóda cachovania indexu." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Opravné vlákna" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6631,11 +6743,11 @@ msgstr "" "Ak je táto hodnota vyššia ako 1, počas procesu Opravy Zoradením sú indexy " "MyISAM tabuľky vytvárané paralelne (každý index vo svojom vlákne)." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Veľkosť zoraďovacej pamäte" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6644,11 +6756,11 @@ msgstr "" "príkazu REPAIR TABLE, alebo pri vytváraní indexov príkazmi CREATE INDEX " "alebo ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Veľkosť vyrovnávacej pamäte indexu" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6657,32 +6769,32 @@ msgstr "" "je 32MB. Pamät tu priradená je použitá výhradne pre vyrovnávaciu pamäť " "indexových stránok." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6690,31 +6802,31 @@ msgstr "" "Maximálna veľkosť transakčného logu pred jeho pretočením a vytvorením " "nového. Štandardná hodnota je 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6722,49 +6834,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 #, fuzzy msgid "Log buffer size" msgstr "Veľkosť zoraďovacej pamäte" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6772,18 +6884,18 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Súvisiace odkazy" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6831,14 +6943,14 @@ msgstr "Sťahujem dáta pre tabuľku" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Udalosť" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6899,14 +7011,14 @@ msgstr "Zobraziť MIME typy" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Hostiteľ" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Vygenerované" @@ -7095,23 +7207,14 @@ msgstr "Pohľady" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Otvoriť nové okno phpMyAdmina" - #: libraries/gis_visualization.lib.php:135 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." msgstr "Neboli nájdené žiadne dáta pre graf." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7208,12 +7311,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Názov tabuľky" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Názvy stĺpcov" @@ -7279,96 +7382,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funkcia" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Skryť" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binárny" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binárny - neupravujte" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "upload adresár web serveru" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Vložiť" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "a potom" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Vložiť ako nový riadok" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 #, fuzzy msgid "Show insert query" msgstr "Zobrazujem SQL dotaz" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Späť" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Vložiť nový záznam" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Späť na túto stránku" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Upraviť nasledujúci riadok" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Hodnota" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7383,35 +7468,35 @@ msgstr "Žiadny" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Z" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Odošli" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy msgid "Add prefix" msgstr "Odstrániť index/indexy" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Skutočne chcete vykonať príkaz " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Žiadna zmena" @@ -7621,96 +7706,96 @@ msgstr "" msgid "This format has no options" msgstr "Tento formát nemá žiadne nastavenia" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "chyba" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Zapnuté" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Možnosti všeobecných vzťahov" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Zobraziť vlastnosti" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Vytváranie PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Zobrazovať komentáre stĺpcov" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Transformácia pri prehliadaní" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" 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:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Obľúbený SQL dopyt" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL história" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Trvalé spojenia" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "bez Popisu" @@ -7719,7 +7804,7 @@ msgstr "bez Popisu" msgid "Slave configuration" msgstr "Slave replikácia" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7731,13 +7816,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Meno používateľa" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -7752,7 +7837,7 @@ 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:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Premenná" @@ -7766,38 +7851,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Pridať replikačného užívateľa pre slave" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Požiť textové pole" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Akýkoľvek hostiteľ" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokálny" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Tento počítač" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Použiť tabuľku s hostiteľmi" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7813,7 +7898,7 @@ msgstr "Vytvoriť Heslo" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7848,99 +7933,100 @@ msgstr "Tabuľka %1$s bola vytvorená." msgid "One or more errors have occured while processing your request:" msgstr "Pri zpracovaní požadavky došlo k niekoľkým chybám:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Webový server" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Chyba pri spracovaní požiadavky" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Podrobnosti" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Typ udalosti" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Typ udalosti" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Zmeniť na %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 #, fuzzy #| msgid "Execute" msgid "Execute at" msgstr "Spustiť" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute" msgid "Execute every" msgstr "Spustiť" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Úvodná stránka" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Koniec" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Zachovať pri ukončení" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7979,7 +8065,7 @@ msgstr "" "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:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Chybný typ rutiny: \"%s\"" @@ -7998,100 +8084,100 @@ msgstr "Rutina %1$s bola zmenená." msgid "Routine %1$s has been created." msgstr "Rutina %1$s bola vytvorená." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Upraviť rutinu" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Názvy stĺpcov" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Priame odkazy" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Dĺžka/Nastaviť*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy msgid "Add parameter" msgstr "Odstrániť index/indexy" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Odstrániť databázu" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Návratový typ" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Dĺžka/Nastaviť*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Parametre tabuľky" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Zabezpečenie" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8099,18 +8185,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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Výsledky spustenia rutiny %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Spustiť rutinu" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8132,41 +8218,41 @@ msgstr "Rutina %1$s bola zmenená." msgid "Trigger %1$s has been created." msgstr "Tabuľka %1$s bola vytvorená." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Pridať nového používateľa" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Meno spúšťača" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Čas" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Chybné meno tabuľky" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8262,7 +8348,7 @@ msgstr "Nie sú žiadne udalosti na zobrazenie." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8271,7 +8357,7 @@ msgstr "Tabuľka %s neexistuje!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8279,7 +8365,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Prosím skonfigurujte koordináty pre tabuľku %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8290,27 +8376,27 @@ msgstr "Schéma databázy %s - Strana %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Relačná schéma" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Obsah" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atribúty" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8418,7 +8504,7 @@ msgstr "Neznámy jazyk: %1$s." msgid "Current Server" msgstr "Aktuálny server" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Zdrojová databáza" @@ -8436,7 +8522,7 @@ msgstr "Vzdialený server" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Cieľová databáza" @@ -8455,7 +8541,7 @@ msgstr "Spustiť SQL príkaz(y) na serveri %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Vyčistiť" @@ -8464,11 +8550,11 @@ msgstr "Vyčistiť" msgid "Columns" msgstr "Stĺpce" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Dovoliť používať túto položku všetkým používateľom" @@ -8564,7 +8650,7 @@ msgstr "" "nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v " "%sdocumentation%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8591,8 +8677,8 @@ msgstr "" "alebo uvádzacích znakov, napr.: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Index" @@ -8644,13 +8730,13 @@ msgstr "Žiadny" msgid "As defined:" msgstr "Podľa zadania:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primárny" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Celý text" @@ -8664,17 +8750,17 @@ msgstr "" msgid "after %s" msgstr "Po %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Pridať %s stĺpcov" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Musíte pridať aspoň jeden stĺpec." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Úložný Systém" @@ -8682,43 +8768,6 @@ msgstr "Úložný Systém" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Hľadať" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Zvoliť stĺpec (najmenej jeden):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Pridať vyhľadávacie parametre (obsah dopytu po \"where\" príkaze):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Záznamov na stránku" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Zobraziť zoradené:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Prejsť hodnoty cudzích kľúčov" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8855,11 +8904,11 @@ msgstr "" msgid "Manage your settings" msgstr "Spravovať svoje nastavenia" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Nastavenia boli uložené" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8873,7 +8922,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Slave replikácia" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8902,7 +8951,7 @@ msgstr "Overenie MySQL spojenia" msgid "Appearance Settings" msgstr "Nastavenia vzhľadu" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Ďalšie nastavenia" @@ -8926,9 +8975,9 @@ msgstr "Verzia serveru" msgid "Protocol version" msgstr "Verzia protokolu" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Používateľ" @@ -9059,133 +9108,133 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Žiadne databázy" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "Filtrovať tabuľky podľa mena" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Filtrovať tabuľky podľa mena" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Vytvoriť tabuľku" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Prosím vyberte si databázu" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Vytvoriť relaciu" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Znovu načítať" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Pomoc" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Pravouhlé spoje" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Priame odkazy" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy msgid "Toggle relation lines" msgstr "Vytvoriť relaciu" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export koordináty pre PDF schému" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Vytvoriť dopyt" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Presunúť Menu" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "Zobraziť všetko" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Počet tabuliek" -#: pmd_general.php:447 +#: pmd_general.php:449 #, fuzzy msgid "Delete relation" msgstr "Vytvoriť relaciu" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "Zobraziť prepojenia" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Okrem" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "poddopyt" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Premenovať tabuľku na" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Nové meno" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Zlúčiť" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Zapnuté parametre" @@ -9197,52 +9246,52 @@ msgstr "Stránka bola vytvorená" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Stránka" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Importovať zo zvolenej stránky" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Exportovať na zvolenú stránku" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Vytvoriť novú stránku a exportovať do nej" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Nový názov stránky: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 #, fuzzy msgid "Internal relation added" msgstr "Interné vzťahy" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 #, fuzzy msgid "Relation deleted" msgstr "Zobraziť prepojenia" @@ -9255,51 +9304,51 @@ msgstr "" msgid "Modifications have been saved" msgstr "Zmeny boli uložené" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Nepodarilo sa uložiť nastavenia, odoslaný formulár obsahuje chyby" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Nepodarilo sa načítať konfiguráciu" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Prajete si načítať zostávajúce nastavenia?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importovať zo súboru" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Načítať z pamäte prehliadača" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Nastavenia budú načítané z lokálneho úložišťa vášho prehliadača." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Nemáte uložené žiadne nastavenia!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Zlúčiť so súčasným nastavením" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9308,37 +9357,37 @@ msgstr "" "Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím " "%sNastavovacieho skriptu%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Uložiť do úložiska prehliadača" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Súčasné nastavenia budú prepísané!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Môžete vymazať všetky vaše nastavenia a vrátiť sa k východziím hodnotám." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importovať súbory" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Všetko" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabuľka %s nebola nájdená alebo nie je nastavená v %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Súbor neexistuje" @@ -9346,17 +9395,17 @@ msgstr "Súbor neexistuje" msgid "Select binary log to view" msgstr "Vyberte binárny log na zobrazenie" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Súbory" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Zobraziť skrátene dopyty" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Zobraziť kompletné dopyty" @@ -9372,7 +9421,7 @@ msgstr "Pozícia" msgid "Original position" msgstr "Pôvodná pozícia" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informácia" @@ -9380,7 +9429,7 @@ msgstr "Informácia" msgid "Character Sets and Collations" msgstr "Znakové sady a Zotriedenia" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9389,24 +9438,24 @@ msgstr[0] "%s databáz bolo úspešne zrušených." msgstr[1] "%s databáz bolo úspešne zrušených." msgstr[2] "%s databáz bolo úspešne zrušených." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Štatistiky databázy" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Master replikácia" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Slave replikácia" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Zobraziť štatistiky" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9418,152 +9467,152 @@ msgstr "" msgid "Storage Engines" msgstr "Úložné Systémy" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Export databáz" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Začiatok" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Verzia" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Licencia" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "vypnuté" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Všetky oprávnenia okrem GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Povolí meniť štruktúru existujúcich tabuliek." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje upravovať a odstraňovať uložené procedúry." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Povolí vytváranie nových databáz a tabuliek." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Umožňuje vytvárať uložené procedúry." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Povolí vytváranie nových tabuliek." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Povolí vytváranie dočasných tabuliek." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvárať, odstraňovať a premenovávať používateľské kontá." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Umožňuje vytvárať nové pohľady." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Povolí mazanie dát." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Povolí odstraňovanie databáz a tabuliek." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Povolí odstraňovanie tabuliek." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Umožňuje spúšťať uložené procedúry." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Povolí importovanie a exportovanie dát zo/do súborov na serveri." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "Povolí pridávanie uživatelov a práv bez znovunačítania tabuliek práv." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Povolí vytváranie a mazanie indexov." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Povolí vkladanie a nahradzovanie dát." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Obmedzí počet nových spojení, ktoré môže používateľ vytvoriť za hodinu." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Obmedzí počet dopytov, ktoré môže používateľ odoslať za hodinu." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9571,60 +9620,60 @@ msgstr "" "Obmedzí počet príkazov meniacich tabuľku alebo databázu, ktorá môže " "používateľ odoslať za hodinu." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Obmedzuje počet simultánnych pripojení používateľa." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Nefunguje v tejto verzii MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Povolí znovunačítanie nastavení a vyprázdňovanie vyrovnávacích pamätí " "serveru." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Povolí používateľovi zistiť kde je hlavný / pomocný server." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Potrebné pre replikáciu pomocných serverov." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Povolí čítanie dát." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Povolí prístup ku kompletnému zoznamu databáz." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spúšťať príkazy so SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Povolí vypnutie serveru." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9634,170 +9683,170 @@ msgstr "" "Potrebné pre väčšinu operácií pri správe serveru ako nastavovanie globálny " "premenných alebo zabíjanie procesov iných používateľov." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Povolí vytváranie a mazanie spúšťačov" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Povolí menenie dát." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Žiadne práva." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Žiadny" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Oprávnenia pre jednotlivé tabuľky" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Poznámka: názvy MySQL oprávnení sú uvádzané po anglicky" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administrácia" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globálne práva" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Oprávnenia pre jednotlivé databázy" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Obmedzenie zdrojov" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Poznámka: Nastavenie týchto parametrov na 0 (nulu) odstráni obmedzenia." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Prihlásenie" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Nezmeniť heslo" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Nebol nájdený žiadny používateľ." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Používateľ %s už existuje!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Používateľ bol pridaný." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Boli aktualizované oprávnenia pre %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Boli zrušené oprávnenia pre %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Heslo pre %s bolo úspešne zmenené." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Odstraňuje sa %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Na odstránenie neboli vybraní žiadni používatelia!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Znovunačítanie práv" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Vybraní používatelia bol úspešne odstránený." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Práva boli úspešne znovunačítané." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Upraviť oprávnenia" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Zrušiť" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Exportovať" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Akýkoľvek" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Oprávnenia" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Oprávnenia" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Prehľad používatelov" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Prideliť" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Odstrániť vybraných používateľov" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9810,51 +9859,51 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Oprávnenia pre jednotlivé stĺpce" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Pridať oprávnenia pre nasledujúcu databázu" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Pridať oprávnenia pre nasledujúcu tabuľku" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa" -#: server_privileges.php:2363 +#: server_privileges.php:2371 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:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... zachovať pôvodného používateľa." -#: server_privileges.php:2366 +#: server_privileges.php:2374 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:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9862,80 +9911,80 @@ msgstr "" "... zmazať pôvodného používateľa z tabuliek používateľov a potom " "znovunačítať oprávnenia." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Databáza pre používateľa" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Prideliť všetky oprávnenia na databázu "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Používatelia majúci prístup k "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "globálny" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "závislé na databáze" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "nahradzujúci znak" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Užívateľ bol pridaný." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Master server zmenený úspešne na %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Tento server je nakonfigurovaný ako master v replikačnom procese." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Zobraziť stav master replikácie" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9944,12 +9993,12 @@ msgstr "" "Tento server nie je nakonfigurovaný ako master v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: server_replication.php:244 +#: server_replication.php:246 #, fuzzy msgid "Master configuration" msgstr "Master replikácia" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9958,108 +10007,108 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Prosím, vyberte databázy:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Tento server je nakonfigurovaný ako slave v replikačnom procese. Prajete si:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 #, fuzzy msgid "Synchronize databases with master" msgstr "Synchronizovať Databázy" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Ovládať slave:" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Celý text" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Spustiť len SQL vlákno" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Spustiť len IO vlákno" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10068,156 +10117,156 @@ msgstr "" "Tento server nie je nakonfigurovaný ako slave v replikačnom procese. Chceli " "by ste ho nakonfigurovať?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Vlákno %s bol úspešne zabité." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "Neporadilo za ukončiť vlákno %s. Jeho beh bol pravdepodobne už ukončený." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Manipulačná Rutina" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Vyrovnávacia pamäť príkazov" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Počet vlákien" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Dočasné dáta" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Odložené vloženia" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Vyrovnávacia pamäť kľúčov" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Zjednotenia" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Zoraďovanie" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Koordinátor transakcií" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Vyprázdniť (uzavrieť) všetky tabuľky" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Zobraziť otvorené tabuľky" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Zobraziť podriadené hosty" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Zobraziť stav podriadených hostov" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Vyprázdniť vyrovnávaciu pamäť príkazov" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Stav serveru" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Obnovovacia frekvencia: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Filter" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Obsahujúca slovo:" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Zobraziť otvorené tabuľky" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Zobraziť otvorené tabuľky" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Súvisiace odkazy:" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Typ dopytu" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Introduction" msgid "Instructions" msgstr "Úvod" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10225,31 +10274,31 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Dopytov od spustenia: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Údaj" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10257,18 +10306,18 @@ msgstr "" "Tento server je nakonfigurovaný ako master a slave v " "replikačnom procese." -#: server_status.php:1078 +#: server_status.php:1077 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:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" "Tento MYSQL server pracuje ako slave v replikačnom procese." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10276,11 +10325,11 @@ msgstr "" "Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Stav replikácie" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10288,45 +10337,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Prijaté" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Odoslané" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "max. súčasných pripojení" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Nepodarených pokusov" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Prerušené" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Príkaz" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 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:1322 +#: server_status.php:1321 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 " @@ -10336,16 +10385,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:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10357,11 +10406,11 @@ msgstr "" "hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na " "disk." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Počet dočasných súborov vytvorených servrom mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10369,7 +10418,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:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10377,7 +10426,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:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10385,23 +10434,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Počet riadkov vložených príkazom INSERT DELAYED." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Počet vykonaných príkazov FLUSH." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Počet interných príkazov COMMIT." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10411,7 +10460,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:1335 +#: 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, " @@ -10421,7 +10470,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:1336 +#: server_status.php:1335 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." @@ -10429,7 +10478,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:1337 +#: server_status.php:1336 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 " @@ -10439,7 +10488,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:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10448,7 +10497,7 @@ msgstr "" "čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... " "DESC." -#: server_status.php:1339 +#: 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 " @@ -10461,7 +10510,7 @@ msgstr "" "kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne " "nevyužívajú kľúče." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10473,35 +10522,35 @@ msgstr "" "tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú " "dostupné indexy." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Počet interných príkazov ROLLBACK." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 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:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Počet nečistých stránok." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Počet voľných stránok." -#: server_status.php:1348 +#: 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 " @@ -10511,7 +10560,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:1349 +#: server_status.php:1348 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 " @@ -10523,11 +10572,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:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB." -#: server_status.php:1351 +#: 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." @@ -10535,7 +10584,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:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10543,11 +10592,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:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Počet požiadavkov na logické načítavanie." -#: server_status.php:1354 +#: 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." @@ -10555,7 +10604,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:1355 +#: server_status.php:1354 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 " @@ -10569,88 +10618,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:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Počet vykonaných fsync() operácií." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Aktuálny počet prebiehajúcich fsync() operácií." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Počet aktuálne prebiehajúcich načítavaní." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Počet aktuálne prebiehajúcich zápisov." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Množstvo už načítaných dát, v bajtoch." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Celkový počet načítaní dát." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Celkový počet zápisov dát." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Množstvo už zapísaných dát, v bajtoch." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Počet požiadaviek na zápis do logovacieho súboru." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Počet fyzických zápisov do logovacieho súboru." -#: server_status.php:1370 +#: server_status.php:1369 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Počet prebiehajúcich zápisov do logovacieho súboru." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Množstvo bajtov zapísaných do logovacieho súboru." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Počet vytvorených stránok." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10659,51 +10708,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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Počet načítaných stránok." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Počet zapísaných stránok." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Počet zámkov na riadky, na ktoré sa čaká." -#: server_status.php:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet riadkov odstránených z InnoDB tabuliek." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet riadkov vložených do InnoDB tabuliek." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Počet načítaných riadkov z InnoDB tabuliek." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Počet upravených riadkov v InnoDB tabuľkách." -#: server_status.php:1387 +#: 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." @@ -10712,7 +10761,7 @@ msgstr "" "neboli zapísané na disk. Predtým sa táto hodnota nazývala " "Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -10720,7 +10769,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:1389 +#: server_status.php:1388 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 " @@ -10729,17 +10778,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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Formát importovaného súboru" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10750,26 +10799,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:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -10780,17 +10829,17 @@ msgstr "" "požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované " "žiadne príkazy." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10798,38 +10847,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Počet otvorených súborov." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Počet práve otvorených tabuliek." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 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:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Počet zásahov vyrovnávacej pamäti." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Počet príkazov pridaných do vyrovnávacej pamäti." -#: server_status.php:1408 +#: 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 " @@ -10841,7 +10890,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:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10849,19 +10898,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:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti." -#: server_status.php:1411 +#: server_status.php:1410 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:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikácie (zatiaľ neimplementované)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10869,12 +10918,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10883,7 +10932,7 @@ msgstr "" "(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy " "vašich tabuliek.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10891,15 +10940,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10907,13 +10956,13 @@ msgstr "" "Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o " "znovuobnovenie transakcie." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10921,14 +10970,14 @@ msgstr "" "Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota " "slow_launch_time." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -10938,23 +10987,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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Počet rozsahom obmedzených zoraďovaní." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Počet zoradených riadkov." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -10966,7 +11015,7 @@ msgstr "" "najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo " "použiť replikáciu." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -10976,11 +11025,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Počet momentálne otvorených spojení." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10991,75 +11040,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:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Sledovanie nie je aktívne." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Počet nespiacich vlákien." -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Štart" -#: server_status.php:1588 +#: server_status.php:1587 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Úvod" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy msgid "Add chart" msgstr "Odstrániť index/indexy" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Obnoviť" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "Stĺpce s textovou oblasťou" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Obnoviť východziu hodnotu" -#: server_status.php:1632 +#: server_status.php:1631 #, fuzzy #| msgid "Introduction" msgid "Monitor Instructions" msgstr "Úvod" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11068,7 +11117,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11076,18 +11125,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11095,11 +11144,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11107,88 +11156,88 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove chart" msgid "Preset chart" msgstr "Odstrániť graf" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Vybrať série:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "alebo zadajte meno premennej:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Pridať nového používateľa" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy #| msgid "Series:" msgid "Series in Chart:" msgstr "Série:" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Zobraziť štatistiky" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Zvolený časový rozsah:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Typ dopytu" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11196,7 +11245,7 @@ msgstr[0] "%d sekunda" msgstr[1] "%d sekundy" msgstr[2] "%d sekúnd" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11204,130 +11253,130 @@ msgstr[0] "%d minúta" msgstr[1] "%d minúty" msgstr[2] "%d minút" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Nepodarilo sa pripojiť k zdroju" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Nepodarilo sa pripojiť k cieľu" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' databáza neexistuje." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Pridať stĺpce" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Odstrániť stĺpce" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Upraviť stĺpce" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Odstrániť index(y)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Aplikovať index(y)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Upraviť riadky" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Vložiť riadky" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Aplikovať Vybrané Zmeny" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Synchronizovať Databázy" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Vykonaných dopytov" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Súčasné pripojenie" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Konfigurácia: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Premenné a nastavenia serveru" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Hodnota sedenia" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Globálna hodnota" @@ -11619,177 +11668,177 @@ msgstr "" msgid "Wrong data" msgstr "Žiadne dáta" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Skutočne chcete vykonať príkaz " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Zobrazujem ako PHP kód" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Skontrolované SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Výsledok SQL dopytu" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Vygenerované" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexami v tabuľke `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Názov" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabuľka %1$s bola úspešné upravená" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Vybraní používatelia bol úspešne odstránený." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Bar" msgctxt "Chart type" msgid "Bar" msgstr "Stĺpec" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Stĺpce" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Inline" msgctxt "Chart type" msgid "Spline" msgstr "Upraviť tu" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "Pie" msgctxt "Chart type" msgid "Pie" msgstr "Koláč" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Názov grafu" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Série:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Hodnota" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Hodnota" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Tabuľka %s už existuje!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Tabuľka %1$s bola vytvorená." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Zobraziť dump (schému) tabuľky" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Zobraziť výber serverov" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Textarea columns" msgid "Label column" msgstr "Stĺpce s textovou oblasťou" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Celkom" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Uložiť ako súbor" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11807,30 +11856,30 @@ msgstr "Nie je možné premenovať index na PRIMARY!" msgid "No index parts defined!" msgstr "Časti indexu neboli definované!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Pridať index" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Režim úprav" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Meno indexu :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" musí byť iba meno primárneho kľúča!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Typ indexu :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Pridať do indexu  %s stĺpce" @@ -11853,263 +11902,263 @@ msgstr "Tabuľka %s bola presunutá do %s." msgid "Table %s has been copied to %s." msgstr "Tabuľka %s bola skorírovaná do %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Tabuľka je prázdna!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Zmeniť poradie tabuľky podľa" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(po jednom)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Presunúť tabuľku do (databáza.tabuľka):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Parametre tabuľky" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Premenovať tabuľku na" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Skopírovať tabuľku do (databáza.tabuľka):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Prepnúť na skopírovanú tabuľku" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Údržba tabuľky" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmentovať tabuľku" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabuľka %s bola vyprázdnená" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Vyprázdniť tabuľku (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Odstrániť dáta alebo tabuľku" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Odstrániť tabuľku (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Údržba tabuľky" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analyzovať" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Skontrolovať" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimalizovať" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Opraviť" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Skontrolovať referenčnú integritu:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Zobraziť tabuľky" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Zabrané miesto" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efektívny" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Štatistika riadku" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "statický" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dynamický" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Dĺžka riadku" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Veľkosť riadku" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Interné vzťahy" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Prechádzať iné hodnoty" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Pridať unikátny index" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add index" msgid "Add SPATIAL index" msgstr "Pridať index" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Pridať fulltextový index" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Žiadny" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Stĺpec %s bol odstránený" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Bol pridaný primárny kľúč pre %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Bol pridaný index pre %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Zobraziť viac operácii" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Odstrániť stĺpce" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Náhľad k tlači" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Zobraziť prepojenia" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Navrhnúť štruktúru tabuľky" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Pridať stĺpec" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Na konci tabuľky" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Na začiatku tabuľky" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Vytvoriť index na %s stĺpcoch" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12262,75 +12311,37 @@ msgstr "" msgid "Create version" msgstr "Vytvoriť verziu" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Additional search criteria" -msgstr "Skryť parametre vyhľadávania" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -#, fuzzy -#| msgid "Maximum number of rows to display" -msgid "Maximum rows to plot" -msgstr "Maximálny počet zobrazených riadkov" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -#| msgid "Control user" -msgid "How to use" -msgstr "Kontrolný užívateľ" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Vynulovať" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Získať viac tém!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Dostupné MIME typy" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME typy zobrazené kurzívou nemajú vlastnú transformačnú funkciu" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Dostupné transformácie" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Popis" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nemáte dostatočné práva na vykonanie tejto akcie!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profil bol aktualizovaný." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Meno pohľadu" diff --git a/po/sl.po b/po/sl.po index bb22f550ac..649792a9a9 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,8 +3,8 @@ 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-04 13:49+0200\n" -"PO-Revision-Date: 2012-06-05 16:15+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"PO-Revision-Date: 2012-06-18 22:38+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -15,21 +15,21 @@ msgstr "" "n%100==4 ? 2 : 3);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Pokaži vse" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Številka strani:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ 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:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Izvedi" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Ime ključa" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Uporabi to vrednost" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Zbirka podatkov %1$s je ustvarjena." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Pripomba zbirke podatkov: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Pripomba tabele" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Stolpec" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Privzeto" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Povezave z" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Pripombe" @@ -197,14 +198,14 @@ msgstr "Pripombe" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ne" @@ -217,120 +218,120 @@ msgstr "Ne" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Da" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Preglej povzetek stanja zbirke podatkov" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "V zbirki podatkov ni mogoče najti tabel." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Izberi vse" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Prekliči izbor vsega" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Ime zbirke podatkov je prazno!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Zbirko podatkov %1$s sem preimenoval v %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Zbirko podatkov %1$s sem skopiral v %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Preimenuj zbirko podatkov v" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Odstrani zbirko podatkov" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Zbirka podatkov %s je zavržena." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Zavrzi zbirko podatkov (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Kopiraj zbirko podatkov v" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktura in podatki" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Samo podatki" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pred kopiranjem" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj vrednost AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Dodaj omejitve" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Preklopi na kopirano zbirko podatkov" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Pravilo za razvrščanje znakov" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -339,59 +340,59 @@ msgstr "" "Hramba konfiguracije phpMyAdmin je bila onemogočena. Če želite izvedeti " "zakaj, kliknite %stukaj%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Uredi ali izvozi relacijsko shemo" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Vrstic" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Velikost" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "v uporabi" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Ustvarjeno" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Zadnjič posodobljeno" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Zadnjič pregledano" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -404,117 +405,117 @@ msgstr[3] "%s tabel" msgid "You have to choose at least one column to display" msgstr "Za prikaz morate izbrati morate vsaj en stolpec" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Preklopi na %svidni graditelj%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Razvrsti" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Naraščajoče" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Padajoče" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Pokaži" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriteriji" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Vstavi" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "In" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Briši" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ali" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Spremeni" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Dodaj/Odstrani vrstice meril" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Dodaj/Odstrani stolpce" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Osveži poizvedbo" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Uporabi tabele" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Poizvedba SQL na zbirki podatkov %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Izvedi poizvedbo" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Dostop zavrnjen" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "katerokoli besedo" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "vse besede" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "točno določeno frazo" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "kot običajni izraz (regular expression)" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati iskanja \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, php-format msgid "%1$s match inside table %2$s" msgid_plural "%1$s matches inside table %2$s" @@ -523,30 +524,30 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Izbrišem zadetke v tabeli %s?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -555,248 +556,249 @@ msgstr[1] "Skupaj: %s zadetka" msgstr[2] "Skupaj: %s zadetki" msgstr[3] "Skupaj: %s zadetkov" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Išči v zbirki podatkov" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Išči besede ali vrednosti (nadomestni znak: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Najdi:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Besede so ločene s presledkom (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Znotraj tabel:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "V stolpcu:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "V zbirki podatkov ni mogoče najti tabel" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "neznano" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je izpraznjena" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je zavržen" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je zavržena" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Sledenje je aktivno." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Sledenje ni aktivno." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Pogled" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Podvojevanje" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Vsota" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Z označenim:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Označi vse" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Preveri prekoračene" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvozi" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Pogled za tiskanje" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Izprazni" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Zavrzi" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Preveri tabelo" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimiraj tabelo" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Popravi tabelo" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analiziraj tabelo" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Dodaj predpono tabeli" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Zamenjaj predpono tabele" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopiraj tabelo s predpono" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Slovar podatkov" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Sledene tabele" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Zbirka podatkov" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Zadnja različica" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Ustvarjeno" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Posodobljeno" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Stanje" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Dejanje" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Izbriši podatke sledenja te tabele" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "aktivno" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "ni aktivno" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Različice" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Poročilo sledenja" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Posnetek strukture" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Nesledene tabele" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Sledi tabeli" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Dnevnik zbirke podatkov" @@ -808,16 +810,16 @@ msgstr "Slaba vrsta!" msgid "Selected export type has to be saved in file!" msgstr "Izbrana vrsta izvoza mora biti shranjena v datoteko!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Slabi parametri!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Ni dovolj prostora za shranjevanje datoteke %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -825,12 +827,12 @@ msgstr "" "Datoteka %s že obstaja na strežniku, spremenite ime novi ali prepišite " "obstoječo datoteko." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Spletni strežnik nima dovoljenja za shranjevanje datoteke %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump je shranjen v datoteko %s." @@ -839,86 +841,86 @@ msgstr "Dump je shranjen v datoteko %s." msgid "Invalid export type" msgstr "Neveljavna vrsta izvoza" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Vrednost za stolpec \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Uporabi OpenStreetMaps kot osnovni sloj" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometrija" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Točka" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Točka %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Dodaj točko" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Daljica" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Zunanji obroč" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Notranji obroč" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Dodaj daljico" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Dodaj notranji obroč" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Večkotnik" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Dodaj večkotnik" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Dodaj geometrijo" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Izhod" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -926,7 +928,7 @@ msgstr "" "Izberite \"GeomFromText\" iz stolpca \"Funkcija\" in prilepite spodnji niz v " "polje \"Vrednost\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -935,21 +937,21 @@ msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si " "%sdokumentacijo%s za načine, kako obiti to omejitev." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Prikazovanje zaznamka" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Zaznamek je odstranjen." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Ne morem prebrati datoteke" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -958,7 +960,7 @@ msgstr "" "Poskušali ste naložiti datoteko z nepodprtim stiskanjem (%s). Bodisi podpora " "za njega ni vključena ali pa je onemogočena z vašo konfiguracijo." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -968,29 +970,29 @@ msgstr "" "je velikost datoteke presegala največjo velikost, dovoljeno v konfiguraciji " "PHP. Glej [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Ne morem pretvoriti nabora znakov datoteke brez knjižnice za pretvorbo " "nabora znakov" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Ne morem naložiti vtičnikov za uvoz, prosimo, preverite vašo namestitev!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Zaznamek %s je ustvarjen" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Uvažanje je uspešno zaključeno, izvedenih je bilo %d poizvedb." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -998,7 +1000,7 @@ msgstr "" "Časovna omejitev skripta je potekla; če želite končati uvoz, prosimo, " "ponovno pošljite isto datoteko in uvoz se bo nadaljeval." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1007,23 +1009,23 @@ msgstr "" "navadi pomeni, da phpMyAdmin ne bo mogel dokončati tega uvoza, razen če " "povečate vaše časovne omejitve PHP." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Nazaj" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin je prijaznejši z brskalnikom, ki podpira okvirje." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Poizvedbe \"DROP DATABASE\" so izključene." @@ -1032,7 +1034,7 @@ msgstr "Poizvedbe \"DROP DATABASE\" so izključene." msgid "Do you really want to execute \"%s\"?" msgstr "Ali res želite izvesti \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" @@ -1072,7 +1074,7 @@ msgstr "Dodaj indeks" msgid "Edit Index" msgstr "Uredi indeks" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Dodaj %d stolpec(-cev) k indeksu" @@ -1090,16 +1092,16 @@ msgstr "Ime gostitelja je prazno!" msgid "The user name is empty!" msgstr "Uporabniško ime je prazno!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Geslo je prazno!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Gesli se ne ujemata!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Dodaj uporabnika" @@ -1116,23 +1118,24 @@ msgstr "Odstranjevanje izbranih uporabnikov" msgid "Close" msgstr "Zapri" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Uredi" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Grafikon prometa v živo" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Grafikon povezav/procesov v živo" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Grafikon poizvedb v živo" @@ -1142,24 +1145,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Skupaj" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Drugo" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1179,7 +1182,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Procesi" @@ -1197,7 +1200,7 @@ msgstr "Vprašanja od zadnje osvežitve" msgid "Questions (executed statements by the server)" msgstr "Vprašanja (izvedene poizvedbe strežnika)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Statistika poizvedb" @@ -1242,14 +1245,14 @@ msgid "System swap" msgstr "Sistemska izmenjava" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1301,32 +1304,32 @@ msgstr "Poslanih bajtov" msgid "Bytes received" msgstr "Prejetih bajtov" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Povezave" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1340,11 +1343,11 @@ msgstr "%d tabel(a)" msgid "Questions" msgstr "Vprašanja" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Promet" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Nastavitve" @@ -1364,11 +1367,11 @@ msgstr "Dodaj grafikon na mrežo" msgid "Please add at least one variable to the series" msgstr "Prosimo, v serijo dodajte vsaj eno spremenljivko" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Brez" @@ -1468,7 +1471,7 @@ msgstr "Spremeni nastavitve" msgid "Current settings" msgstr "Trenutne nastavitve" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Naslov grafikona" @@ -1553,7 +1556,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Čas" @@ -1648,10 +1651,10 @@ msgstr "" "Gradnja grafikona z uvoženo konfiguracijo je spodletela. Ponastavljanje na " "privzeto konfiguracijo ..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvozi" @@ -1699,9 +1702,9 @@ msgstr "Uporabljena spremenljivka/formula" msgid "Test" msgstr "Preizkus" -#: 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 +#: 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 msgid "Cancel" msgstr "Prekliči" @@ -1713,11 +1716,11 @@ msgstr "Nalaganje" msgid "Processing Request" msgstr "Obdelovanje zahteve" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Napaka v obdelovanju zahteve" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Ni izbranih zbirk podatkov." @@ -1729,9 +1732,9 @@ msgstr "Brisanje stolpca" msgid "Adding Primary Key" msgstr "Dodajanje primarnega ključa" -#: 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 +#: 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 msgid "OK" msgstr "V redu" @@ -1771,15 +1774,15 @@ msgstr "Skrij indekse" msgid "Show indexes" msgstr "Pokaži indekse" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Preverjanje tujih ključev:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Omogočeno)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Onemogočeno)" @@ -1807,7 +1810,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "Urejevalnik ENUM/SET" @@ -1846,8 +1849,8 @@ msgstr "Prikaži polje poizvedbe" msgid "No rows selected" msgstr "Ni izbranih vrstic" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Spremeni" @@ -1855,18 +1858,18 @@ msgstr "Spremeni" msgid "Query execution time" msgstr "Čas izvajanja poizvedbe" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Shrani" @@ -1878,7 +1881,7 @@ msgstr "Skrij iskalne pogoje" msgid "Show search criteria" msgstr "Prikaži iskalne pogoje" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Iskanje s povečevanjem" @@ -1895,7 +1898,6 @@ msgid "To zoom in, select a section of the plot with the mouse." msgstr "Za povečanje izberite z miško del izrisa." #: 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 "Kliknite gumb za ponastavitev povečave za vrnitev na prvotno stanje." @@ -1924,12 +1926,12 @@ msgstr "Rezultati poizvedbe" msgid "Data point content" msgstr "Vsebina kazalca podatkov" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Prezri" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Kopiraj" @@ -1949,7 +1951,7 @@ msgstr "Izberite tuji ključ" msgid "Please select the primary key or a unique key" msgstr "Prosimo, izberite primarni ključ ali unikatni ključ" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Izberite stolpec za prikaz" @@ -2042,7 +2044,7 @@ msgstr "Ustvari" msgid "Change Password" msgstr "Spremeni geslo" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Več" @@ -2133,63 +2135,63 @@ msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "dec" @@ -2227,32 +2229,32 @@ msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "sob" @@ -2368,16 +2370,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "na sekundo" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "na minuto" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "na uro" @@ -2399,19 +2401,204 @@ msgstr "" msgid "Font size" msgstr "Velikost pisave" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Shrani urejene podatke" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Obnovi vrstni red stolpcev" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Začetek" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Prejšnja" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Naslednja" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Konec" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Začetna vrstica" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Število vrstic" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Način" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "vodoravnem" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "vodoravno (zasukani naslovi)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "navpičnem" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "Glave vsakih %s vrstic" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Uredi po ključu" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Možnosti" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Delna besedila" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Polna besedila" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Relacijski ključ" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Relacijski prikazni stolpec" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Prikaži dvojiške vsebine" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Prikaži vsebine BLOB" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Prikaži dvojiške vsebine kot HEX" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Skrij pretvorbo z brskalnikom" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Dobro poznano besedilo" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Dobro poznana dvojiška datoteka" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Vrstica je izbrisana" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Prekini proces" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Morda je približno. Glej [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "v poizvedbi" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Prikazujem vrstice" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "skupaj" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Poizvedba je potrebovala %01.4f s" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Dejanja rezultatov poizvedbe" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Pogled za tiskanje (s polnimi besedili)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Prikaži grafikon" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Predstavi podatke GIS" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Ustvari pogled" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Povezave ni mogoče najti" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Preveč sporočil o napakah; nekatera zato niso prikazana." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Datoteka ni naložen datoteka." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Naložena datotek presega napotek upload_max_filesize v php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2419,27 +2606,27 @@ msgstr "" "Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu " "HTML." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Naložena datoteka je bila naložena samo delno." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Manjka začasna mapa." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Pisanje datoteke na disk je spodletelo." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Nalaganje datoteke je ustavila razširitev." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Neznana napaka pri nalaganju datoteke." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2447,26 +2634,39 @@ msgstr "" "Napaka pri premikanju naložene datoteke, glej [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Napaka pri premikanju naložene datoteke." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Ne morem prebrati (premakniti) naložene datoteke." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Odpri novo okno phpMyAdmin" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Če želite še naprej uporabljati program, morate omogočiti piškotke." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Edinstven" @@ -2479,8 +2679,8 @@ msgstr "Stisnjen" msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Pripomba" @@ -2503,128 +2703,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Zbirke podatkov" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Strežnik" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Vstavi" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Sledenje" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tabela je prazna!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Zbirka podatkov se zdi prazna!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Poizvedba" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilegiji" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutina" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Dogodki" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Oblikovalnik" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Uporabniki" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sinhroniziraj" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Dvojiški dnevnik" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Spremenljivke" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Nabori znakov" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Vtičniki" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Pogoni" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Napaka" @@ -2655,7 +2855,7 @@ msgstr[1] "Vstavil sem %1$d vrstici." msgstr[2] "Vstavil sem %1$d vrstice." msgstr[3] "Vstavil sem %1$d vrstic." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Napaka med ustvarjanjem PDF:" @@ -2748,16 +2948,97 @@ 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 +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 +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 +msgid "Value" +msgstr "Vrednost" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Iskanje po tabeli" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Uredi/Vstavi" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Izberite stolpce (vsaj enega):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Dodaj iskalne pogoje (telo \"where\" stavka):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Število vrstic na stran" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Vrstni red prikaza:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Uporabite ta stolpec za označevanje vsake točke" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Največje število vrstic za izris" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Prebrskaj tuje vrednosti" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Dodatni iskalni pogoji" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Izvedi \"query by example\" (nadomestni znak: \"%\") za dva različna stolpca" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Izvedi \"query by example\" (nadomestni znak: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Prebrskaj/Uredi točke" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Kako uporabljati" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "Ponastavi povečavo" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Za temo %s ni bila najdena veljavna pot slik!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Predogled ni na voljo." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "uporabi" @@ -2776,7 +3057,7 @@ msgstr "Tema %s ni bila najdena!" msgid "Theme path not found for theme %s!" msgstr "Pot teme ni bila najdena za temo %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Motiv" @@ -3129,13 +3410,13 @@ msgstr "Naštevanje, izbrano s seznama določenih vrednosti" msgid "Cannot connect: invalid settings." msgstr "Ne morem se povezati: neveljavne nastavitve." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Dobrodošli v %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3144,7 +3425,7 @@ msgstr "" "Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite " "uporabiti %1$snastavitveni skript%2$s, da jo ustvarite." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3159,59 +3440,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Uporaba Blowfish iz mcrypt je spodletela!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Po tej točki mora biti JavaScript omogočen" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "Vaša seja je potekla. Prosimo, prijavite se znova." -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Prijava" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Vnesete lahko ime gostitelja/IP-naslov in vrata ločena s presledkom." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Strežnik:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Uporabniško ime:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Geslo:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Izbira strežnika" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Če želite še naprej uporabljati program, morate omogočiti piškotke." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Prijava brez gesla je prepovedana s konfiguracijo (glej AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Brez aktivnosti v zadnjih %s sekundah; prosimo, prijavite se znova" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Ne morem se prijaviti v strežnik MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Napačno uporabniško ime/geslo. Dostop zavrnjen." @@ -3243,7 +3520,7 @@ msgstr "deljeno" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabele" @@ -3255,13 +3532,13 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Podatki" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Presežek" @@ -3286,19 +3563,11 @@ msgstr "Preveri privilegije za zbirko podatkov "%s"." msgid "Check Privileges" msgstr "Preveri privilegije" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "možno izkoriščanje" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "zaznana številska tipka" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Ne morem prebrati konfiguracijske datoteke" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3306,12 +3575,12 @@ msgstr "" "To po navadi pomeni, da ima skladenjsko napako; prosimo, preverite vse " "spodaj prikazane napake." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Ne morem naložiti privzete konfiguracije iz: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3319,206 +3588,192 @@ msgstr "" "Ukaz [code]$cfg['PmaAbsoluteUri'][/code] MORA biti določen v konfiguracijski " "datoteki!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Neveljaven indeks strežnika: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Neveljavno ime gostitelja za strežnik %1$s. Prosim, preglejte svojo " "konfiguracijo." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s bi morali nadgraditi na različico %s ali novejšo." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "poskus prepisa GLOBALS" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "možno izkoriščanje" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "zaznana številska tipka" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Največja velikost: %s %s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentacija" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "Poizvedba SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL je vrnil: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Ne morem se povezati s preverjalnikom SQL!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Razloži stavek SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Preskoči razlago stavka SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Brez kode PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Ustvari kodo PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Osveži" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Preskoči preverjanje pravilnosti SQL stavka" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Preveri pravilnost stavka SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Urejanje te poizvedbe v vrstici" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "V vrstici" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profiliranje" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y ob %H.%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s ur, %s minut in %s sekund" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Manjkajoč parameter:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Začetek" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Prejšnja" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Naslednja" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Konec" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Preskoči na zbirko podatkov "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Kliknite za preklop" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Prebrskajte svoj računalnik:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Nobene datoteke ni za naložiti" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Izvedi" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Natisni" @@ -3548,8 +3803,8 @@ msgid "Closed" msgstr "Zaprto" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Onemogočeno" @@ -3691,9 +3946,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Ponastavi" @@ -3918,10 +4173,6 @@ msgstr "Skrij dejanja strukture tabele" msgid "Show binary contents as HEX by default" msgstr "Privzeto prikaži dvojiške vsebine kot HEX" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Prikaži dvojiške vsebine kot HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Prikaži naštete zbirke podatkov kot seznam namesto spustnega menija" @@ -3977,7 +4228,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Najdaljši čas izvajanja" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Shrani kot datoteko" @@ -3986,7 +4237,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Oblika" @@ -4090,7 +4341,7 @@ msgid "MIME type" msgstr "Vrsta MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relacije" @@ -5686,9 +5937,9 @@ msgstr "Potrebuje omogočen Preverjalnik SQL" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Geslo" @@ -5972,14 +6223,6 @@ msgstr "Prosimo, preverite pravice mape, v kateri se nahaja zbirka podatkov." msgid "Details..." msgstr "Podrobnosti ..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Morda je približno. Glej [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -5988,18 +6231,18 @@ msgstr "" "spodletela." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Spremeni geslo" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Brez gesla" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Ponovno vnesi" @@ -6020,22 +6263,22 @@ msgstr "Ustvari zbirko podatkov" msgid "Create" msgstr "Ustvari" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Brez privilegijev" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Ime" @@ -6193,25 +6436,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Pretvorba kodiranja:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s z veje %2$s" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "ni veje" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Redakcija Git" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "potrdil(-a) %2$s dne %1$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "spremenil(-a) %2$s dne %1$s" @@ -6330,172 +6573,27 @@ msgstr "Možnosti odvisne od oblike:" msgid "Language" msgstr "Jezik" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Shrani urejene podatke" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Obnovi vrstni red stolpcev" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Začetna vrstica" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Število vrstic" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Način" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "vodoravnem" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "vodoravno (zasukani naslovi)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "navpičnem" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "Glave vsakih %s vrstic" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Uredi po ključu" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Možnosti" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Delna besedila" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Polna besedila" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Relacijski ključ" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Relacijski prikazni stolpec" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Prikaži dvojiške vsebine" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Prikaži vsebine BLOB" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Skrij pretvorbo z brskalnikom" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Dobro poznano besedilo" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Dobro poznana dvojiška datoteka" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Vrstica je izbrisana" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Prekini proces" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "v poizvedbi" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Prikazujem vrstice" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "skupaj" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Poizvedba je potrebovala %01.4f s" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Dejanja rezultatov poizvedbe" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Pogled za tiskanje (s polnimi besedili)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Prikaži grafikon" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Predstavi podatke GIS" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Ustvari pogled" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Povezave ni mogoče najti" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Podatki o različici" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Domača mapa podatkov" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Pogosti del poti mape za vse podatkovne datoteke InnoDB." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Podatkovne datoteke" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Povečevanje pri samorazširitvi" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6503,11 +6601,11 @@ msgstr "" "Velikost povečevanja pri razširjanju velikosti samorazširitvenega prostora v " "tabeli, ko ta postane poln." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Velikost zaloge medpomnilnika" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6515,79 +6613,79 @@ msgstr "" "Velikost spominskega medpomnilnika, ki ga InnoDB uporablja za predpomnjenje " "podatkov in indeksov svojih tabel." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Zaloga medpomnilnika" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Stanje InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Uporaba zaloge medpomnilnika" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "strani" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Proste strani" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Umazane strani" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Strani, ki vsebujejo podatke" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Strani za izplakniti" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Zasedene strani" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Zapahnjene strani" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Dejavnost zaloge medpomnilnika" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Zahtev branja" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Zahtev pisanja" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Zgrešena branja" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Čakajoča pisanja" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Zgrešena branja v %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Čakajoča pisanja v %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Velikost kazalca podatkov" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6595,11 +6693,11 @@ msgstr "" "Privzeta velikost kazalca v bajtih, ki se naj uporablja s CREATE TABLE za " "tabele MyISAM, ko možnost MAX_ROWS ni določena." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Način samodejne obnovitve" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6607,11 +6705,11 @@ msgstr "" "Način za samodejno obnovitev sesutih tabel MyISAM, ko je določen preko " "zagonske možnosti strežnika --myisam-recover." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Največja velikost začasnih razvrstitvenih datotek" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6620,11 +6718,11 @@ msgstr "" "Največja velikost začasnih datotek, ki jih lahko MySQL uporablja, ko ponovno " "ustvarja indeks MyISAM (med REPAIR TABLE, ALTER TABLE ali LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Največja velikost začasnih datotek ob ustvarjanju indeksa" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6634,11 +6732,11 @@ msgstr "" "MyISAM, večja kot uporabljena vrednost predpomnilnika ključev določena " "tukaj, raje izberite način predpomnilnika ključev." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Niti popravljanja" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6646,11 +6744,11 @@ msgstr "" "Če je vrednost večja od 1, so indeksi tabel MyISAM med popravljanjem zaradi " "postopka razvrščanja ustvarjeni vzporedno (vsak indeks v svoji niti)." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Velikost medpomnilnika razvrščanja" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6658,11 +6756,11 @@ msgstr "" "Medpomnilnik, ki je dodeljen razvrščanju indeksov MyISAM med REPAIR TABLE " "ali ustvarjanju indeksov s CREATE INDEX ali ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Velikost predpomnilnika indeksov" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6671,11 +6769,11 @@ msgstr "" "je 32 MB. Tukaj dodeljen pomnilnik se uporablja samo za predpomnjenje strani " "indeksov." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Velikost predpomnilnika zapisov" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6686,11 +6784,11 @@ msgstr "" "uporablja za predpomnjenje sprememb datotek oprimkov podatkov (.xtd) in " "kazalcev vrstic (.xtr)." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Velikost predpomnilnika dnevnika" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6699,11 +6797,11 @@ msgstr "" "uporablja za predpomnjenje ob podatkih dnevnika transakcij. Privzeto je 16 " "MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Prag dnevniške datoteke" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6711,11 +6809,11 @@ msgstr "" "Velikost dnevnika transakcij pred prehodom in ustvarjanjem novega dnevnika. " "Privzeta vrednost je 16 MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Velikost medpomnilnika transakcij" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6723,11 +6821,11 @@ msgstr "" "Velikost globalnega medpomnilnika dnevnika transakcij (pogon dodeli dva " "medpomnilnika te velikosti). Privzeto je 1 MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Pogostnost nadzornih točk" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6735,11 +6833,11 @@ msgstr "" "Količina podatkov, zapisanih v dnevnik transakcij, preden se izvede nadzorna " "točka. Privzeta vrednost je 24 MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Prag podatkovnega dnevnika" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6751,11 +6849,11 @@ msgstr "" "tabele. Tako se lahko ta vrednost poveča za povečanje skupne količine " "podatkov, ki so lahko shranjeni v zbirki podatkov." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Prag smeti" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6763,11 +6861,11 @@ msgstr "" "Odstotek smeti v dnevniški datoteki, preden je stisnjena. Vrednost je med 1 " "in 99. Privzeto je 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Velikost medpomnilnika dnevnikov" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6777,27 +6875,27 @@ msgstr "" "Privzeto je 256 MB. Pogon vsaki niti dodeli en medpomnilnik, vendar samo v " "primeru, če mora nit zapisovati v podatkovni dnevnik." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Velikost rasti podatkovnih datotek" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Velikost rasti datotek za ravnanje s podatki (.xtd)." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Velikost rasti datotek vrstic" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Velikost rasti datotek kazalca vrstic (.xtr)." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Število dnevniških datotek" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6809,7 +6907,7 @@ msgstr "" "dnevniki izbrani, v naprotnem primeru pa bodo preimenovani in dodeljena jim " "bo naslednja najvišja številka." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6818,11 +6916,11 @@ msgstr "" "Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači " "strani PrimeBase XT%s." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Sorodne povezave" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "Blog PrimeBase XT avtorja Paula McCullagha" @@ -6871,14 +6969,14 @@ msgstr "Odloži podatke za tabelo" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Dogodek" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Opredelitev" @@ -6936,14 +7034,14 @@ msgstr "Prikaži vrste MIME" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Gostitelj" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Čas nastanka" @@ -7150,21 +7248,12 @@ msgstr "Pogledi" msgid "Export contents" msgstr "Izvozi vsebine" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Odpri novo okno phpMyAdmin" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Za predstavitev GIS ni najdenih podatkov." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "poskus prepisa GLOBALS" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7266,12 +7355,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Ime tabele" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Imena stolpcev" @@ -7341,93 +7430,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funkcija" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Skrij" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Dvojiško" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Dvojiško - ne urejaj" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "imenik za nalaganje datotek" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Uredi/Vstavi" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Nadaljuj vstavljanje z %s vrsticami" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "in potem" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Vstavi kot novo vrstico" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Vstavi kot novo vrstico in presliši napake" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Prikaži poizvedbo insert" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Pojdi nazaj na prejšnjo stran" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Vstavi še eno novo vrstico" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Pojdi nazaj na stran" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Uredi naslednjo vrstico" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Vrednost" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" @@ -7442,32 +7515,32 @@ msgstr "Nobeno" msgid "Convert to Kana" msgstr "Pretvori v kano" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Od" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Za" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Pošlji" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Dodaj predpono tabele" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Dodaj predpono" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "Ali res želite izvesti naslednjo poizvedbo?" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Brez sprememb" @@ -7677,80 +7750,80 @@ msgstr "Osveži navigacijski okvir" msgid "This format has no options" msgstr "Oblika nima nobenih možnosti" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "ni v redu" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "V redu" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Omogočeno" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Splošne lastnosti relacij" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Prikaži lastnosti" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Ustvarjanje datotek PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Prikazovanje pripomb stolpcev" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Pretvorba z brskalnikom" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 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:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Označena poizvedba SQL" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Zgodovina SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Vztrajno nedavno uporabljene tabele" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Vztrajne nastavitve uporabniškega vmesnika tabel" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Uporabniške nastavitve" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Hitri koraki za namestitev naprednih funkcij:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "Ustvarite potrebne tabele s examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Ustvarite uporabnika pma in mu dodelite dostop do teh tabel." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7758,13 +7831,13 @@ msgstr "" "Omogočite napredne funkcije v konfiguracijski datoteki (config.inc." "php); začnite na primer s config.sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Ponovno se prijavite v phpMyAdmin, da naložite posodobljeno konfiguracijsko " "datoteko." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "brez opisa" @@ -7772,7 +7845,7 @@ msgstr "brez opisa" msgid "Slave configuration" msgstr "Konfiguracija podrejencev" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Spremeni ali ponovno konfiguriraj glavni strežnik" @@ -7787,13 +7860,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Uporabniško ime" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Vrata" @@ -7806,7 +7879,7 @@ msgid "Slave status" msgstr "Stanje podrejenca" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Spremenljivka" @@ -7822,38 +7895,38 @@ msgstr "" "Samo podrejenci, ki so bili zagnani z možnostjo --report-host=host_name, so " "vidni na tem seznamu." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Dodaj uporabnika podvojevanja podrejencev" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Uporabi besedilno polje" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Kateri koli gostitelj" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokalno" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Ta strežnik" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Uporabi tabelo gostiteljev" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7869,7 +7942,7 @@ msgstr "Ustvari geslo" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7900,88 +7973,89 @@ msgstr "Dogodek %1$s je ustvarjen." 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:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Uredi dogodek" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Napaka v obdelovanju zahteve" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Podrobnosti" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Ime dogodka" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Vrsta dogodka" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Spremeni v %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Izvedi ob" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Izvedi vsakih" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Začetek" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Konec" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Ob dokončanju ohrani" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Opredeljevalec" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: 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\"" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Navesti morate ime dogodka" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Navesti morateveljavno vrednost intervala dogodka." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Navesti morate veljavni čas izvedbe dogodka." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Navesti morate veljavno vrsto dogodka." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "Navesti morate opredelitev dogodka." -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Novo" @@ -8014,7 +8088,7 @@ msgstr "" "morebitnim težavam." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Neveljavna vrsta rutine: \"%s\"" @@ -8033,69 +8107,69 @@ msgstr "Rutina %1$s je bila spremenjena." msgid "Routine %1$s has been created." msgstr "Rutina %1$s je bila ustvarjena." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Uredi rutino" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Ime rutine" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parametri" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Smer" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Dolžina/Vrednosti" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Dodaj parameter" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Odstrani zadnji parameter" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Vrnjena vrsta" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Vrnjena dolžina/vrednosti" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Vrnjene možnosti" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Je deterministično" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Vrsta varnosti" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "Dostop do podatkov SQL" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Navesti morate ime rutine" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Neveljavna smer \"%s\" podana za parameter." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8103,19 +8177,19 @@ msgstr "" "Navesti morate dolžine/vrednosti za parametre rutine vrste ENUM, SET, " "VARCHAR in VARBINARY." -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Navesti morate opredelitev rutine." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8124,18 +8198,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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Rezultati izvedbe rutine %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Izvedi rutino" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Parametri rutine" @@ -8153,36 +8227,36 @@ msgstr "Sprožilec %1$s je bil spremenjen." msgid "Trigger %1$s has been created." msgstr "Sprožilec %1$s je ustvarjen." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Uredi sprožilec" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Ime sprožilca" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Čas" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Navesti morate ime sprožilca" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Navesti morate veljavni časovni izbor sprožilca" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Navesti morate veljavni dogodek sprožilca" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Navesti morate veljavno ime tabele" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Navesti morate opredelitev sprožilca." @@ -8266,7 +8340,7 @@ msgstr "Ni dogodkov za prikaz." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8275,7 +8349,7 @@ msgstr "Tabela %s ne obstaja!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8283,7 +8357,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Prosimo, konfigurirajte koordinate za tabelo %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8294,27 +8368,27 @@ msgstr "Shema zbirke podatkov %s - Stran %s" msgid "This page does not contain any tables!" msgstr "Stran ne vsebuje nobenih tabel!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "NAPAKA SHEME: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Relacijska shema" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Vsebina" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atributi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Dodatno" @@ -8422,7 +8496,7 @@ msgstr "Neznani jezik: %1$s." msgid "Current Server" msgstr "Trenutni strežnik" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Izvorna zbirka podatkov" @@ -8440,7 +8514,7 @@ msgstr "Oddaljeni strežnik" msgid "Difference" msgstr "Razlika" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Ciljna zbirka podatkov" @@ -8459,7 +8533,7 @@ msgstr "Izvedi poizvedbo/poizvedbe SQL na strežniku %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Počisti" @@ -8468,11 +8542,11 @@ msgstr "Počisti" msgid "Columns" msgstr "Stolpci" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Dovoli dostop do zaznamka vsem uporabnikom" @@ -8567,7 +8641,7 @@ msgstr "" "Ne morem inicializirati preverjevalnika SQL. Prosimo, preverite, če so " "nameščene vse razširitve PHP, kot je navedeno v %sdokumenaciji%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "Sledenje %s je aktivirano." @@ -8593,8 +8667,8 @@ msgstr "" "narekovaja, npr.: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indeks" @@ -8644,13 +8718,13 @@ msgstr "Brez" msgid "As defined:" msgstr "Kot določeno:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primarni" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Polno besedilo" @@ -8663,17 +8737,17 @@ msgstr "prvi" msgid "after %s" msgstr "po %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Dodaj %s stolpec(-cev)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Dodati morate vsaj en stolpec." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Pogon skladiščenja" @@ -8681,41 +8755,6 @@ msgstr "Pogon skladiščenja" msgid "PARTITION definition" msgstr "Definicija PARTITION" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Iskanje po tabeli" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Izberite stolpce (vsaj enega):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Dodaj iskalne pogoje (telo \"where\" stavka):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Število vrstic na stran" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Vrstni red prikaza:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Prebrskaj tuje vrednosti" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Izvedi \"query by example\" (nadomestni znak: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8865,11 +8904,11 @@ msgstr "" msgid "Manage your settings" msgstr "Upravljajte svoje nastavitve" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Konfiguracija je shranjena" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8882,7 +8921,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Ne morem shraniti konfiguracije" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8911,7 +8950,7 @@ msgstr "Razvrščanje znakov povezave strežnika" msgid "Appearance Settings" msgstr "Prikazne nastavitve" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Več nastavitev" @@ -8931,9 +8970,9 @@ msgstr "Različica programske opreme" msgid "Protocol version" msgstr "Različica protokola" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Uporabnik" @@ -9069,126 +9108,126 @@ msgstr "" "Strežnik, ki teče z Suhosin. Prosimo, nanašajte se na %sdokumentacijo%s za " "morebitna vprašanja." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Brez zbirk podatkov" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "Filtriraj zbirke podatkov po imenu" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Filtriraj tabele po imenu" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Ustvari tabelo" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Prosimo, izberite zbirko podatkov" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Pokaži/Skrij levi meni" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Shrani položaj" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Ustvari razmerje" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Osveži" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Pomoč" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Oglate povezave" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Neposredne povezave" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Pripni na mrežo" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Skrči/razširi vse" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Preklopi majhno/veliko" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Preklopi relacijske črte" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Uvozi/Izvozi koordinate za PDF-shemo" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Zgradi poizvedbo" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Premakni meni" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Skrij/Pokaži vse" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Skrij/Pokaži tabele brez razmerij" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Število tabel" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Izbriši razmerje" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Operator razmerja" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Razen" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "podpoizvedba" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Preimenuj v" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Novo ime" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Agregat" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Dejavne možnosti" @@ -9200,51 +9239,51 @@ msgstr "Stran je bila ustvarjena" msgid "Page creation failed" msgstr "Ustvarjanje strani je spodletelo" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Stran" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Uvozi z izbrane strani" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Izvozi na izbrano stran" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Ustvari stran in izvozi nanjo" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Ime nove strani: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Izvozi/Uvozi v razmerju" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "priporočeno" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Napaka: razmerje že obstaja." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Napaka: Razmerje ni dodano." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Dodano razmerje FOREIGN KEY" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Dodana notranja razmerja" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relacija je izbrisana" @@ -9256,51 +9295,51 @@ msgstr "Napaka pri shranjevanju koordinat Oblikovalnika." msgid "Modifications have been saved" msgstr "Spremembe so shranjene" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Ne morem shraniti nastavitev, poslan obrazec vsebuje napake" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Ne morem uvoziti konfiguracije" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Konfiguracija vsebuje nepravilne podatke za nekatera polja." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Ali želite uvoziti preostale nastavitve?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Shranjeno: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Uvozi iz datoteke" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Uvozi iz hrambe brskalnika" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Nastavitve bodo uvožene iz brskalnikove lokalne hrambe." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Nimate shranjenih nastavitev!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Te funkcije vaš spletni brskalnik ne podpira" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Združi s trenutno konfiguracijo" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9309,38 +9348,38 @@ msgstr "" "Več nastavitev lahko nastavite s spreminjanjem config.inc.php, npr. z " "uporabo %sNastavitvenega skripta%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Shrani v hrambo brskalnika" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Nastavitve bodo shranjene v lokalno hrambo vašega brskalnika." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Obstoječe nastavitve bodo prepisane!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Ponastavite lahko vse svoje nastavitve in jih obnovite na njihove privzete " "vrednosti." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Uvozi datoteke" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Vse" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabele %s ni mogoče najti ali pa ni v %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Datoteka ne obstaja" @@ -9348,17 +9387,17 @@ msgstr "Datoteka ne obstaja" msgid "Select binary log to view" msgstr "Izberite dvojiški dnevnik za pregled" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Skrči prikazane poizvedbe" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Pokaži celotne poizvedbe" @@ -9374,7 +9413,7 @@ msgstr "Položaj" msgid "Original position" msgstr "Izvirni položaj" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Podatki" @@ -9382,7 +9421,7 @@ msgstr "Podatki" msgid "Character Sets and Collations" msgstr "Nabori znakov in pravila za razvrščanje znakov" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." @@ -9391,24 +9430,24 @@ msgstr[1] "Uspešno sem zavrgel %1$d zbirki podatkov." msgstr[2] "Uspešno sem zavrgel %1$d zbirke podatkov." msgstr[3] "Uspešno sem zavrgel %1$d zbirk podatkov." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statistika zbirk podatkov" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Podvojevanje glavnega strežnika" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Podvojevanje podrejencev" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Omogoči statistiko" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9420,153 +9459,153 @@ msgstr "" msgid "Storage Engines" msgstr "Pogoni skladiščenja" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Pokaži povzetek stanja zbirk podatkov" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Moduli" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Začetek" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Vtičnik" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Modul" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Knjižnica" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Različica" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Avtor" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Dovoljenje" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "onemogočeno" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Vsebuje vse privilegije razen GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Omogoča spreminjanje strukture obstoječih tabel." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Omogoča ustvarjanje novih zbirk podatkov in tabel." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Omogoča ustvarjanje shranjenih rutin." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Omogoča ustvarjanje novih tabel." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Omogoča ustvarjanje začasnih tabel." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Omogoča ustvarjanje, brisanje in preimenovanje uporabniških računov." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Omogoča ustvarjanje novih pogledov." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Omogoča brisanje podatkov." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Omogoča brisanje zbirk podatkov in tabel." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Omogoča brisanje tabel." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Omogoča določanje dogodkov za načrtovalnik dogodkov" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Omogoča izvajanje shranjenih rutin." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Omogoča uvažanje in izvažanje podatkov v datoteke." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Omogoča dodajanje uporabnikov in privilegijev brez osveževanja privilegijev." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Omogoča ustvarjanje in brisanje indeksov." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Omogoča vstavljanje in zamenjavo podatkov." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Omogoča zaklepanje tabel za trenutno temo." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Omeji število povezav, ki jih uporabnik lahko odpre v eni uri." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Omeji število poizved, ki jih uporabnik lahko pošlje strežniku v eni uri." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9574,62 +9613,62 @@ msgstr "" "Omeji število ukazov za spremembo tabel ali zbirke podatkov, ki jih " "uporabnik lahko izvrši v eni uri." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Omogoča ogled procesov vseh uporabnikov" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "V tej različici MySQL nima pomena." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Omogoča osveževanje strežnikovih nastavitev in praznjenje strežnikovih " "predpomnilnikov." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da uporabniku pravico poizvedovati kje so njegovi nadrejeni / podrjeni " "strežniki." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Potrebno za podrejene strežnike pri replikaciji." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Omogoča branje podatkov." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Omogoča dostop do popolnega spiska zbirk podatkov." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Omogoča izvajanje poizvedb SHOW CREATE VIEW." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Omogoča ugašanje strežnika." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9639,162 +9678,162 @@ msgstr "" "priklopov; potrebno za večino administrativnih nalog kot sta postavljanje " "globalnih spremenljivk in ukinjanje procesov drugih uporabnikov." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Omogoča ustvarjanje in brisanje sprožilcev" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Omogoča spreminjanje podatkov." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Brez privilegijev." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Brez" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Privilegiji tipični za tabelo" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Opomba: Imena privilegijev MySQL so zapisana v angleščini" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globalni privilegiji" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Privilegiji tipični za podatkovno zbirko" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Omejitve virov" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Obvestilo: Če postavite vrednost na 0 (nič), boste odstranili omejitev." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Podatki o prijavi" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Ne spreminjaj gesla" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Najden ni bil noben uporabnik." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Uporabnik %s že obstaja!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Dodali ste novega uporabnika." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Posodobili ste privilegije za %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Odvzeli ste privilegije za %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Geslo za %s je uspešno spremenjeno." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Ni izbranih uporabnikov za brisanje!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Osvežujem privilegije" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Uspešno sem izbrisal izbrane uporabnike." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Uspešno sem osvežil privilegije." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Uredi privilegije" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Odvzemi" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Izvozi vse" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Kateri koli" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Privilegiji vseh uporabnikov" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Privilegiji %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Pregled uporabnikov" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Dovoli" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Izbriši izbrane uporabnike" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9807,50 +9846,50 @@ msgstr "" "jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru " "morate pred nadaljevanjem %sosvežiti privilegije%s." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Privilegiji tipični za stolpec" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na naslednji zbirki podatkov" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na naslednji tabeli" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Spremeni prijavne informacije / Kopiraj uporabnika" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Ustvari novega uporabnika z enakimi pravicami in ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... obdrži starega." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... izbriši starega s seznama uporabnikov." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9858,83 +9897,83 @@ msgstr "" "... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " "njegove pravice." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Zbirka podatkov za uporabnika" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Dodeli vse privilegije za podatkovno zbirko "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Uporabniški dostop do "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "globalno" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "glede na zbirko podatkov" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "nadomestni znak" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Uporabnik je dodan." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Neznana napaka" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Ne morem se povezati z glavnim strežnikom %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Ne morem prebrati položaja dnevnika glavnega strežnika. Možne težave s " "privilegiji na glavnem strežniku." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Ne morem spremeniti glavnega strežnika" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Glavni strežnik je uspešno spremenjen v %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Strežnik je konfiguriran kot glavni strežnik v postopku podvojevanja." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Pokaži stanje glavnega strežnika" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Pokaži povezane podrejence" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9943,11 +9982,11 @@ msgstr "" "Strežnik ni konfiguriran kot glavni strežnik v postopku podvojevanja. Ga " "želite konfigurirati?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Konfiguracija glavnega strežnika" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9961,19 +10000,19 @@ msgstr "" "prezrtjem vseh zbirk podatkov po privzetem in podvojitvijo samo določenih " "zbirk podatkov. Prosimo, izberite način:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Podvoji vse zbirke podatkov; prezri:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Prezri vse zbirke podatkov; podvoji:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Prosimo, izberite zbirke podatkov:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -9981,7 +10020,7 @@ msgstr "" "Sedaj dodajte naslednje vrstice na konec razdelka [mysqld] v vašem my.cnf in " "nato, prosimo, ponovno zaženite strežnik MySQL." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -9991,83 +10030,83 @@ msgstr "" "Nato bi morali videti sporočilo, ki vam sporoča, da je strežnik " "konfiguriran kot glavni strežnik" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Podrejenčeva nit SQL ni zagnana!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Podrejenčeva nit IO ni zagnana!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Strežnik je konfiguriran kot podrejenec v postopku podvojevanja. Ali želite:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Oglej si tabelo stanj podrejencev" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Sinhroniziraj zbirke podatkov z glavnim strežnikom" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Upravljaj podrejenca:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Polni začetek" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Polni konec" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Ponovno zaženi podrejenca" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Zaženi samo nit SQL" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Ustavi samo nit SQL" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Zaženi samo nit IO" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Ustavi samo nit IO" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Upravljanje napak:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" "Preskakovanje napak lahko vodi v nesinhroniziran glavni strežnik in " "podrejenec!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Preskoči trenutno napako" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Preskoči naslednjo" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "napak." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10076,126 +10115,126 @@ msgstr "" "Strežnik ni konfiguriran kot podrejenec v postopku podvojevanja. Ga želite " "konfigurirati?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Nit %s je bila prekinjena." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ni uspel prekiniti niti %s. Verjetno je že prekinjena." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Upravljavec" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Predpomnilnik poizvedb" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Niti" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Začasni podatki" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Zakasnjena vstavljanja" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Predpomnilnik ključev" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Stiki" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Razvrščanje" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Koordinator transakcij" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Izplakni (zapri) vse tabele" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Pokaži odprte tabele" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Prikaži gostitelje podrejencev" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Prikaži stanje podrejencev" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Izplakni predpomnilnik poizvedb" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Podatki o izvajanju" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Vse spremenljivke stanja" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Nadziranje" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Svetovalec" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Hitrost osveževanja: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filtri" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Vsebuje besedo:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Prikaži samo opozorilne vrednosti" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filtriraj po kategoriji ..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Prikaži neoblikovane vrednosti" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Sorodne povezave:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Zaženi analitik" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Navodila" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10203,7 +10242,7 @@ msgstr "" "Svetovalni sistem lahko nudi priporočila o strežniških spremenljivkah tako, " "da analizira spremenljivke stanja strežnika." -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10212,7 +10251,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:920 +#: server_status.php:919 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 " @@ -10223,7 +10262,7 @@ msgstr "" "razveljavite. Napačno nastavljanje ima lahko na zmogljivost zelo negativen " "učinek." -#: server_status.php:922 +#: server_status.php:921 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 " @@ -10234,31 +10273,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:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Vprašanj od zagona: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Izjave" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "Št." -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Promet omrežja od zagona: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10266,18 +10305,18 @@ msgstr "" "Strežnik MySQL deluje kot glavni strežnik in podrejenec v " "postopku podvojevanja." -#: server_status.php:1078 +#: server_status.php:1077 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:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" "Strežnik MySQL deluje kot podrejenec v postopku podvojevanja." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10285,11 +10324,11 @@ msgstr "" "Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite " "razdelek o podvojevanju." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Stanje podvojevanja" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10297,35 +10336,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Prejeto" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Poslano" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "največ sočasnih povezav" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Neuspeli poizkusi" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Prekinjeno" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Ukaz" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10333,11 +10372,11 @@ msgstr "" "Število prekinjenih povezav zaradi izgube odjemalca, ki ni primerno prekinil " "povezave." -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Število spodletelih poskusov povezave s strežnikom MySQL." -#: server_status.php:1322 +#: server_status.php:1321 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 " @@ -10347,18 +10386,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:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 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:1325 +#: server_status.php:1324 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 " @@ -10370,11 +10409,11 @@ msgstr "" "povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile " "na pomnilniku namesto na disku." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Koliko začasnih datotek je ustvaril mysqld." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10382,7 +10421,7 @@ msgstr "" "Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril " "med izvajanjem stavkov." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10390,7 +10429,7 @@ msgstr "" "Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke " "napake (najverjetneje podvojen ključ)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10398,23 +10437,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Število zapisanih vrstic INSERT DELAYED." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Število izvedenih izjav FLUSH." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Število notranjih izjav COMMIT." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Število izbrisov vrstice iz tabele." -#: server_status.php:1334 +#: 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 " @@ -10424,7 +10463,7 @@ msgstr "" "navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat " "so bile tabele odkrite." -#: server_status.php:1335 +#: 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, " @@ -10434,7 +10473,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:1336 +#: server_status.php:1335 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." @@ -10443,7 +10482,7 @@ msgstr "" "visoka, je to dober znak, da so vaše poizvedbe in tabele primerno " "indeksirane." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10453,7 +10492,7 @@ msgstr "" "povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če " "pregledujete indeks." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10461,7 +10500,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:1339 +#: 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 " @@ -10473,7 +10512,7 @@ msgstr "" "Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih " "tabel, ali stike, ki ne uporabljajo ključev pravilno." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10485,36 +10524,36 @@ msgstr "" "tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo " "prednosti indeksov, ki jih imate." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Število notranjih izjav ROLLBACK." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Število zahtev za posodobitev vrstice v tabeli." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Število zahtev za vstavitev vrstice v tabelo." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Število trenutno umazanih strani." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Število prostih strani." -#: server_status.php:1348 +#: 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 " @@ -10524,7 +10563,7 @@ msgstr "" "trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga " "ne morejo biti izplaknjene ali odstranjene." -#: server_status.php:1349 +#: server_status.php:1348 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,11 +10575,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:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Skupna velikost zaloge medpomnilnika, v straneh." -#: server_status.php:1351 +#: 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." @@ -10548,7 +10587,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:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10556,11 +10595,11 @@ msgstr "" "Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB " "izvaja zaporedno pregledovanje celotne tabele." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB." -#: server_status.php:1354 +#: 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." @@ -10568,7 +10607,7 @@ msgstr "" "Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge " "medpomnilnika in je moral izvesti enostransko branje." -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10582,52 +10621,52 @@ msgstr "" "čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, bi " "morala biti vrednost majhna." -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Število dozdajšnjih posegov fsync()." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Trenutno število čakajočih posegov fsync()." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Trenutno število čakajočih branj." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Trenutno število čakajočih pisanj." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Količina do zdaj prebranih podatkov, v bajtih." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Skupno število branj podatkov." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Skupno število zapisovanj podatkov." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Količina do zdaj zapisanih podatkov, v bajtih." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni." -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -10635,35 +10674,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Število zahtev pisanja v dnevnik." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Število fizičnih pisanj v dnevniško datoteko." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Število pisanj fsync() storjenih v dnevniško datoteko." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Število čakajoče dnevniške datoteke fsyncs." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Čakajoča pisanja v dnevniško datoteko." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Število bajtov zapisanih v dnevniško datoteko." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Število ustvarjenih strani." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10671,51 +10710,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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Število prebranih strani." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Število zapisanih strani." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Število zaklepov vrstic, na katere se trenutno čaka." -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah." -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah." -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah." -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "Število čakanj na zaklepe vrstic." -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Število vrstic izbrisanih iz tabel InnoDB." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Število vrstic vstavljenih v tabele InnoDB." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Število vrstic prebranih iz tabel InnoDB." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Število vrstic posodobljenih v tabelah InnoDB." -#: server_status.php:1387 +#: 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." @@ -10724,7 +10763,7 @@ msgstr "" "vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot " "Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -10732,7 +10771,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:1389 +#: server_status.php:1388 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 " @@ -10742,15 +10781,15 @@ msgstr "" "dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli " "naenkrat v uporabi." -#: server_status.php:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "Odstotek uporabljenega predpomnilnika ključev (izračunana vrednost)" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10760,7 +10799,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:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10768,22 +10807,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:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 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:1397 +#: server_status.php:1396 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 " @@ -10794,17 +10833,17 @@ msgstr "" "enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena " "poizvedba." -#: server_status.php:1398 +#: server_status.php:1397 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:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10812,19 +10851,19 @@ msgstr "" "Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel " "najverjetneje premajhen." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Število odprtih datotek." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Število odprtih tabel." -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10834,19 +10873,19 @@ msgstr "" "število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z " "izvedbo stavka FLUSH QUERY CACHE." -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Količina prostega spomina za predpomnilnik poizvedb." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Število zadetkov predpomnilnika." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Število poizvedb dodanih v predpomnilnik." -#: server_status.php:1408 +#: 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 " @@ -10859,7 +10898,7 @@ msgstr "" "uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere " "poizvedbe naj odstrani iz predpomnilnika." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10867,19 +10906,19 @@ msgstr "" "Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene " "zaradi nastavitve query_cache_type)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Število zabeleženih poizvedb v predpomnilniku." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Skupno število blokov v predpomnilniku poizvedb." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10887,11 +10926,11 @@ msgstr "" "Število stikov, ki ne uporabljajo indeksov. Če vrednost ni 0, skrbno " "preverite indekse vaših tabel." -#: server_status.php:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10899,7 +10938,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:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10907,16 +10946,16 @@ msgstr "" "Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni " "kritično, četudi je veliko.)" -#: server_status.php:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10924,11 +10963,11 @@ msgstr "" "Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti " "SQL podrejenca." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10936,12 +10975,12 @@ msgstr "" "Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time " "sekund." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -10951,23 +10990,23 @@ msgstr "" "Če je vrednost velika, razmislite o povečanju sistemske spremenljivke " "sort_buffer_size." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Število razvrščanj, ki so bila storjena z razponi." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Število razvrščenih vrstic." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "Koliko krat je bil zaklep tabele pridobljen takoj." -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10979,7 +11018,7 @@ msgstr "" "optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele " "ali uporabite podvojevanje." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -10989,11 +11028,11 @@ msgstr "" "izračuna kot Threads_created/Connections. Če je vrednost obarvana rdeče, " "povečajte svoj thread_cache_size." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Število trenutno odprtih povezav." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11004,47 +11043,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:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "Delež zadetkov predpomnilnika niti (izračunana vrednost)" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Število niti, ki ne spijo." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Začni nadziranje" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Navodila/Namestitev" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Preurejanje/urejanje grafikonov je končano" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Dodaj grafikon" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Preuredi/uredi grafikone" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Hitrost osveževanja" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Stolpci grafikona" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Razvrstitev grafikonov" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -11052,15 +11091,15 @@ msgstr "" "Razvrstitev grafikonov je shranjena v lokalni shrambi brskalnika. Če imate " "zapleteno nastavitev, jo boste morda želeli izvoziti." -#: server_status.php:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Povrni na privzeto" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Navodila nadziranja" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11074,7 +11113,7 @@ msgstr "" "general_log. Vendar pomnite, da general_log ustvari ogromno podatkov in " "poveča obremenitev strežnika do 15 %" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11086,11 +11125,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:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Uporaba monitorja:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11101,7 +11140,7 @@ msgstr "" "pa odstranite kateri koli grafikon s klikom na ikono zobnika ob ustreznem " "grafikonu." -#: server_status.php:1655 +#: server_status.php:1654 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 " @@ -11113,11 +11152,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:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Prosimo, pomnite:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11130,79 +11169,79 @@ msgstr "" "časovni razpon ter onemogočite general_log in počistite njene tabele, ko " "nadziranja ne potrebujete več." -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Prednastavljeni grafikon" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Spremenljivke stanja" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Izberite serije:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Pogosto nadzirano" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "ali vnesite ime spremenljivke:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Prikaži kot vrednost razlike" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Uporabi delitelja" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Pripni enoto k vrednostim podatkov" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Dodaj serijo" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Počisti serije" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Serije v grafikonu:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Statistika dnevnikov" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Izbrano časovno območje:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Pridobi samo stavke SELECT, INSERT, UPDATE in DELETE" -#: server_status.php:1747 +#: server_status.php:1746 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:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "Izberite dnevnike, iz katerih želite ustvariti statistiko." -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Rezultati so združeni po besedilu poizvedbe." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Analitik poizvedb" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" @@ -11211,7 +11250,7 @@ msgstr[1] "%d sekundi" msgstr[2] "%d sekunde" msgstr[3] "%d sekund" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" @@ -11220,111 +11259,111 @@ msgstr[1] "%d minuti" msgstr[2] "%d minute" msgstr[3] "%d minut" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Ne morem se povezati z virom" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Ne morem se povezati s ciljem" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "Zbirka podatkov '%s' ne obstaja." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Sinhronizacija strukture" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Sinhronizacija podatkov" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "ni prisotno" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Razlika zgradbe" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Razlika podatkov" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Dodaj stolpec(-ce)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Odstrani stolpec(-ce)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Spremeni stolpec(-ce)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Odstrani indeks(e)" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Uveljavi indeks(e)" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Posodobi vrstico(-e)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Vstavi vrstico(-e)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Ali želite izbrisati vse prejšnje vrstice iz ciljnih tabel?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Uporabi izbrane spremembe" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Sinhroniziraj zbirke podatkov" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Izbrane ciljne tabele so bile sinhronizirane z izvornimi tabelami." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" "Ciljna zbirka podatkov je bila sinhronizirana z izvorno zbirko podatkov" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Izvedene poizvedbe" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Vnesite ročno" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Trenutna povezava" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Konfiguracija: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Vtičnica" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11332,19 +11371,19 @@ msgstr "" "Ciljna zbirka podatkov bo popolnoma sinhronizirana z izvorno zbirko " "podatkov. Izvorna zbirka podatkov bo ostala nespremenjena." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Nastavljanje spremenljivke je spodletelo" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Spremenljivke in nastavitve strežnika" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Vrednost seje" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Skupna vrednost" @@ -11678,153 +11717,153 @@ msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake." msgid "Wrong data" msgstr "Napačni podatki" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Uporaba zaznamka \"%s\" kot privzeto poizvedbo med brskanjem." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Ali res želite izvesti naslednjo poizvedbo?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Prikazovanje kot koda PHP" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Preverjen SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Rezultat SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Ustvaril" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Težave z indeksi tabele `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Oznaka" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s je bila uspešno spremenjena" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "Stolpce sem uspešno premaknil." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Vrstica" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Stolpec" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Črta" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Zlepek" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Torta" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Zloženi" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Naslov grafikona" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "Os x:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Serije:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "Oznaka osi x:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "Vrednosti x" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Oznaka osi y:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Vrednosti y" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s že obstaja!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Tabela %1$s je ustvarjena." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Preglej povzetek stanja tabele" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Prikaži predstavitev GIS" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Širina" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Višina" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Stolpec oznak" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Noben --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Prostorski stolpec" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Ponovno nariši" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Shrani kot datoteko" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Ime datoteke" @@ -11840,28 +11879,28 @@ msgstr "Indeksa ni mogoče preimenovati v PRIMARY!" msgid "No index parts defined!" msgstr "Ni definiranega dela indeksa!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Dodaj indeks" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Uredi indeks" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Ime indeksa:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" mora biti ime samo primarnega ključa!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Vrsta indeksa:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj indeksu  %s stolpec(ce)" @@ -11884,253 +11923,253 @@ msgstr "Tabela %s je bila premaknjena v %s." msgid "Table %s has been copied to %s." msgstr "Tabela %s je skopirana v %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Ime tabele je prazno!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Spremeni vrstni red prikaza tabele za" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(posamezno)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Premakni tabelo v (podatkovna_zbirka.tabela):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Možnosti tabele" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Preimenuj tabelo v" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopiraj tabelo v (podatkovna_zbirka.tabela):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Preklopi na kopirano tabelo" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Vzdrževanje tabele" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmentiraj tabelo" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s je osvežena" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Počisti tabelo (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Izbriši podatke ali tabelo" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Izprazni tabelo (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Izbriši tabelo (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Vzdrževanje particij" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Particija %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analiziraj" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Označi" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimiraj" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Ponovno sestavi" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Popravi" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Odstrani particioniranje" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Preveri referenčno integriteto:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Prikazovanje tabel" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Poraba prostora" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Učinkovito" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Statistika vrstic" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "statično" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamično" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Dolžina vrstice" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Velikost vrstice" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Naslednji samodejni indeks" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "Napaka pri ustvarjanju tujega ključa na %1$s (preverite podatkovne vrste)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Notranja relacija" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "Notranja relacija ni nujna, ko obstaja ustrezna relacija FOREIGN KEY." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Omejitev tujih ključev" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Prostorsko" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Različne vrednosti" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Dodaj primarni ključ" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Dodaj izvirno vrednost" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Dodaj indeks SPATIAL" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Dodaj indeks FULLTEXT" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Brez" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Stolpec %s je zavržen" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Na %s je dodan primarni ključ" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Na %s je dodan indeks" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Prikaži več dejanj" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "Premakni stolpce" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "Prestavite stolpce z vlečenjem gor ali dol." -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Urejevalni pogled" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Pogled relacij" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Predlagaj strukturo tabele" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Dodaj stolpec" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Na koncu tabele" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Na začetku tabele" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Po %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Ustvari indeks na  %s stolpcih" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "po particijah" @@ -12282,66 +12321,37 @@ msgstr "Sledi tem stavkom upravljanja s podatki:" msgid "Create version" msgstr "Ustvari različico" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Izvedi \"query by example\" (nadomestni znak: \"%\") za dva različna stolpca" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Dodatni iskalni pogoji" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Uporabite ta stolpec za označevanje vsake točke" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Največje število vrstic za izris" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Prebrskaj/Uredi točke" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Kako uporabljati" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "Ponastavi povečavo" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Dobi več preoblek!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Razpoložljive vrste MIME" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "Vrste MIME, ki so napisane ležeče, nimajo lastne pretvorbene funkcije" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Razpoložljive pretvorbe" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nimate dovolj pravic, da bi bili sedaj tukaj!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profil je posodobljen." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Ime VIEW" diff --git a/po/sq.po b/po/sq.po index 2673200b46..35fadff587 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: albanian \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Shfaqi të gjithë" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Numri i faqes:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "keni mbyllur dritaren prind ose rregullimet mbrojtëse të shfletuesit tuaj të " "ndalojnë përditësimet nëpërmjet dritareve." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Zbato" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Emri i kyçit" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Përshkrimi" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Përdor këtë vlerë" @@ -105,90 +105,91 @@ msgstr "" msgid "Database %1$s has been created." msgstr "U krijua baza e të dhënave %1$s." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Komenti për databazën: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Komentet e tabelës" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Emrat e kollonave" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Prezgjedhur" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Lidhje me" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Komente" @@ -197,14 +198,14 @@ msgstr "Komente" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Jo" @@ -217,125 +218,125 @@ msgstr "Jo" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Po" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Shfaq dump (skema) e databazës" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Nuk gjenden tabela në databazë." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Zgjidh gjithçka" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Asnjë zgjedhje" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Mungon emri i databazës!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Databazës %s i është ndryshuar emri në %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Databaza %s është kopjuar tek %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:470 +#: db_operations.php:476 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Ndysho emrin e databazës në" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Databaza %s u eleminua." -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy msgid "Drop the database (DROP)" msgstr "Asnjë databazë" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Kopjo databazën në" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Vetëm struktura" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktura dhe të dhënat" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Vetëm të dhënat" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE para se të kopjohet" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Shto %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Shto vlerë AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Shto kushte" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Kalo tek databaza e kopjuar" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Collation" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -347,61 +348,61 @@ msgstr "" "Karakteristikat shtesë janë çaktivizuar për sa i takon funksionimit me " "tabelat e lidhura. Për të kuptuar përse, klikoni %skëtu%s." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Skema relacionale" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "rreshta" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Madhësia" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "në përdorim" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Krijimi" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Ndryshimi i fundit" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Kontrolli i fundit" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -413,122 +414,122 @@ msgstr[1] "%s tabela(at)" msgid "You have to choose at least one column to display" msgstr "Zgjidh të paktën një kollonë për të shfaqur" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Kalo tek tabela e kopjuar" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Renditja" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Në ngjitje" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Në zbritje" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Shfaq" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriteri" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Shto" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Dhe" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Fshi" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ose" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Ndrysho" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Shto/Fshi rreshtin e kriterit" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Shto/Fshi kollonat e fushës" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Përditëso kërkesën" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Përdor tabelat" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "Kërkesë SQL tek databaza %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Dërgo Query" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Ndalohet hyrja" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "të paktën një prej fjalëve" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "të gjitha fjalët" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "frazën e saktë" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "si shprehje e rregullt" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultatet e kërkimit për \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -536,31 +537,31 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -568,266 +569,267 @@ msgid_plural "Total: %s matches" msgstr[0] "Gjithsej: %s korrispondues(ë)" msgstr[1] "Gjithsej: %s korrispondues(ë)" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Kërko në databazë" -#: db_search.php:292 +#: db_search.php:295 #, 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:297 +#: db_search.php:300 msgid "Find:" msgstr "Gjej:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Fjalët veçohen me anë të një hapësirë bosh (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Tek tabela(at):" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" msgstr "Tek fusha:" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Nuk gjenden tabela në databazë." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "e panjohur" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s u zbraz" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Paraqitja %s u eleminua" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s u eleminua" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Gjurmimi është aktiv." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Gjurmimi nuk është aktiv." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Paraqitje" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikimi" -#: db_structure.php:624 +#: db_structure.php:622 #, fuzzy msgid "Sum" msgstr "Sum" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "N.q.s. të zgjedhur:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Zgjidh gjithçka" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporto" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Shfaq për printim" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Zbraz" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Elemino" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Kontrollo tabelën" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimizo tabelën" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Riparo tabelën" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analizo tabelën" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 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:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 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:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 #, fuzzy msgid "Data Dictionary" msgstr "Data Dictionary" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Databazat" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 #, fuzzy msgid "Created" msgstr "Krijo" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Gjendja" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Veprimi" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 #, fuzzy msgid "Versions" msgstr "Operacione" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 #, fuzzy msgid "Structure snapshot" msgstr "Vetëm struktura" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "Kontrollo tabelën" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "Databazat" @@ -841,18 +843,18 @@ msgstr "Lloji i query" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Rename database to" msgid "Bad parameters!" msgstr "Ndysho emrin e databazës në" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Hapësirë e pamjaftueshme për të ruajtur file %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -860,12 +862,12 @@ msgstr "" "File %s ekziston në server: të lutem, ndrysho emrin e file ose zgjidh " "opcionin \"Mbishkruaj\"." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Serveri web nuk ka të drejtat e duhura për të ruajtur file %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump u ruajt tek file %s." @@ -875,183 +877,183 @@ msgstr "Dump u ruajt tek file %s." msgid "Invalid export type" msgstr "Lloji i Eksportit" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy msgid "Add a point" msgstr "Shto një fushë të re" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Rreshta që mbarojnë me" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Shto një përdorues të ri" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Shto një përdorues të ri" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy msgid "Add a polygon" msgstr "Shto një fushë të re" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy msgid "Add geometry" msgstr "Shto një përdorues të ri" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Libërshënuesi u fshi." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "File nuk mund të lexohet" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Mbrapa" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin funksionon më mirë me shfletues që suportojnë frames" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Komandat \"DROP DATABASE\" nuk janë aktive." @@ -1061,7 +1063,7 @@ msgstr "Komandat \"DROP DATABASE\" nuk janë aktive." msgid "Do you really want to execute \"%s\"?" msgstr "Konfermo: " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Jeni duke SHKATËRRUAR një databazë komplete!" @@ -1111,7 +1113,7 @@ msgstr "Treguesi" msgid "Edit Index" msgstr "Treguesi" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format msgid "Add %d column(s) to index" msgstr "Shto një fushë të re" @@ -1131,16 +1133,16 @@ msgstr "Emri i host është bosh!" msgid "The user name is empty!" msgstr "Emri i përdoruesit është bosh!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Fjalëkalimi është bosh!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Fjalëkalimi nuk korrispondon!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1163,25 +1165,26 @@ msgstr "Heq përdoruesit e zgjedhur" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Ndrysho" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Zgjedhja e serverit" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "query SQL" @@ -1192,24 +1195,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Gjithsej" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1231,7 +1234,7 @@ msgstr "Zgjedhja e serverit" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Proceset" @@ -1251,7 +1254,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "Statistikat e rreshtave" @@ -1296,14 +1299,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1361,32 +1364,32 @@ msgstr "" msgid "Bytes received" msgstr "Marrë" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Lidhje" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1402,11 +1405,11 @@ msgstr "%s tabela(at)" msgid "Questions" msgstr "Operacione" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Trafiku" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1430,11 +1433,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Asnjë lloj" @@ -1534,7 +1537,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:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1620,7 +1623,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Koha" @@ -1727,10 +1730,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" msgstr "Eksporto" @@ -1785,9 +1788,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1802,11 +1805,11 @@ msgstr "Lokal" msgid "Processing Request" msgstr "Proceset" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Nuk është zgjedhur asnjë databazë." @@ -1818,9 +1821,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1876,19 +1879,19 @@ msgstr "Tregues" msgid "Show indexes" msgstr "Shfaq rrjetën" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Ç'aktivo kontrollin e kyçeve të jashtëm" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Aktiv" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1926,7 +1929,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1968,8 +1971,8 @@ msgstr "query SQL" msgid "No rows selected" msgstr "Nuk ka rreshta të zgjedhur" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Ndrysho" @@ -1977,18 +1980,18 @@ msgstr "Ndrysho" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Ruaj" @@ -2002,7 +2005,7 @@ msgstr "query SQL" msgid "Show search criteria" msgstr "query SQL" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2054,12 +2057,12 @@ msgstr "Rezultati SQL" msgid "Data point content" msgstr "Tabela e përmbajtjes" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Shpërfill" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2080,7 +2083,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2174,7 +2177,7 @@ msgstr "Gjeneruar nga" msgid "Change Password" msgstr "Ndrysho fjalëkalimin" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2288,27 +2291,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2316,37 +2319,37 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Qer" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Gsh" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dhj" @@ -2395,32 +2398,32 @@ msgid "Sun" msgstr "Djl" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sht" @@ -2553,16 +2556,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "në sekondë" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "në minutë" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "në orë" @@ -2583,70 +2586,298 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Shto/Fshi kollonat e fushës" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Fillim" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Paraardhësi" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Në vazhdim" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Fund" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Sht" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows per page" +msgid "Number of rows" +msgstr "regjistrime për faqe" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Hën" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontal" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontal (headers të rrotulluar)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertikal" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Zbaton query nga libërshënuesi" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Rendit sipas kyçit" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "Operacione" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Tekst i pjesëshëm" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Teksti i plotë" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "Skema relacionale" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Skema relacionale" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Transformimi i Shfletuesit" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "rreshti u fshi" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Hiq" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "tek query" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Shfaqja e regjistrimeve" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "Gjithsej" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Query ka zgjatur %01.4f sec" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Shfaq për printim (me full text)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Shfaq skemën PDF" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Versioni i MySQL" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Lidhja nuk u gjet" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Tregues" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "I vetëm" @@ -2659,8 +2890,8 @@ msgstr "" msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2682,131 +2913,131 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Databazat" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Serveri" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Shto" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacione" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Query nga shembull" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Të drejtat" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Përdorues" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "Binar" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Të ndryshueshmet" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Familje gërmash" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Gabim" @@ -2833,7 +3064,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Nuk ka rreshta të zgjedhur" msgstr[1] "Nuk ka rreshta të zgjedhur" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2924,16 +3155,107 @@ 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 +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 +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 +msgid "Value" +msgstr "Vlerë" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Kërko" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Shto" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Zgjidh fushat (të paktën një):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Shto kushte kërkimi (trupi i specifikimit \"where\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "regjistrime për faqe" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Mënyra e shfaqjes:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Shfleto opcionet e huaja" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "query SQL" + +#: 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 "Zbato \"query nga shembull\" (karakteri jolly: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Zbato \"query nga shembull\" (karakteri jolly: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Rinis" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "merre" @@ -2952,7 +3274,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3248,20 +3570,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "E pamundur lidhja: rregullime të pavlefshme." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Mirësevini tek %s" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3277,60 +3599,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Hyrja" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Serveri" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Emri i përdoruesit:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Fjalëkalimi:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Zgjedhja e serverit" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "E pamundur kryerja e login tek server-i MySQL" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Emër përdoruesi apo fjalëkalim i gabuar. Ndalohet hyrja." @@ -3362,7 +3678,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabela" @@ -3374,13 +3690,13 @@ msgstr "Tabela" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Të dhëna" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Mbi limit" @@ -3408,30 +3724,22 @@ msgstr "Kontrollo të drejtat për databazën "%s"." msgid "Check Privileges" msgstr "Kontrollo të drejtat" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3443,213 +3751,191 @@ msgstr "" "Direktiva $cfg['PmaAbsoluteUri'] DUHET të përcaktohet tek file " "i konfigurimit!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Duhet të instaloni %s %s ose superior." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Madhësia maksimum: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentet" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "query SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "Mesazh nga MySQL: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Shpjego SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Mos shpjego SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "pa kod PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Krijo kodin PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Rifresko" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Mos vleftëso SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Vleftëso SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Djl" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y at %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ditë, %s orë, %s minuta dhe %s sekonda" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Fillim" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Paraardhësi" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Në vazhdim" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Fund" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Kalo tek databaza "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "directory e upload të server-it web" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Printo" @@ -3681,8 +3967,8 @@ msgid "Closed" msgstr "Thonjëza të pambyllura" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Jo aktiv" @@ -3834,9 +4120,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Rinis" @@ -4047,10 +4333,6 @@ msgstr "Propozo strukturën e tabelës" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4107,7 +4389,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Ruaje me emër..." @@ -4117,7 +4399,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Formati" @@ -4236,7 +4518,7 @@ msgid "MIME type" msgstr "Lloji MIME" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relacione" @@ -5766,9 +6048,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Fjalëkalimi" @@ -6042,30 +6324,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Ndrysho fjalëkalimin" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Asnjë fjalëkalim" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Rifut" @@ -6088,13 +6364,13 @@ msgstr "Krijo një databazë të re" msgid "Create" msgstr "Krijo" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Asnjë e drejtë" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "Krijo një faqe të re" @@ -6102,9 +6378,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Emri" @@ -6290,25 +6566,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Versioni i MySQL" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Versioni i MySQL" @@ -6419,408 +6695,241 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Shto/Fshi kollonat e fushës" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Sht" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of rows" -msgstr "regjistrime për faqe" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Hën" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontal" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontal (headers të rrotulluar)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertikal" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Zbaton query nga libërshënuesi" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Rendit sipas kyçit" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "Operacione" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Tekst i pjesëshëm" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Teksti i plotë" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "Skema relacionale" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Skema relacionale" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Transformimi i Shfletuesit" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "rreshti u fshi" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Hiq" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "tek query" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Shfaqja e regjistrimeve" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "Gjithsej" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Query ka zgjatur %01.4f sec" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Shfaq për printim (me full text)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Shfaq skemën PDF" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Versioni i MySQL" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Lidhja nuk u gjet" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 #, fuzzy msgid "Version information" msgstr "Informacione mbi Identifikimin" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 #, fuzzy msgid "Data files" msgstr "Vetëm të dhëna" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Gjëndja InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 #, fuzzy msgid "Pages to be flushed" msgstr "Tabela %s u rifreskua" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6828,48 +6937,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6877,20 +6986,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Relacione" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6950,15 +7059,15 @@ msgstr "Dump i të dhënave për tabelën" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Dërguar" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7029,14 +7138,14 @@ msgstr "Lloje MIME në dispozicion" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Host" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Gjeneruar më" @@ -7238,21 +7347,12 @@ msgstr "Paraqitje" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7347,12 +7447,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Emrat e kollonave" @@ -7417,95 +7517,77 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funksioni" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binar" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Të dhëna të tipit binar - mos ndrysho" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "directory e upload të server-it web" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Shto" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Shto një rresht të ri" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Mbrapa" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Shto një regjistrim të ri" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Kthehu mbrapa tek kjo faqe" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Vlerë" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7522,36 +7604,36 @@ msgstr "Asnjë lloj" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Pre" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Dërgoje" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Konfermo: " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Asnjë ndryshim" @@ -7764,93 +7846,93 @@ msgstr "" msgid "This format has no options" msgstr "Ky format nuk ka opcione" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "jo OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Aktiv" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Karakteristikat e përgjithshme të relacionit" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Shfaq karakteristikat" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Krijimi i PDF-ve" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Vizualizimi i komenteve të kollonave" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Transformimi i Shfletuesit" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Ju lutem lexoni dokumentet mbi rifreskimin e tabelës suaj Column_comments" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Query SQL shtuar të preferuarve" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "Kronollogjia e SQL" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "asnjë përshkrim" @@ -7858,7 +7940,7 @@ msgstr "asnjë përshkrim" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7870,13 +7952,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Emri i përdoruesit" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "rreshtimi" @@ -7890,7 +7972,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "E ndryshueshme" @@ -7905,38 +7987,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Përdor fushë teksti" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Çfarëdo host" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Këtë Host" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Përdor Tabelën e Host-it" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7950,7 +8032,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7982,101 +8064,102 @@ msgstr "Tabela %s u eleminua" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Dërguar" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proceset" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy msgid "Event name" msgstr "Lloji i Eksportit" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 #, fuzzy msgid "Event type" msgstr "Lloji i Eksportit" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Ndrysho" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Zbaton query nga libërshënuesi" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Gjendja" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Fund" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Të shtuarat komplet" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8107,7 +8190,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -8127,117 +8210,117 @@ msgstr "Tabela %s u eleminua" msgid "Routine %1$s has been created." msgstr "Tabela %s u eleminua" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Emrat e kollonave" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Krijimi" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Gjatësia/Set*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Ndysho emrin e databazës në" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Gjatësia/Set*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcione për tabelën" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Lloji i query" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8256,41 +8339,41 @@ msgstr "Tabela %s u eleminua" msgid "Trigger %1$s has been created." msgstr "Tabela %s u eleminua" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Shto një përdorues të ri" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "Emri i përdoruesit" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Koha" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8390,7 +8473,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8400,7 +8483,7 @@ msgstr "Tabela \"%s\" nuk ekziston!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8408,7 +8491,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Ju lutem, konfiguroni koordinatat për tabelën %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8420,27 +8503,27 @@ msgstr "Skema e databazës \"%s\" - Faqja %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Skema relacionale" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Tabela e përmbajtjes" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Pronësi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8560,7 +8643,7 @@ msgstr "" msgid "Current Server" msgstr "Serveri" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Kërko në databazë" @@ -8579,7 +8662,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Kërko në databazë" @@ -8599,7 +8682,7 @@ msgstr "Zbato query SQL tek databaza %s" msgid "Run SQL query/queries on database %s" msgstr "Zbato query SQL tek databaza %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" @@ -8611,11 +8694,11 @@ msgstr "Kalendari" msgid "Columns" msgstr "Emrat e kollonave" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 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" @@ -8713,7 +8796,7 @@ msgstr "" "Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e " "prapashtesave të duhura php ashtu si përshkruhet tek %sdokumentimi%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8746,8 +8829,8 @@ msgstr "" "escaping apo thonjëza, duke përdorur këtë format: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Treguesi" @@ -8801,13 +8884,13 @@ msgstr "Asnjë lloj" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primar" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Teksti komplet" @@ -8821,19 +8904,19 @@ msgstr "" msgid "after %s" msgstr "Mbas %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "Shto një fushë të re" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Zgjidh të paktën një kollonë për të shfaqur" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8841,45 +8924,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Kërko" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Zgjidh fushat (të paktën një):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Shto kushte kërkimi (trupi i specifikimit \"where\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "regjistrime për faqe" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Mënyra e shfaqjes:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Shfleto opcionet e huaja" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Zbato \"query nga shembull\" (karakteri jolly: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9051,13 +9095,13 @@ msgstr "" msgid "Manage your settings" msgstr "Karakteristikat e përgjithshme të relacionit" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Ndryshimet u ruajtën" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9068,7 +9112,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9099,7 +9143,7 @@ msgstr "Vendosja e lidhjes MySQL" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9125,9 +9169,9 @@ msgstr "Versioni i MySQL" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Përdorues" @@ -9253,146 +9297,146 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Asnjë databazë" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Transformo tabelën e renditur sipas" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Transformo tabelën e renditur sipas" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Krijo një faqe të re" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Të lutem, zgjidh një databazë" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Traditional Chinese" msgid "Toggle relation lines" msgstr "Kineze tradicionale" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Dërgo Query" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "Shfaqi të gjithë" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "Shiko relacionet" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Eksporto" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "tek query" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Riemërto tabelën në" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Emri i përdoruesit" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Krijo" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9407,62 +9451,62 @@ msgstr "Tabela %s u eleminua" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Përdorimi" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importo files" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Nuk ka rreshta të zgjedhur" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Krijo një tregues të ri" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Emri i përdoruesit" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 #, fuzzy msgid "Internal relation added" msgstr "Relacione të brendshme" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 #, fuzzy msgid "Relation deleted" msgstr "Shiko relacionet" @@ -9475,89 +9519,89 @@ msgstr "" msgid "Modifications have been saved" msgstr "Ndryshimet u ruajtën" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Importo files" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importo files" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Të gjithë" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela nuk u gjet ose nuk është përcaktuar tek %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9567,18 +9611,18 @@ msgstr "Tabela \"%s\" nuk ekziston!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "Fusha" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Shkurton (ndërpret) Queries e Shfaqura" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Shfaq të gjitha kërkesat" @@ -9594,7 +9638,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 #, fuzzy msgid "Information" msgstr "Informacione mbi Identifikimin" @@ -9603,7 +9647,7 @@ msgstr "Informacione mbi Identifikimin" msgid "Character Sets and Collations" msgstr "Familje gërmash dhe Collations" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9611,24 +9655,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s databaza u eleminuan korrektësisht." msgstr[1] "%s databaza u eleminuan korrektësisht." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statistikat e databazave" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Aktivo Statistikat" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9640,162 +9684,162 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Shfaq dump (skema) e databazave" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Fillim" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "Versioni i PHP" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Jo aktiv" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Përfshin të gjitha të drejtat me përjashtim të GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Lejon ndryshimin e strukturës së tabelave ekzistuese." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Lejon krijimin e tabelave të reja dhe databazave të reja." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 #, fuzzy msgid "Allows creating stored routines." msgstr "Lejon krijimin e tabelave të reja." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Lejon krijimin e tabelave të reja." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Lejon krijimin e tabelave të përkohëshme." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 #, fuzzy msgid "Allows creating new views." msgstr "Lejon krijimin e tabelave të reja." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Lejon fshirjen e të dhënave." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Lejon eleminimin e databazave dhe tabelave." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Lejon eleminimin e tabelave." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" "Lejon importimin e të dhënave nga dhe eksportimin e të dhënave në files." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Lejon të shtosh përdorues dhe të drejta pa ringarkuar tabelat e privilegjeve." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Lejon futjen dhe mbishkrimin e të dhënave." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Lejon bllokimin e tabelave për thread e momentit." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kufizon numrin e kërkesave që një përdorues mund ti dërgojë server-it në një " "orë." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9803,63 +9847,63 @@ msgstr "" "Kufizon numrin e komandave që mund të ndryshojnë një tabelë apo databazë që " "një përdorues mund të zbatojë në një orë." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Nuk ka asnjë efekt tek ky version i MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Lejon ringarkimin e parametrave të server-it dhe risetimin e cache të " "servërve." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "I jep të drejtën një përdoruesi të pyesë se ku gjenden slaves / masters." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Nevoitet për replikimin e slaves." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Lejon leximin e të dhënave." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Mundëson hyrjen tek lista komplete e databazave." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Lejon përfundimin e serverit." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9869,174 +9913,174 @@ msgstr "" "nevojshëm për shumë operacione administrimi si përcaktimi i të " "ndryshueshmeve globale apo fshirja e threads të përdoruesve të tjerë." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Lejon krijimin dhe eleminimin e treguesve." -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Lejon ndryshimin e të dhënave." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Asnjë të drejtë." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Asnjë lloj" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Të drejta relative me tabelat" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Shënim: emrat e të drejtave të MySQL janë në Anglisht" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administrimi" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Të drejtat e përgjithshme" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Të drejta specifike të databazës" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Limitet e rezervave" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Shënim: Vendosja e këtyre opcioneve në 0 (zero) do të thotë asnjë limit." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Informacione mbi Identifikimin" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Mos ndrysho fjalëkalim" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Nuk u gjet asnjë përdorues." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Përdoruesi %s ekziston!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Ke shtuar një përdorues të ri." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Ke rifreskuar lejet për %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ke anulluar të drejtat për %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Fjalëkalimi për përdoruesin %s u ndryshua me sukses." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Në fshirje e sipër të %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Duke ringarkuar të drejtat" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Të drejtat u përditësuan me sukses." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Ndrysho të drejtat" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Hiq" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Eksporto" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Çfarëdo" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Të drejtat" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Të drejtat" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Paraqitja e përgjithshme e përdoruesve" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Heq përdoruesit e zgjedhur" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10049,142 +10093,142 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 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:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Të drejtat relative të kollonave" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Shto të drejta tek databaza në vazhdim" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Shto të drejta tek tabela në vazhdim" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Ndrysho Informacionet e Login / Kopjo përdoruesin" -#: server_privileges.php:2363 +#: server_privileges.php:2371 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:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... mbaj të vjetrin." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... elemino të vjetrin nga tabela e përdoruesve." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Kontrollo të drejtat për databazën "%s"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Përdoruesit që kanë hyrje tek "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "globale" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "specifik i databazës" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "Paraqitja %s u eleminua" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Të drejtat u përditësuan me sukses." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10193,123 +10237,123 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Të lutem, zgjidh një databazë" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Teksti komplet" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Vetëm struktura" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Vetëm struktura" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Thread %s u përfundua me sukses." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." @@ -10317,149 +10361,149 @@ msgstr "" "phpMyAdmin nuk është në gjendje të përfundojë thread %s. Ka mundësi të ketë " "përfunduar më parë." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 #, fuzzy msgid "Query cache" msgstr "Lloji i query" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 #, fuzzy msgid "Delayed inserts" msgstr "Përdor shtimet me vonesë" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 #, fuzzy msgid "Show open tables" msgstr "Shfaq tabelat" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Informacione mbi Runtime" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Rifresko" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Mos ndrysho fjalëkalim" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy msgid "Show only alert values" msgstr "Shfaq tabelat" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy msgid "Show unformatted values" msgstr "Shfaq tabelat" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacione" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Lloji i query" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "Funksioni" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10467,118 +10511,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Instruksione" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Marrë" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Dërguar" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Përpjekje të dështuara" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Dështoi" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Komanda" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10586,78 +10630,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10665,7 +10709,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10673,42 +10717,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10716,33 +10760,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10751,243 +10795,243 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy msgid "Percentage of used key cache (calculated value)" msgstr "Familja gërmave të file:" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10995,99 +11039,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11095,18 +11139,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11114,69 +11158,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Gjurmimi nuk është aktiv." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sht" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy msgid "Add chart" msgstr "Shto një fushë të re" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Rifresko" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Shto/Fshi kollonat e fushës" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11185,7 +11229,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11193,18 +11237,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11212,11 +11256,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11224,90 +11268,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Ndysho emrin e databazës në" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Zgjidh Tabelat" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Shto një përdorues të ri" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "query SQL" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Statistikat e rreshtave" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Zgjidh Tabelat" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Lloji i query" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11315,7 +11359,7 @@ msgid_plural "%d seconds" msgstr[0] "në sekondë" msgstr[1] "në sekondë" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11323,131 +11367,131 @@ msgid_plural "%d minutes" msgstr[0] "në përdorim" msgstr[1] "në përdorim" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "query SQL" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Lidhje" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Të ndryshueshmet dhe parametrat e Serverit" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Vlera seancës" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Vlerë Globale" @@ -11739,178 +11783,178 @@ msgstr "" msgid "Wrong data" msgstr "Asnjë databazë" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Konfermo: " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Vleftëso SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "Rezultati SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Gjeneruar nga" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Etiketë" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Emrat e kollonave" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Importo files" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "query SQL" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Vlerë" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Vlerë" -#: tbl_create.php:31 +#: tbl_create.php:30 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "Përdoruesi %s ekziston!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabela %s u eleminua" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Shfaq dump (skema) e tabelës" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Shto/Fshi kollonat e fushës" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Gjithsej" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Ruaje me emër..." -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -11928,32 +11972,32 @@ msgstr "I pamundur riemërtimi i treguesit në PRIMAR!" msgid "No index parts defined!" msgstr "Asnjë pjesë e treguesit është përcaktuar!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Print view" msgid "Edit index" msgstr "Shfaq për printim" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Emri i treguesit :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" duhet të jetë emri i, dhe vetëm i, një kyçi " "primar!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Lloji i treguesit :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Shto tek treguesi i  %s kolonës(ave)" @@ -11976,275 +12020,275 @@ msgstr "Tabela %s u lëviz tek %s." msgid "Table %s has been copied to %s." msgstr "Tabela %s u kopjua tek %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Emri i tabelës është bosh!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Transformo tabelën e renditur sipas" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(një nga një)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Sposto tabelën në (databaza.tabela):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Opcione për tabelën" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Riemërto tabelën në" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopjo tabelën tek (databaza.tabela):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Kalo tek tabela e kopjuar" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Administrimi i tabelës" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmento tabelën" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s u rifreskua" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Rifillo (\"FLUSH\") tabelën" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Dump i të dhënave për tabelën" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Asnjë databazë" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Administrimi i tabelës" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 #, fuzzy msgid "Check" msgstr "Çekisht" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "Riparo tabelën" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Kontrollo integritetin e informacioneve:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Shfaq tabelat" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Hapësira e përdorur" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efektiv" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Statistikat e rreshtave" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Gjatësia e rreshtit" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Madhësia e rreshtit" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relacione të brendshme" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy msgid "Distinct values" msgstr "Shfleto opcionet e huaja" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Asnjë lloj" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabela %s u eleminua" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Një kyç primar u shtua tek %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Një tregues u shtua tek %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Trego info mbi PHP" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy msgid "Move columns" msgstr "Shto një fushë të re" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Shfaq për printim" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Shiko relacionet" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Propozo strukturën e tabelës" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy msgid "Add column" msgstr "Shto një fushë të re" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Në fund të tabelës" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Në fillim të tabelës" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Mbas %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12402,74 +12446,41 @@ msgstr "" msgid "Create version" msgstr "Versioni i MySQL" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Zbato \"query nga shembull\" (karakteri jolly: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "query SQL" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Rinis" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Lloje MIME në dispozicion" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Llojet-MIME të printuar në italics kanë një funksion transformacioni të " "veçantë" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Transformacionet në dispozicion" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Përshkrimi" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nuk ke të drejta të mjaftueshme për të kryer këtë operacion!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profili u rifreskua." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/sr.po b/po/sr.po index c1dd01ae31..33921fa31e 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: serbian_cyrillic \n" @@ -15,21 +15,21 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Прикажи све" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Број странице:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Крени" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Име кључа" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Опис" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Користи ову вредност" @@ -106,88 +106,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "База %1$s је креирана." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Коментар базе: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Коментари табеле" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Колона" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Подразумевано" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Везе ка" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Коментари" @@ -196,14 +197,14 @@ msgstr "Коментари" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Не" @@ -216,122 +217,122 @@ msgstr "Не" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Да" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Прикажи садржај (схему) базе" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Табеле нису пронађене у бази." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Изабери све" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "ништа" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Име базе није задато!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "База %s је преименована у %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "База %s је прекопирана у %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Преименуј базу у" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Уклони базу" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "База %s је одбачена." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Одбаци базу (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Копирај базу у" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Само структура" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Структура и подаци" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Само подаци" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE пре копирања" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Додај %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Додај AUTO_INCREMENT вредност" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Додај ограничења" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Пребаци се на копирану базу" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Сортирање" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| "ditional features for working with linked tables have been ctivated. To d " @@ -343,59 +344,59 @@ msgstr "" "Додатне могућности за рад са повезаним табелама су искључене. Да бисте " "сазнали зашто, кликните %sовде%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Уреди или извези релациону схему" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Табела" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Редова" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Величина" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "се користи" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Направљено" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Последња измена" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Последња провера" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -408,122 +409,122 @@ msgstr[2] "%s табела" msgid "You have to choose at least one column to display" msgstr "Морате изабрати бар једну колону за приказ" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Пређи на копирану табелу" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Сортирање" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Растући" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Опадајући" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Прикажи" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Критеријум" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "и" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "или" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Промени" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Додај/обриши поље за критеријум" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Додај/обриши колону" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Ажурирај упит" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Користи табеле" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL упит на бази %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Изврши SQL упит" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Приступ одбијен" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "бар једну од речи" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "све речи" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "тачан израз" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "као регуларни израз" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Резултати претраге за \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -532,31 +533,31 @@ msgstr[0] "%s погодака унутар табеле %s" msgstr[1] "%s погодака унутар табеле %s" msgstr[2] "%s погодака унутар табеле %s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, fuzzy, php-format #| msgid "Dumping data for table" msgid "Delete the matches for the %s table?" msgstr "Приказ података табеле" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -565,268 +566,269 @@ msgstr[0] "Укупно: %s погодака" msgstr[1] "Укупно: %s погодака" msgstr[2] "Укупно: %s погодака" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Претраживање базе" -#: db_search.php:292 +#: db_search.php:295 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Речи или вредности које се траже (џокер: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Тражи:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Речи се одвајају размаком (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Унутар табела:" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" msgstr "Унутар табела:" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Табеле нису пронађене у бази." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "непознат" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Табела %s је испражњена" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Поглед %s је одбачен" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Табела %s је одбачена" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Репликација" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Укупно" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s је подразумевани погон складиштења на овом MySQL серверу." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Означено:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Означи све" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "За штампу" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Испразни" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Одбаци" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Провери табелу" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Оптимизуј табелу" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Поправи табелу" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Анализирај табелу" -#: db_structure.php:719 +#: db_structure.php:717 #, fuzzy msgid "Add prefix to table" msgstr "База не постоји" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Замени податке у табели са подацима из датотеке" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замени податке у табели са подацима из датотеке" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Речник података" -#: db_tracking.php:74 +#: db_tracking.php:75 #, fuzzy msgid "Tracked tables" msgstr "Провери табелу" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "База података" -#: db_tracking.php:81 +#: db_tracking.php:82 #, fuzzy msgid "Last version" msgstr "Направи релацију" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 #, fuzzy msgid "Created" msgstr "Направи" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Статус" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Акција" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 #, fuzzy msgid "Versions" msgstr "Персијски" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 #, fuzzy msgid "Structure snapshot" msgstr "Само структура" -#: db_tracking.php:183 +#: db_tracking.php:184 #, fuzzy msgid "Untracked tables" msgstr "Провери табелу" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "Провери табелу" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "База података" @@ -841,18 +843,18 @@ msgstr "Врста упита" msgid "Selected export type has to be saved in file!" msgstr "Одабрани тип извоза мора бити сачуван у датотеку!" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Add new field" msgid "Bad parameters!" msgstr "Додај ново поље" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Недовољно простора за снимање датотеке %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -860,12 +862,12 @@ msgstr "" "Датотека %s већ постоји на серверу, промените име датотеке или укључите " "опцију преписивања." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Веб серверу није дозвољено да сачува датотеку %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Садржај базе је сачуван у датотеку %s." @@ -875,103 +877,103 @@ msgstr "Садржај базе је сачуван у датотеку %s." msgid "Invalid export type" msgstr "Тип извоза" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add new field" msgid "Add a point" msgstr "Додај ново поље" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Линије се завршавају са" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Додај новог корисника" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Додај новог корисника" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Додај %s поља" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy msgid "Add geometry" msgstr "Додај новог корисника" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -980,21 +982,21 @@ msgstr "" "Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте " "%sдокументацију%s за начине превазилажења овог ограничења." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Приказивање маркера" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Обележивач је управо обрисан." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Датотеку није могуће прочитати" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -1003,7 +1005,7 @@ msgstr "" "Покушали сте да увезете датотеку са компресијом која није подржана (%s). Или " "подршка за њу није имплементирана, или је искључена у вашој конфигурацији." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -1013,26 +1015,26 @@ msgstr "" "или величина датотеке превазилази максималну величину дозвољену у вашој " "конфигурацији PHP-а. Погледајте. See FAQ 1.16." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Не могу да учитам додатке за увоз, молим проверите своју инсталацију!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Направљен маркер %s" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Увоз је успешно завршен, извршено је %d упита." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1040,7 +1042,7 @@ msgstr "" "Време извршења скрипта је истекло, ако желите да довршите увоз, молимо " "пошаљите исту датотеку и увоз ће се наставити." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1049,23 +1051,23 @@ msgstr "" "да phpMyAdmin неће бити у могућности да заврши овај увоз осим ако не " "повећате временска ограничења у PHP-у" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Назад" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin преферира читаче који подржавају оквире." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" команда је онемогућена." @@ -1075,7 +1077,7 @@ msgstr "\"DROP DATABASE\" команда је онемогућена." msgid "Do you really want to execute \"%s\"?" msgstr "Да ли стварно хоћете да " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Овим ћете УНИШТИТИ комплетну базу података!" @@ -1125,7 +1127,7 @@ msgstr "Додај ново поље" msgid "Edit Index" msgstr "Уреди следећи ред" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -1146,16 +1148,16 @@ msgstr "Име домаћина је празно!" msgid "The user name is empty!" msgstr "Име корисника није унето!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Лозинка је празна!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Лозинке нису идентичне!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1178,25 +1180,26 @@ msgstr "Уклони изабране кориснике" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Промени" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Избор сервера" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "SQL упит" @@ -1207,24 +1210,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Укупно" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1246,7 +1249,7 @@ msgstr "Избор сервера" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Процеси" @@ -1266,7 +1269,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "Статистике реда" @@ -1316,14 +1319,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "КБ" @@ -1385,32 +1388,32 @@ msgstr "" msgid "Bytes received" msgstr "Примљено" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Конекције" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "бајтова" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "ЕБ" @@ -1426,11 +1429,11 @@ msgstr "%s табела" msgid "Questions" msgstr "Персијски" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Саобраћај" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1456,11 +1459,11 @@ msgstr "Држи се мреже" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "нема" @@ -1560,7 +1563,7 @@ msgstr "Опште особине релација" msgid "Current settings" msgstr "Опште особине релација" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1648,7 +1651,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Време" @@ -1755,10 +1758,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Увоз" @@ -1816,9 +1819,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "Откажи" @@ -1833,11 +1836,11 @@ msgstr "Локални" msgid "Processing Request" msgstr "Процеси" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Није изабрана ни једна база." @@ -1849,9 +1852,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "У реду" @@ -1907,19 +1910,19 @@ msgstr "Додај ново поље" msgid "Show indexes" msgstr "Прикажи мрежу" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Искључи провере страних кључева" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Омогућено" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1957,7 +1960,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1999,8 +2002,8 @@ msgstr "SQL упит" msgid "No rows selected" msgstr "Нема одабраних редова" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Промени" @@ -2008,18 +2011,18 @@ msgstr "Промени" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "%d није исправан број реда." #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Сачувај" @@ -2033,7 +2036,7 @@ msgstr "SQL упит" msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2085,12 +2088,12 @@ msgstr "Операције на резултатима упита" msgid "Data point content" msgstr "Величина показивача података" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Игнориши" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Копирај" @@ -2112,7 +2115,7 @@ msgstr "Изабери страни кључ" msgid "Please select the primary key or a unique key" msgstr "Молимо изаберите примарни или јединствени кључ" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2206,7 +2209,7 @@ msgstr "Направи" msgid "Change Password" msgstr "Промени лозинку" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2320,27 +2323,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2348,37 +2351,37 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "дец" @@ -2427,32 +2430,32 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Суб" @@ -2586,16 +2589,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "у секунди" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "у минуту" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "на сат" @@ -2616,21 +2619,232 @@ msgstr "" msgid "Font size" msgstr "Величина фонта" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +msgid "Save edited data" +msgstr "Основни директоријум података" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Додај/обриши колону" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Почетак" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Претходна" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Следећи" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Крај" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +msgid "Start row" +msgstr "Статус" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "Број поља" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Пон" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "хоризонталном" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "хоризонталном (ротирана заглавља)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "вертикалном" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Сортирај по кључу" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Опције" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Део текста" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Пун текст" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "Релациона схема" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Релациона схема" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Транформације читача" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Ред је обрисан" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Обустави" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "Може бити приближно. Видите FAQ 3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "у упиту" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Приказ записа" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "укупно" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Упит је трајао %01.4f секунди" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Операције на резултатима упита" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Поглед за штампу (са пуним текстом)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Прикажи PDF схему" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Направи релацију" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Веза није пронађена" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Послата датотека превазилази вредност директиве upload_max_filesize у php." "ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2638,52 +2852,67 @@ msgstr "" "Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је " "наведена у HTML форми." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Послата датотека је само делимично примљена." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Недостаје привремени директоријум." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Неуспело уписивање датотеке на диск." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Пријем датотеке заустављен због екстензије." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Непозната грешка при слању датотеке." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Грешка у премештању примљене датотеке, погледајте FAQ 1.11" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Отвори нови phpMyAdmin прозор" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Колачићи (Cookies) морају у овом случају бити активни." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "Колачићи (Cookies) морају у овом случају бити активни." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Кључеви" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Јединствени" @@ -2696,8 +2925,8 @@ msgstr "" msgid "Cardinality" msgstr "Кардиналност" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2719,131 +2948,131 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Базе" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Сервер" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Структура" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Нови запис" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Операције" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Табела је изгледа празна!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "База је изгледа празна!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Упит по примеру" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Привилегије" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Рутине" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" msgstr "Догађаји" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Дизајнер" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Корисник" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Бинарни дневник" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Променљиве" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Кодне стране" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Складиштења" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Грешка" @@ -2870,7 +3099,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Нема одабраних редова" msgstr[1] "Нема одабраних редова" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2967,16 +3196,108 @@ 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 +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 +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 +msgid "Value" +msgstr "Вредност" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Претраживање" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Нови запис" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Изабери поља (најмање једно)" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Додај услове претраживања (део \"WHERE\" упита):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Број редова по страни" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Редослед приказа:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Прегледај стране вредности" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "SQL упит" + +#: 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 "Направи \"упит по примеру\" (џокер: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Направи \"упит по примеру\" (џокер: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +msgid "How to use" +msgstr "верзија PHP-a" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Поништи" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Нема исправне путање до слика за тему %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Преглед не постоји." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "преузми" @@ -2995,7 +3316,7 @@ msgstr "Није пронађена тема %s!" msgid "Theme path not found for theme %s!" msgstr "Није пронађена путања до теме за тему %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3293,13 +3614,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Не могу да се повежем: неисправна подешавања." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Добродошли на %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3308,7 +3629,7 @@ msgstr "" "Вероватан разлог за ово је да нисте направили конфигурациону датотеку. " "Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3324,60 +3645,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Колачићи (Cookies) морају у овом случају бити активни." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Пријављивање" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Корисничко име:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Лозинка:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Избор сервера" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Колачићи (Cookies) морају у овом случају бити активни." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Није било активности %s или више секунди, молимо пријавите се поново" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Не могу да се пријавим на MySQL сервер" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Погрешно корисничко име/лозинка. Приступ одбијен." @@ -3409,7 +3724,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Табеле" @@ -3421,13 +3736,13 @@ msgstr "Табеле" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Подаци" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Прекорачење" @@ -3455,33 +3770,25 @@ msgstr "Провери привилегије за базу "%s"." msgid "Check Privileges" msgstr "Провери привилегије" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3493,218 +3800,196 @@ msgstr "" "$cfg['PmaAbsoluteUri'] директива МОРА бити подешена у " "конфигурационој датотеци!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Неисправан индекс сервера: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Неисправан метод аутентикације је задат у конфигурацији:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Максимална величина: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Документација" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL упит" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL рече: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Прескочи објашњавање SQL-a" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "без PHP кода" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Освежи" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Прескочи проверу SQL-a" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Провери SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Складиштења" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Профилисање" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Нед" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. у %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дана, %s сати, %s минута и %s секунди" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Рутине" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Почетак" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Претходна" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Следећи" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Крај" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Пређи на базу "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ова функционалност %s је погођена познатом грешком, видите %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директоријум за слање веб сервера " -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Директоријум који сте изабрали за слање није доступан" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Штампај" @@ -3736,8 +4021,8 @@ msgid "Closed" msgstr "Наводник није затворен" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Онемогућено" @@ -3888,9 +4173,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Поништи" @@ -4103,10 +4388,6 @@ msgstr "Предложи структуру табеле" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4165,7 +4446,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Сачувај као датотеку" @@ -4175,7 +4456,7 @@ msgid "Character set of the file" msgstr "Карактер сет датотеке:" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Формат" @@ -4294,7 +4575,7 @@ msgid "MIME type" msgstr "MIME-типови" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Релације" @@ -5854,9 +6135,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Лозинка" @@ -6132,12 +6413,6 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "Може бити приближно. Видите FAQ 3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6146,18 +6421,18 @@ msgstr "" "није успела." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Промени лозинку" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Нема лозинке" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Поновите унос" @@ -6182,22 +6457,22 @@ msgstr "Направи нову базу података" msgid "Create" msgstr "Направи" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Нема привилегија" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Име" @@ -6393,25 +6668,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Верзија MySQL клијента" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Направи релацију" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Направи релацију" @@ -6538,193 +6813,28 @@ msgstr "" msgid "Language" msgstr "Језик" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -msgid "Save edited data" -msgstr "Основни директоријум података" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Додај/обриши колону" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -msgid "Start row" -msgstr "Статус" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "Број поља" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Пон" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "хоризонталном" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "хоризонталном (ротирана заглавља)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "вертикалном" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Сортирај по кључу" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Опције" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Део текста" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Пун текст" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "Релациона схема" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Релациона схема" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Транформације читача" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Ред је обрисан" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Обустави" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "у упиту" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Приказ записа" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "укупно" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Упит је трајао %01.4f секунди" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Операције на резултатима упита" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Поглед за штампу (са пуним текстом)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Прикажи PDF схему" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Направи релацију" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Веза није пронађена" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Информације о верзији" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Основни директоријум података" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Заједнички део путање директоријума за све InnoDB датотеке са подацима." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Датотеке са подацима" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Корак аутоматског проширења" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6732,11 +6842,11 @@ msgstr "" " Величина корака проширења величине табела које се аутоматски проширују када " "се напуне." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Величина прихватника" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6744,79 +6854,79 @@ msgstr "" "Величина меморијског прихватника које InnoDB користи за кеширање података и " "индекса својих табела." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Скуп прихватника" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB статус" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Коришћење скупа прихватника" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "страна" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Слободне стране" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Прљаве стране" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Стране са подацима" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Стране које треба да буду усклађене" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Заузете стране" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Забрављене стране" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Активност скупа прихватника" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Захтеви за читање" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Захтеви за упис" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Промашаји при читању" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Чекања на упис" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Промашаји читања у %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Чекања на упис у %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Величина показивача података" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6824,11 +6934,11 @@ msgstr "" "Подразумевана величина показивача у бајтовима, користи се при CREATE TABLE " "за MyISAM табеле када није задата опција MAX_ROWS" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Режим аутоматског опоравка" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6836,11 +6946,11 @@ msgstr "" "Режим аутоматског опоравка пукнутих MyISAM табела, подешен при стартовању " "сервера опцијом --myisam-recover." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Максимална величина привремених датотека за сортирање" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6850,11 +6960,11 @@ msgstr "" "креирању MyISAM индекса (у току REPAIR TABLE, ALTER TABLE, или LOAD DATA " "INFILE операција)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Максимална величина привремених датотека при креирању индекса" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6864,11 +6974,11 @@ msgstr "" "била већа него при коришћењу кеша кључева за овде задату вредност, користи " "метод кеширања кључева" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Нити поправке" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6876,11 +6986,11 @@ msgstr "" "Ако је вредност већа од 1, индекси MyISAM табела се паралелно креирају " "(сваки индекс у сопственој нити) за време процеса поправке сортирањем." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Величина прихватника за сортирање" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6888,73 +6998,73 @@ msgstr "" "Прихватник који се алоцира при сортирању MyISAM индекса за време операције " "REPAIR TABLE или при креирању индекса са CREATE INDEX или ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 #, fuzzy msgid "Log cache size" msgstr "Величина прихватника за сортирање" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6962,49 +7072,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 #, fuzzy msgid "Log buffer size" msgstr "Величина прихватника за сортирање" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -7012,20 +7122,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Релације" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -7085,14 +7195,14 @@ msgstr "Приказ података табеле" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Догађаји" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7166,14 +7276,14 @@ msgstr "Доступни MIME-типови" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Домаћин" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Време креирања" @@ -7373,21 +7483,12 @@ msgstr "Поглед" msgid "Export contents" msgstr "Тип извоза" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Отвори нови phpMyAdmin прозор" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." @@ -7483,12 +7584,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Назив табеле" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Имена колона" @@ -7556,99 +7657,81 @@ msgstr "Мод SQL компатибилности" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Функција" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Сакриј" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Бинарни" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Бинарни - не мењај" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "директоријум за слање веб сервера" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Нови запис" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Поново покрени уношење са %s редова" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "и онда" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Унеси као нови ред" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 #, fuzzy msgid "Show insert query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Назад на претходну страну" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Додај још један нови ред" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Врати се на ову страну" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Уреди следећи ред" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Вредност" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7665,38 +7748,38 @@ msgstr "нема" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Пет" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Пошаљи" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "Додај ново поље" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Да ли стварно хоћете да " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Нема измена" @@ -7908,93 +7991,93 @@ msgstr "" msgid "This format has no options" msgstr "Не постоје опције за овај формат" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "није у реду" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "У реду" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Омогућено" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Опште особине релација" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Прикажи особине" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Прављење PDF-ova" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Приказујем коментаре колоне" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Транформације читача" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Молимо погледајте у документацији како се ажурира табела Column_comments" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Запамћен SQL-упит" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL историјат" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "нема описа" @@ -8002,7 +8085,7 @@ msgstr "нема описа" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -8014,13 +8097,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Име корисника" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Сортирање" @@ -8036,7 +8119,7 @@ msgid "Slave status" msgstr "Прикажи статус подређених сервера" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Променљива" @@ -8050,38 +8133,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Било који корисник" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Користи текст поље" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Било који домаћин" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Локални" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Овај сервер" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Користи табелу домаћина" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8095,7 +8178,7 @@ msgstr "Направи лозинку" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8127,100 +8210,101 @@ msgstr "Табела %s је одбачена" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Event" msgid "Edit event" msgstr "Догађаји" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Процеси" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Врста догађаја" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Врста догађаја" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Промени" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Статус" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Крај" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Комплетан INSERT (са именима поља)" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8251,7 +8335,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -8272,103 +8356,103 @@ msgstr "Табела %s је одбачена" msgid "Routine %1$s has been created." msgstr "Табела %s је одбачена" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Рутине" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Рутине" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Директне везе" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Дужина/Вредност*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Додај ново поље" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Уклони базу" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Повратни тип" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Дужина/Вредност*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Опције табеле" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Врста упита" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8376,19 +8460,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дозвољава извршавање сачуваних рутина." -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8409,43 +8493,43 @@ msgstr "Табела %s је одбачена" msgid "Trigger %1$s has been created." msgstr "Табела %s је одбачена" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Додај новог корисника" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Окидачи" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Време" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Неисправан назив табеле" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8551,7 +8635,7 @@ msgstr "Провери табелу" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8561,7 +8645,7 @@ msgstr "Табела \"%s\" не постоји!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8569,7 +8653,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Подесите координате за табелу %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8581,27 +8665,27 @@ msgstr "Схема базе \"%s\" - Страна %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Релациона схема" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Садржај" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Атрибути" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Додатно" @@ -8721,7 +8805,7 @@ msgstr "Непознат језик: %1$s." msgid "Current Server" msgstr "Сервер" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Претраживање базе" @@ -8740,7 +8824,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Претраживање базе" @@ -8760,7 +8844,7 @@ msgstr "Изврши SQL упит(е) на серверу %s" msgid "Run SQL query/queries on database %s" msgstr "Изврши SQL упит(е) на бази %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" @@ -8772,11 +8856,11 @@ msgstr "Календар" msgid "Columns" msgstr "Имена колона" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Запамти SQL-упит" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" @@ -8871,7 +8955,7 @@ msgstr "" "SQL валидатор није могао да буде покренут. Проверите да ли су инсталиране " "неопходне PHP екстензије описане у %sдокументацији%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8903,8 +8987,8 @@ msgstr "" "наводника у овом облику: а" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Кључ" @@ -8958,13 +9042,13 @@ msgstr "нема" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Примарни" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Текст кључ" @@ -8978,20 +9062,20 @@ msgstr "" msgid "after %s" msgstr "После %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "Додај %s поља" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Морате додати барем једно поље." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Погон складиштења" @@ -8999,45 +9083,6 @@ msgstr "Погон складиштења" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Претраживање" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Изабери поља (најмање једно)" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Додај услове претраживања (део \"WHERE\" упита):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Број редова по страни" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Редослед приказа:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Прегледај стране вредности" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Направи \"упит по примеру\" (џокер: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9222,13 +9267,13 @@ msgstr "" msgid "Manage your settings" msgstr "Опште особине релација" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Измене су сачуване" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9241,7 +9286,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9272,7 +9317,7 @@ msgstr "Сортирање за MySQL везу" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9298,9 +9343,9 @@ msgstr "Верзија сервера" msgid "Protocol version" msgstr "Верзија протокола" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Корисник" @@ -9431,147 +9476,147 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "База не постоји" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "назив табеле" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "назив табеле" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Направи табелу" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Изаберите базу" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Прикажи/сакриј мени с леве стране" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Сачувај позицију" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Направи релацију" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Поново учитај" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Помоћ" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Угласте везе" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Директне везе" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Држи се мреже" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Све мало/велико" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Промени мало/велико" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "Да одаберете релацију, кликните :" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Извоз/увоз координата за PDF схему" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Изврши SQL упит" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Премести мени" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Сакриј/прикажи све" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Сакриј/прикажи табеле без релација" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Број табела" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Обриши релацију" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Релација обрисана" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Извоз" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "у упиту" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Промени име табеле у " -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Име корисника" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Направи" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9586,61 +9631,61 @@ msgstr "Табела %s је одбачена" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "страна" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Увоз датотека" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Извор/увоз у размери" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Направи нови кључ" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Име корисника" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Извор/увоз у размери" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "препоручено" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Грешка: релација већ постоји." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Грешка: релација није додата." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Додата интерна релација" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Релација обрисана" @@ -9652,91 +9697,91 @@ msgstr "Грешка при снимању координата за Дизај msgid "Modifications have been saved" msgstr "Измене су сачуване" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Увоз датотека" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Увоз датотека" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Све" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s табела није пронађена или није постављена у %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9746,17 +9791,17 @@ msgstr "Табела \"%s\" не постоји!" msgid "Select binary log to view" msgstr "Изаберите бинарни дневник за преглед" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Датотеке" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Прикажи скраћене упите" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Прикажи комплетне упите" @@ -9772,7 +9817,7 @@ msgstr "Позиција" msgid "Original position" msgstr "Оригинална позиција" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Информације" @@ -9780,7 +9825,7 @@ msgstr "Информације" msgid "Character Sets and Collations" msgstr "Карактер сетови и сортирање" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9789,24 +9834,24 @@ msgstr[0] "%s база је успешно одбачено." msgstr[1] "%s база је успешно одбачено." msgstr[2] "%s база је успешно одбачено." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Статистика базе" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Укључи статистике" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9818,156 +9863,156 @@ msgstr "" msgid "Storage Engines" msgstr "Погони складиштења" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Прикажи садржај (схему) базе" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Почетак" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "Персијски" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Онемогућено" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Укључује све привилегије осим GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Дозвољава измену структура постојећих табела." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Дозвољава измену и одбацивање сачуваних рутина." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Дозвољава креирање нових база и табела." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Дозвољава прављење сачуваних рутина." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Дозвољава креирање нових табела." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Дозвољава креирање привремених табела.." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозвољава прављење, одбацивање и преименовање корисничких налога." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Дозволи креирање нових погледа." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Дозвољава брисање података." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Дозвољава одбацивање база и табела." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Дозвољава одбацивање табела." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Дозвољава извршавање сачуваних рутина." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Дозвољава увоз података и њихов извоз у датотеке." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозвољава додавање корисника и привилегија без поновног учитавања табела " "привилегија." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Дозвољава креирање и брисање кључева." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Дозвољава уметање и замену података." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Дозвољава закључавање табела текућим процесима." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Ограничава број нових конекција које корисник може та отвори на сат." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ограничава број упита које корисник може да упути серверу за сат." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9975,59 +10020,59 @@ msgstr "" "Ограничава број команди које мењају табеле или базе које корисник може да " "изврши на сат." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ограничава број истовремених конекција које корисник може да има." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Нема ефекта у овој верзији MySQL-a." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозвољава поновно учитавање подешавања сервера и пражњење кеша сервера." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Даје право кориснику да пита где су главни/помоћни сервери." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Потребно због помоћних сервера за репликацију." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Дозвољава читање података." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Даје приступ комплетној листи база." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозвољава извршавање SHOW CREATE VIEW упита." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Дозвољава гашење сервера." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -10037,173 +10082,173 @@ msgstr "" "Неопходно за већину административних опција као што су подешавање глобалних " "променљивих или прекидање процеса осталих корисника." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Дозвољава креирање и брисање кључева." -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Дозвољава измену података." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Нема привилегија." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "нема" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Привилегије везане за табеле" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Напомена: MySQL имена привилегија морају да буду на енглеском" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Администрација" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Глобалне привилегије" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Привилегије везане за базу" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Ограничења ресурса" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Напомена: Постављање ових опција на 0 (нулу) уклања ограничења." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Подаци о пријави" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Немој да мењаш лозинку" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Корисник није нађен." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Корисник %s већ постоји!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Додали сте новог корисника." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Ажурирали сте привилегије за %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Забранили сте привилегије за %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Лозинка за %s је успешно промењена." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Бришем %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Ниједан корисник није одабран за брисање!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Поново учитавам привилегије" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Изабрани корисници су успешно обрисани." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Привилегије су успешно поново учитане." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Промени привилегије" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Забрани" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Извоз" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Било који" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Привилегије" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегије" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Преглед корисника" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Омогући" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Уклони изабране кориснике" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Обустави све активне привилегије корисника и затим их обриши." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Одбаци базе које се зову исто као корисници." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10216,143 +10261,143 @@ msgstr "" "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Привилегије везане за колоне" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Додај привилегије на следећој бази" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Пре џокера _ и % треба ставити знак \\ ако их користите самостално" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Додај привилегије на следећој табели" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Промени информације о пријави / Копирај корисника" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Направи новог корисника са истим привилегијама и ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... сачувај старе." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... обриши старе из табела корисника." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... обустави све привилегије старог корисника и затим га обриши." -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... обриши старог из табеле корисника и затим поново учитај привилегије." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "База за корисника" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "Направи базу са истим именом и додај све привилегије" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегије за базу "%s"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Корисници који имају приступ "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "глобално" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "Специфично за базу" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "џокер" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "Поглед %s је одбачен" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Привилегије су успешно поново учитане." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 #, fuzzy msgid "Show master status" msgstr "Прикажи статус подређених сервера" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10361,273 +10406,273 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Изаберите базу" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Текст кључ" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full stop" msgstr "Текст кључ" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Само структура" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Само структура" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Процес %s је успешно прекинут." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin није могао да прекине процес %s. Вероватно је већ затворен." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Руковалац" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Кеш упита" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Нити" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Привремени подаци" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Одложена уметања" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Кеш кључева" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Спојеви" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Сортирање" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Координатор трансакција" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Очисти (затвори) све табеле" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Прикажи отворене табеле" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Прикажи подређене сервер" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Прикажи статус подређених сервера" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Очисти кеш упита" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Информације о току рада" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Освежи" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Датотеке" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Немој да мењаш лозинку" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Прикажи отворене табеле" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Прикажи отворене табеле" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Релације" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Врста упита" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Функције" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10635,57 +10680,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Име" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 #, fuzzy msgid "Replication status" msgstr "Репликација" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10693,47 +10738,47 @@ msgstr "" "На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да " "те статистике, онако како их пријављује MySQL сервер, могу бити нетачне." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Примљено" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Послато" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "макс. истовремених веза" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Неуспелих покушаја" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Прекинуто" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Наредба" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -10743,16 +10788,16 @@ msgstr "" "превазишле вредност у binlog_cache_size и користиле привремену датотеку да " "сместе изразе из трансакције." -#: server_status.php:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "Број трансакција које су користиле кеш привременог бинарног дневника." -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10764,11 +10809,11 @@ msgstr "" "повећате вредност tmp_table_size како би учинили да привремене табеле буду " "базиране у меморији уместо на диску." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Колико привремених датотека је mysqld направио." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10776,7 +10821,7 @@ msgstr "" "Број привремених табела које је сервер аутоматски креирао у меморији док је " "извршавао изразе." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10784,7 +10829,7 @@ msgstr "" "Број редова уписаних са INSERT DELAYED за које је јављена нека грешка " "(вероватно дуплирани кључ)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10792,23 +10837,23 @@ msgstr "" "Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над " "којом се користи INSERT DELAYED добија своју нит." -#: server_status.php:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Број уписаних INSERT DELAYED редова." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Број извршених FLUSH израза." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Број интерних COMMIT израза." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Број брисања неког реда табеле." -#: server_status.php:1334 +#: 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 " @@ -10818,7 +10863,7 @@ msgstr "" "одређеног имена. То се назива откривањем (discovery). Handler_discover " "означава број пута када је откривена табела." -#: server_status.php:1335 +#: 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, " @@ -10828,7 +10873,7 @@ msgstr "" "може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT " "кол1 FROM нешто, под претпоставком да је кол1 индексирано." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -10836,7 +10881,7 @@ msgstr "" "Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то " "је добар показатељ да су ваши упити и табеле прописно индексирани." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10846,7 +10891,7 @@ msgstr "" "када радите упит по колони индекса са ограничењем опсега или ако радите " "скенирање индекса." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10854,7 +10899,7 @@ msgstr "" "Број захтева за читањем претходног реда у поретку кључева. Ова метода читања " "се углавном користи за оптимизацију ORDER BY ... DESC." -#: server_status.php:1339 +#: 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 " @@ -10866,7 +10911,7 @@ msgstr "" "много упита који захтевају да MySQL скенира целе табеле или имате спојеве " "који не користе кључеве прописно." -#: server_status.php:1340 +#: server_status.php:1339 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,35 +10923,35 @@ msgstr "" "прописно индексиране или да ваши упити нису написани да искористе већ " "постојеће индексе." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Број интерних ROLLBACK израза." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Број захтева за ажурирање реда у табели." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Број захтева за уписивање реда у табелу." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Број страна које садрже податке (чистих или прљавих)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Број страна које су тренутно прљаве." -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Број страна у остави бафера за које је тражено да буду очишћене." -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Број слободних страна." -#: server_status.php:1348 +#: 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 " @@ -10916,7 +10961,7 @@ msgstr "" "чита или се у њих уписује или из неког другог разлога не могу бити очишћене " "нити уклоњене." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10928,11 +10973,11 @@ msgstr "" "такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Пуна величина оставе бафера, у странама." -#: server_status.php:1351 +#: 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." @@ -10940,7 +10985,7 @@ msgstr "" "Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када " "упит треба да скенира велики део табеле али насумичним редоследом." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10948,11 +10993,11 @@ msgstr "" "Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када " "InnoDB ради секвенцијално скенирање целе табеле." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Број логичких захтева за читање које је InnoDB урадио." -#: server_status.php:1354 +#: 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." @@ -10960,7 +11005,7 @@ msgstr "" "Број логичких читања која InnoDB није могао да задовољи из оставе бафера те " "је морао да ради читање појединачне стране." -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10974,55 +11019,55 @@ msgstr "" "дешавања ових чекања. Ако је величина оставе бафера постављена како треба, " "ова вредност ви требало да је ниска." -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Број уписа учињених у InnoDB оставу бафера." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Број fsync() операција до сада." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Тренутни број fsync() операција на чекању." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Тренутни број читања на чекању." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Тренутни број уписа на чекању." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Количина података прочитаних до сада, у бајтовима." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Укупан број читања података." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Укупан број уписа података." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Количина података уписаних до сада, у бајтовима" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -11030,35 +11075,35 @@ msgstr "" "Број чекања која смо имали зато што је бафер дневника био премали те смо " "морали да сачекамо да буде очишћен пре наставка." -#: server_status.php:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Број захтева за упис у дневник." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Број физичких уписа у датотеку дневника." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Број fsync-ова за датотеку дневника на чекању." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Број уписа у датотеку дневника на чекању." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Број бајтова уписаних у датотеку дневника." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Број направљених страна." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -11067,51 +11112,51 @@ msgstr "" "вредности се рачунају у странама; величина стране омогућава да се оне лако " "конвертују у бајтове." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Број прочитаних страна." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Број записаних страна." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Број брава за редове које се тренутно чекају." -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Просечно време за добављање браве за ред, у милисекундама." -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама." -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Најдуже време за добављање браве за ред, у милисекундама." -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "Број пута када се морала чекати брава за ред." -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Број редова обрисаних из InnoDB табела." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Број редова уметнутих у InnoDB табеле." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Број редова прочитаних из InnoDB табела." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Број редова ажурираних у InnoDB табелама." -#: server_status.php:1387 +#: 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." @@ -11119,7 +11164,7 @@ msgstr "" "Број блокова кључева у кешу кључева који су измењени али још нису послати на " "диск. Ово је раније било познато као Not_flushed_key_blocks." -#: server_status.php:1388 +#: 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." @@ -11127,7 +11172,7 @@ msgstr "" "Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите " "да утврдите колики део кеша кључева је у употреби." -#: server_status.php:1389 +#: server_status.php:1388 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 " @@ -11137,17 +11182,17 @@ msgstr "" "водостаја“ која показује највећи икада број блокова који је био у употреби у " "исто време." -#: server_status.php:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Формат датотека за увоз" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "Број захтева за читање блока кључева из кеша." -#: server_status.php:1392 +#: 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 " @@ -11157,26 +11202,26 @@ msgstr "" "је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша " "се може израчунати као Key_reads/Key_read_requests." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "Број захтева за уписивање блока кључева у кеш." -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "Број физичких уписа блока кључева на диск." -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -11186,17 +11231,17 @@ msgstr "" "упита. Корисно за упоређивање цене различитих планова упита за исти упит. " "Подразумевана вредност 0 значи да још није био компајлиран ниједан упит." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање." -#: server_status.php:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11204,39 +11249,39 @@ msgstr "" "Број табела које су биле отваране. Ако је број велики, ваш кеш табела је " "вероватно премали." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Број отворених датотека." -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Број отворених токова (користи се првенствено за вођење дневника (logging))." -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Број отворених табела." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Количина слободне меморије за кеш упита." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Број погодака из кеша." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Број упита додатих у кеш." -#: server_status.php:1408 +#: 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 " @@ -11248,7 +11293,7 @@ msgstr "" "упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least " "recently used , LRU) да би одлучио које упите да уклони из кеша." -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11256,19 +11301,19 @@ msgstr "" "Број некешираних упита (који се не могу кеширати или нису кеширани због " "подешавања query_cache_type)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Број упита регистрованих у кешу." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Укупан број блокова у кешу за упите." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Статус репликације отпорне на грешке (није још имплементирано)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -11276,11 +11321,11 @@ msgstr "" "Број спојева који не користе индексте. Ако ова вредност није 0, требало би " "пажљиво да проверите индексе ваших табела." -#: server_status.php:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "Број спојева који су користили претрагу опсега на референтној табели." -#: server_status.php:1415 +#: 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.)" @@ -11288,7 +11333,7 @@ msgstr "" "Број спојева без кључева који проверавају употребу кључа после сваког реда. " "(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11296,15 +11341,15 @@ msgstr "" "Број спојева који су користили опсеге на првој табели. (Обично није критично " "чак ни када је ово велико)" -#: server_status.php:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "Број спојева који су урадили пуно скенирање прве табеле." -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити." -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11312,11 +11357,11 @@ msgstr "" "Укупан број пута (од покретања) када је помоћна SQL нит за репликацију " "покушала трансакције." -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни." -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11324,12 +11369,12 @@ msgstr "" "Број нити за које је требало више од slow_launch_time секудни да би биле " "покренуте." -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Број упита за које је требало више од long_query_time секудни." -#: server_status.php:1423 +#: server_status.php:1422 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 " @@ -11339,23 +11384,23 @@ msgstr "" "је ова вредност велика, требало би да размислите о повећању вредности " "системске променљиве sort_buffer_size." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Број сортирања која су урађена са опсегом." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Број сортираних редова." -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "Број сортирања до којих је дошло скенирањем табеле." -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "Број пута када је брава за табелу одмах добављена." -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11367,7 +11412,7 @@ msgstr "" "би требало да оптимизујете своје упите а потом да или поделите табелу или " "табеле или да користите репликацију." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11377,11 +11422,11 @@ msgstr "" "Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате " "ваш thread_cache_size." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Број тренутно отворених веза." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11393,69 +11438,69 @@ msgstr "" "имплементацију нити, ово обично не доноси приметна побољшања у " "перформансама.)" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Кеш кључева" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Број нити које нису успаване." -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy msgid "Start Monitor" msgstr "Статус" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Додај ново поље" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Освежи" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Додај/обриши колону" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11464,7 +11509,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11472,18 +11517,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11491,11 +11536,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11503,92 +11548,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Уклони базу" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Изабери табеле" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Неисправан назив табеле" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Додај новог корисника" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "SQL упит" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Статистике реда" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "Изабери све" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Врста упита" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11597,7 +11642,7 @@ msgstr[0] "у секунди" msgstr[1] "у секунди" msgstr[2] "у секунди" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11606,133 +11651,133 @@ msgstr[0] "се користи" msgstr[1] "се користи" msgstr[2] "се користи" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 #, fuzzy msgid "Structure Difference" msgstr "Структура за поглед (view)" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 #, fuzzy msgid "Data Difference" msgstr "Структура за поглед (view)" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL упит" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "макс. истовремених веза" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Серверске променљиве и подешавања" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Вредност сесије" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Глобална вредност" @@ -12025,180 +12070,180 @@ msgstr "" msgid "Wrong data" msgstr "База не постоји" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Да ли стварно хоћете да " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Приказ као PHP код" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL резултат" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Генерисао" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирању табеле `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Назив" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Изабрани корисници су успешно обрисани." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Изабрани корисници су успешно обрисани." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "мар" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Колона" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Складиштења" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "ПБ" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Наслов извештаја" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "SQL упит" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Вредност" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Вредност" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Табела %s већ постоји!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Табела %s је одбачена" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Прикажи садржај (схему) табеле" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Додај/обриши колону" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Укупно" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Сачувај као датотеку" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12216,32 +12261,32 @@ msgstr "Не могу да променим кључ у PRIMARY (примарн msgid "No index parts defined!" msgstr "Делови кључа нису дефинисани!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Додај ново поље" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Add new field" msgid "Edit index" msgstr "Додај ново поље" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Име кључа :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" мора бити име само примарног кључа!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Тип кључа :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Додај у кључ  %s колона(е)" @@ -12264,280 +12309,280 @@ msgstr "Табела %s је померена у %s." msgid "Table %s has been copied to %s." msgstr "Табела %s је копирана у %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Има табеле је празно!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Промени редослед у табели" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(по једном пољу)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Помери табелу у (база.табела):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Опције табеле" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Промени име табеле у" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Копирај табелу у (база.табела):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Пређи на копирану табелу" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Радње на табели" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Дефрагментирај табелу" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Табела %s је освежена" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Освежи табелу (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Приказ података табеле" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "База не постоји" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Радње на табели" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 #, fuzzy msgid "Check" msgstr "Чешки" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "Поправи табелу" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Провери референцијални интегритет:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Прикажи табеле" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Заузеће" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Ефективне" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Статистике реда" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "динамички" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Дужина реда" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Величина реда" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Унутрашње релације" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Прегледај различите вредности" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add new field" msgid "Add SPATIAL index" msgstr "Додај ново поље" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "нема" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Табела %s је одбачена" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Примарни кључ је управо додат %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Кључ је управо додат %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Прикажи информације о PHP-у" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Додај %s поља" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "За штампу" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Релациони поглед" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Предложи структуру табеле" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Додај %s поља" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "На крају табеле" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "На почетку табеле" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "После %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Направи кључ на %s колона" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12693,74 +12738,40 @@ msgstr "" msgid "Create version" msgstr "Направи релацију" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Направи \"упит по примеру\" (џокер: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "SQL упит" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -msgid "How to use" -msgstr "верзија PHP-a" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Поништи" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Доступни MIME-типови" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-типови приказани у курзиву немају одвојене функције трансформације." -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Доступне трансформације" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Опис" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Није Вам дозвољено да будете овде!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Профил је промењен." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "назив за VIEW" diff --git a/po/sr@latin.po b/po/sr@latin.po index e6479b7e44..14825acbec 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: serbian_latin \n" @@ -15,21 +15,21 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Prikaži sve" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Broj strane:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "zatvorili matični prozor, ili vaš pretraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Kreni" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Ime ključa" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Opis" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Koristi ovu vrednost" @@ -106,88 +106,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Baza %1$s je kreirana." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Komentar baze: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Komentari tabele" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Kolona" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Podrazumevano" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Veze ka" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Komentari" @@ -196,14 +197,14 @@ msgstr "Komentari" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ne" @@ -216,122 +217,122 @@ msgstr "Ne" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Da" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Prikaži sadržaj (shemu) baze" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Tabele nisu pronađene u bazi." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Izaberi sve" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "ništa" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Ime baze nije zadato!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Baza %s je preimenovana u %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Baza %s je prekopirana u %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Preimenuj bazu u" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Ukloni bazu" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Baza %s je odbačena." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Ukloni bazu i njen sadržaj" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Kopiraj bazu u" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Samo struktura" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktura i podaci" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Samo podaci" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE pre kopiranja" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Dodaj %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Dodaj AUTO_INCREMENT vrednost" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Dodaj ograničenja" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Prebaci se na kopiranu bazu" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Sortiranje" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| "ditional features for working with linked tables have been ctivated. To d " @@ -343,59 +344,59 @@ msgstr "" "Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste " "saznali zašto, kliknite %sovde%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Uredi ili izvezi relacionu shemu" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabela" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Redova" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Veličina" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "se koristi" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Napravljeno" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Poslednja izmena" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Poslednja provera" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -407,118 +408,118 @@ msgstr[2] "%s tabela" msgid "You have to choose at least one column to display" msgstr "Morate izabrati bar jednu kolonu za prikaz" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" msgstr "vizuelni kreator" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sortiranje" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Rastući" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Opadajući" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Prikaži" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriterijum" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "i" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "ili" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Promeni" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Dodaj/obriši kriterijum za polja" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Dodaj/obriši kolone" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Ažuriraj upit" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Koristi tabele" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Izvrši SQL upit" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Pristup odbijen" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "bar jednu od reči" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "sve reči" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "tačan izraz" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "kao regularni izraz" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Rezultati pretrage za \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -527,31 +528,31 @@ msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" msgstr[2] "%s pogodaka unutar tabele %s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -559,266 +560,267 @@ msgstr[0] "Ukupno: %s pogodaka" msgstr[1] "Ukupno: %s pogodak" msgstr[2] "Ukupno: %s pogodaka" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Pretraživanje baze" -#: db_search.php:292 +#: db_search.php:295 #, 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:297 +#: db_search.php:300 msgid "Find:" msgstr "Traži:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Reči se odvajaju razmakom (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Unutar tabela:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Unutar kolone::" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Tabele nisu pronađene u bazi." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "nepoznat" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabela %s je ispražnjena" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Pogled %s je odbačen" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabela %s je odbačena" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Praćenje je aktivno." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Praćenje nije aktivno." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Pogled" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikacija" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Ukupno" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Isprazni" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Odbaci" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Proveri tabelu" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimizuj tabelu" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Popravi tabelu" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analiziraj tabelu" -#: db_structure.php:719 +#: db_structure.php:717 #, fuzzy msgid "Add prefix to table" msgstr "Baza ne postoji" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 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:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 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:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Rečnik podataka" -#: db_tracking.php:74 +#: db_tracking.php:75 #, fuzzy msgid "Tracked tables" msgstr "Proveri tabelu" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Baza podataka" -#: db_tracking.php:81 +#: db_tracking.php:82 #, fuzzy msgid "Last version" msgstr "Napravi relaciju" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 #, fuzzy msgid "Created" msgstr "Napravi" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Status" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Akcija" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 #, fuzzy msgid "Versions" msgstr "Persijski" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 #, fuzzy msgid "Structure snapshot" msgstr "Samo struktura" -#: db_tracking.php:183 +#: db_tracking.php:184 #, fuzzy msgid "Untracked tables" msgstr "Proveri tabelu" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "Proveri tabelu" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "Baza podataka" @@ -833,18 +835,18 @@ msgstr "Vrsta upita" msgid "Selected export type has to be saved in file!" msgstr "Odabrani tip izvoza mora biti sačuvan u datoteku!" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Routines" msgid "Bad parameters!" msgstr "Rutine" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Nedovoljno prostora za snimanje datoteke %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -852,12 +854,12 @@ msgstr "" "Datoteka %s već postoji na serveru, promenite ime datoteke ili uključite " "opciju prepisivanja." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u datoteku %s." @@ -867,103 +869,103 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s." msgid "Invalid export type" msgstr "Tip izvoza" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a point" msgstr "Dodaj %s polja" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Linije se završavaju sa" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "Dodaj %s polja" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy msgid "Add geometry" msgstr "Dodaj novog korisnika" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -972,21 +974,21 @@ msgstr "" "Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte " "%sdokumentaciju%s za načine prevazilaženja ovog ograničenja." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Prikazivanje markera" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Obeleživač je upravo obrisan." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -995,7 +997,7 @@ msgstr "" "Pokušali ste da uvezete datoteku sa kompresijom koja nije podržana (%s). Ili " "podrška za nju nije implementirana, ili je isključena u vašoj konfiguraciji." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -1005,26 +1007,26 @@ msgstr "" "ili veličina datoteke prevazilazi maksimalnu veličinu dozvoljenu u vašoj " "konfiguraciji PHP-a. Pogledajte. See FAQ 1.16." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Ne mogu da učitam dodatke za uvoz, molim proverite svoju instalaciju!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Napravljen marker %s" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Uvoz je uspešno završen, izvršeno je %d upita." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1032,7 +1034,7 @@ msgstr "" "Vreme izvršenja skripta je isteklo, ako želite da dovršite uvoz, molimo " "pošaljite istu datoteku i uvoz će se nastaviti." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1041,23 +1043,23 @@ msgstr "" "znači da phpMyAdmin neće biti u mogućnosti da završi ovaj uvoz osim ako ne " "povećate vremenska ograničenja u PHP-u" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Nazad" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin preferira čitače koji podržavaju okvire." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." @@ -1067,7 +1069,7 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena." msgid "Do you really want to execute \"%s\"?" msgstr "Da li stvarno hoćete da " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!" @@ -1117,7 +1119,7 @@ msgstr "Ključ" msgid "Edit Index" msgstr "Uredi sledeći red" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -1138,16 +1140,16 @@ msgstr "Ime domaćina je prazno!" msgid "The user name is empty!" msgstr "Ime korisnika nije uneto!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1170,25 +1172,26 @@ msgstr "Ukloni izabrane korisnike" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Promeni" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Izbor servera" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "SQL upit" @@ -1199,24 +1202,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1238,7 +1241,7 @@ msgstr "Izbor servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Procesi" @@ -1258,7 +1261,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "Statistike reda" @@ -1308,14 +1311,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1377,32 +1380,32 @@ msgstr "" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Konekcije" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "bajtova" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1419,11 +1422,11 @@ msgstr "%s tabela" msgid "Questions" msgstr "Persijski" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1449,11 +1452,11 @@ msgstr "Drži se mreže" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "nema" @@ -1553,7 +1556,7 @@ msgstr "Opšte osobine relacija" msgid "Current settings" msgstr "Opšte osobine relacija" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1641,7 +1644,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Vreme" @@ -1748,10 +1751,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvoz" @@ -1809,9 +1812,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "Otkaži" @@ -1826,11 +1829,11 @@ msgstr "Lokalni" msgid "Processing Request" msgstr "Procesi" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." @@ -1842,9 +1845,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "U redu" @@ -1900,19 +1903,19 @@ msgstr "Ključevi" msgid "Show indexes" msgstr "Prikaži mrežu" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Isključi provere stranih ključeva" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Omogućeno" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1950,7 +1953,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1992,8 +1995,8 @@ msgstr "SQL upit" msgid "No rows selected" msgstr "Nema odabranih redova" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Promeni" @@ -2001,18 +2004,18 @@ msgstr "Promeni" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Sačuvaj" @@ -2026,7 +2029,7 @@ msgstr "SQL upit" msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2078,12 +2081,12 @@ msgstr "Operacije na rezultatima upita" msgid "Data point content" msgstr "Veličina pokazivača podataka" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2105,7 +2108,7 @@ msgstr "Izaberi strani ključ" msgid "Please select the primary key or a unique key" msgstr "Molimo izaberite primarni ili jedinstveni ključ" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2199,7 +2202,7 @@ msgstr "Napravi" msgid "Change Password" msgstr "Promeni lozinku" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2313,27 +2316,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2341,37 +2344,37 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "dec" @@ -2420,32 +2423,32 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Sub" @@ -2579,16 +2582,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "u sekundi" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "u minutu" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "na sat" @@ -2609,21 +2612,234 @@ msgstr "" msgid "Font size" msgstr "Veličina fonta" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +msgid "Save edited data" +msgstr "Osnovni direktorijum podataka" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Dodaj/obriši kolonu" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Početak" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Prethodna" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Sledeći" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Kraj" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Sub" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "Broj polja" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Pon" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horizontalnom" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horizontalnom (rotirana zaglavlja)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertikalnom" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Izvrši upamćen upit" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Sortiraj po ključu" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Opcije" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Deo teksta" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Pun tekst" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "Relaciona shema" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Relaciona shema" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Tranformacije čitača" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Red je obrisan" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Obustavi" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "Može biti približno. Vidite FAQ 3.11" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "u upitu" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Prikaz zapisa" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "ukupno" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Upit je trajao %01.4f sekundi" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operacije na rezultatima upita" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Pogled za štampu (sa punim tekstom)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Prikaži PDF shemu" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Napravi relaciju" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Veza nije pronađena" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Poslata datoteka prevazilazi vrednost direktive upload_max_filesize u php." "ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2631,52 +2847,67 @@ msgstr "" "Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je " "navedena u HTML formi." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Poslata datoteka je samo delimično primljena." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Nedostaje privremeni direktorijum." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Neuspelo upisivanje datoteke na disk." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Prijem datoteke zaustavljen zbog ekstenzije." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Nepoznata greška pri slanju datoteke." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Greška u premeštanju primljene datoteke, pogledajte FAQ 1.11" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Otvori novi phpMyAdmin prozor" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Ključevi" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Jedinstveni" @@ -2689,8 +2920,8 @@ msgstr "" msgid "Cardinality" msgstr "Kardinalnost" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2712,131 +2943,131 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Baze" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktura" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Novi zapis" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operacije" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tabela je izgleda prazna!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Baza je izgleda prazna!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Upit po primeru" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilegije" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutine" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" msgstr "Događaji" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Dizajner" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Korisnik" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binarni dnevnik" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Promenljive" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Kodne strane" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Skladištenja" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Greška" @@ -2863,7 +3094,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Nema odabranih redova" msgstr[1] "Nema odabranih redova" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2960,16 +3191,108 @@ 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 +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 +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 +msgid "Value" +msgstr "Vrednost" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Pretraživanje" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Novi zapis" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Izaberi polja (najmanje jedno)" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Dodaj uslove pretraživanja (deo \"WHERE\" upita):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Broj redova po strani" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Redosled prikaza:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Pregledaj strane vrednosti" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "SQL upit" + +#: 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 "Napravi \"upit po primeru\" (džoker: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Napravi \"upit po primeru\" (džoker: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +msgid "How to use" +msgstr "verzija PHP-a" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Poništi" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nema ispravne putanje do slika za temu %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Pregled ne postoji." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "preuzmi" @@ -2988,7 +3311,7 @@ msgstr "Nije pronađena tema %s!" msgid "Theme path not found for theme %s!" msgstr "Nije pronađena putanja do teme za temu %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3286,13 +3609,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Ne mogu da se povežem: neispravna podešavanja." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Dobrodošli na %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3301,7 +3624,7 @@ msgstr "" "Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. " "Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3317,60 +3640,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Prijavljivanje" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Korisničko ime:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Lozinka:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Izbor servera" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Nije bilo aktivnosti %s ili više sekundi, molimo prijavite se ponovo" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Ne mogu da se prijavim na MySQL server" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Pogrešno korisničko ime/lozinka. Pristup odbijen." @@ -3402,7 +3719,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabele" @@ -3414,13 +3731,13 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Podaci" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Prekoračenje" @@ -3448,33 +3765,25 @@ msgstr "Proveri privilegije za bazu "%s"." msgid "Check Privileges" msgstr "Proveri privilegije" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\"" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3486,218 +3795,196 @@ msgstr "" "$cfg['PmaAbsoluteUri'] direktiva MORA biti podešena u " "konfiguracionoj datoteci!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Neispravan indeks servera: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Maksimalna veličina: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentacija" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL upit" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL reče: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Osveži" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Preskoči proveru SQL-a" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Proveri SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Skladištenja" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profilisanje" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutine" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Početak" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Prethodna" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Sledeći" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Kraj" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direktorijum za slanje veb servera " -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Štampaj" @@ -3729,8 +4016,8 @@ msgid "Closed" msgstr "Navodnik nije zatvoren" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Onemogućeno" @@ -3881,9 +4168,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Poništi" @@ -4097,10 +4384,6 @@ msgstr "Predloži strukturu tabele" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4159,7 +4442,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Sačuvaj kao datoteku" @@ -4169,7 +4452,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4288,7 +4571,7 @@ msgid "MIME type" msgstr "MIME-tipovi" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relacije" @@ -5846,9 +6129,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Lozinka" @@ -6124,12 +6407,6 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "Može biti približno. Vidite FAQ 3.11" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6138,18 +6415,18 @@ msgstr "" "nije uspela." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Promeni lozinku" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Nema lozinke" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Ponovite unos" @@ -6174,22 +6451,22 @@ msgstr "Napravi novu bazu podataka" msgid "Create" msgstr "Napravi" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Nema privilegija" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Ime" @@ -6385,25 +6662,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Verzija MySQL klijenta" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Napravi relaciju" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Napravi relaciju" @@ -6530,195 +6807,28 @@ msgstr "" msgid "Language" msgstr "Jezik" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -msgid "Save edited data" -msgstr "Osnovni direktorijum podataka" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Dodaj/obriši kolonu" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Sub" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "Broj polja" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Pon" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horizontalnom" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horizontalnom (rotirana zaglavlja)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertikalnom" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Izvrši upamćen upit" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Sortiraj po ključu" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Opcije" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Deo teksta" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Pun tekst" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "Relaciona shema" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Relaciona shema" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Tranformacije čitača" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Red je obrisan" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Obustavi" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "u upitu" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Prikaz zapisa" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "ukupno" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Upit je trajao %01.4f sekundi" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operacije na rezultatima upita" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Pogled za štampu (sa punim tekstom)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Prikaži PDF shemu" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Napravi relaciju" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Veza nije pronađena" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Informacije o verziji" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Osnovni direktorijum podataka" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "Zajednički deo putanje direktorijuma za sve InnoDB datoteke sa podacima." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Datoteke sa podacima" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Korak automatskog proširenja" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6726,11 +6836,11 @@ msgstr "" " Veličina koraka proširenja veličine tabela koje se automatski proširuju " "kada se napune." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Veličina prihvatnika" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6738,79 +6848,79 @@ msgstr "" "Veličina memorijskog prihvatnika koje InnoDB koristi za keširanje podataka i " "indeksa svojih tabela." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Skup prihvatnika" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB status" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Korišćenje skupa prihvatnika" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "strana" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Slobodne strane" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Prljave strane" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Strane sa podacima" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Strane koje treba da budu usklađene" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Zauzete strane" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Zabravljene strane" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Aktivnost skupa prihvatnika" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Zahtevi za čitanje" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Zahtevi za upis" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Promašaji pri čitanju" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Čekanja na upis" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Promašaji čitanja u %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Čekanja na upis u %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Veličina pokazivača podataka" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6818,11 +6928,11 @@ msgstr "" "Podrazumevana veličina pokazivača u bajtovima, koristi se pri CREATE TABLE " "za MyISAM tabele kada nije zadata opcija MAX_ROWS" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Režim automatskog oporavka" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6830,11 +6940,11 @@ msgstr "" "Režim automatskog oporavka puknutih MyISAM tabela, podešen pri startovanju " "servera opcijom --myisam-recover." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Maksimalna veličina privremenih datoteka za sortiranje" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6844,11 +6954,11 @@ msgstr "" "kreiranju MyISAM indeksa (u toku REPAIR TABLE, ALTER TABLE, ili LOAD DATA " "INFILE operacija)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Maksimalna veličina privremenih datoteka pri kreiranju indeksa" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6858,11 +6968,11 @@ msgstr "" "bila veća nego pri korišćenju keša ključeva za ovde zadatu vrednost, koristi " "metod keširanja ključeva" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Niti popravke" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6870,11 +6980,11 @@ msgstr "" "Ako je vrednost veća od 1, indeksi MyISAM tabela se paralelno kreiraju " "(svaki indeks u sopstvenoj niti) za vreme procesa popravke sortiranjem." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Veličina prihvatnika za sortiranje" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6882,73 +6992,73 @@ msgstr "" "Prihvatnik koji se alocira pri sortiranju MyISAM indeksa za vreme operacije " "REPAIR TABLE ili pri kreiranju indeksa sa CREATE INDEX ili ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 #, fuzzy msgid "Log cache size" msgstr "Veličina prihvatnika za sortiranje" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6956,49 +7066,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 #, fuzzy msgid "Log buffer size" msgstr "Veličina prihvatnika za sortiranje" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -7006,20 +7116,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Relacije" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -7079,14 +7189,14 @@ msgstr "Prikaz podataka tabele" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Događaji" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7156,14 +7266,14 @@ msgstr "Dostupni MIME-tipovi" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Domaćin" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Vreme kreiranja" @@ -7363,21 +7473,12 @@ msgstr "Pogled" msgid "Export contents" msgstr "Tip izvoza" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Otvori novi phpMyAdmin prozor" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7473,12 +7574,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Naziv tabele" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Imena kolona" @@ -7546,99 +7647,81 @@ msgstr "Mod SQL kompatibilnosti" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funkcija" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Sakrij" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binarni" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binarni - ne menjaj" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "direktorijum za slanje veb servera" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Novi zapis" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, 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:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "i onda" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 #, fuzzy msgid "Show insert query" msgstr "Prikaz kao SQL upit" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Vrati se na ovu stranu" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Uredi sledeći red" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Vrednost" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7655,36 +7738,36 @@ msgstr "nema" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Pet" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Pošalji" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Da li stvarno hoćete da " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Nema izmena" @@ -7896,93 +7979,93 @@ msgstr "" msgid "This format has no options" msgstr "Ne postoje opcije za ovaj format" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "nije u redu" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "U redu" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Omogućeno" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Opšte osobine relacija" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Prikaži osobine" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Pravljenje PDF-ova" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Prikazujem komentare kolone" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Tranformacije čitača" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Molimo pogledajte u dokumentaciji kako se ažurira tabela Column_comments" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Zapamćen SQL-upit" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL istorijat" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "nema opisa" @@ -7990,7 +8073,7 @@ msgstr "nema opisa" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -8002,13 +8085,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Ime korisnika" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Sortiranje" @@ -8024,7 +8107,7 @@ 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:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Promenljiva" @@ -8038,38 +8121,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Koristi tekst polje" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Bilo koji domaćin" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokalni" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Ovaj server" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Koristi tabelu domaćina" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8083,7 +8166,7 @@ msgstr "Napravi lozinku" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8115,102 +8198,103 @@ msgstr "Tabela %s je odbačena" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Event" msgid "Edit event" msgstr "Događaji" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Vrsta događaja" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Vrsta događaja" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Promeni" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Izvrši upamćen upit" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Status" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Kraj" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Kompletan INSERT (sa imenima polja)" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8241,7 +8325,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -8262,101 +8346,101 @@ msgstr "Tabela %s je odbačena" msgid "Routine %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Direktne veze" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Dužina/Vrednost*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Ukloni bazu" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Povratni tip" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Dužina/Vrednost*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcije tabele" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vrsta upita" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8364,19 +8448,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, 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:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8397,43 +8481,43 @@ msgstr "Tabela %s je odbačena" msgid "Trigger %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Dodaj novog korisnika" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Okidači" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Vreme" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Neispravan naziv tabele" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8539,7 +8623,7 @@ msgstr "Proveri tabelu" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8549,7 +8633,7 @@ msgstr "Tabela \"%s\" ne postoji!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8557,7 +8641,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Podesite koordinate za tabelu %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8569,27 +8653,27 @@ msgstr "Shema baze \"%s\" - Strana %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Relaciona shema" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Sadržaj" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atributi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Dodatno" @@ -8709,7 +8793,7 @@ msgstr "Nepoznat jezik: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Pretraživanje baze" @@ -8728,7 +8812,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Pretraživanje baze" @@ -8748,7 +8832,7 @@ msgstr "Izvrši SQL upit(e) na serveru %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" @@ -8760,11 +8844,11 @@ msgstr "Kalendar" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Zapamti SQL-upit" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" @@ -8859,7 +8943,7 @@ msgstr "" "SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane " "neophodne PHP ekstenzije opisane u %sdokumentaciji%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8892,8 +8976,8 @@ msgstr "" "navodnika u ovom obliku: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Ključ" @@ -8947,13 +9031,13 @@ msgstr "nema" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primarni" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Tekst ključ" @@ -8967,20 +9051,20 @@ msgstr "" msgid "after %s" msgstr "Posle %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, 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:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Morate dodati barem jedno polje." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Pogon skladištenja" @@ -8988,45 +9072,6 @@ msgstr "Pogon skladištenja" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Pretraživanje" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Izaberi polja (najmanje jedno)" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Dodaj uslove pretraživanja (deo \"WHERE\" upita):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Broj redova po strani" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Redosled prikaza:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Pregledaj strane vrednosti" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Napravi \"upit po primeru\" (džoker: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9212,13 +9257,13 @@ msgstr "" msgid "Manage your settings" msgstr "Opšte osobine relacija" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Izmene su sačuvane" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9231,7 +9276,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\"" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9262,7 +9307,7 @@ msgstr "Sortiranje za MySQL vezu" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9288,9 +9333,9 @@ msgstr "Verzija servera" msgid "Protocol version" msgstr "Verzija protokola" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Korisnik" @@ -9422,147 +9467,147 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Baza ne postoji" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "naziv tabele" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "naziv tabele" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Napravi tabelu" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Izaberite bazu" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Prikaži/sakrij meni s leve strane" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Sačuvaj poziciju" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Napravi relaciju" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Ponovo učitaj" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Pomoć" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Uglaste veze" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Direktne veze" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Drži se mreže" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Sve malo/veliko" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Promeni malo/veliko" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "Da odaberete relaciju, kliknite :" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Izvoz/uvoz koordinata za PDF shemu" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Izvrši SQL upit" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Premesti meni" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Sakrij/prikaži sve" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Sakrij/prikaži tabele bez relacija" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Broj tabela" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Obriši relaciju" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Relacija obrisana" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Izvoz" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "u upitu" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Promeni ime tabele u " -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Ime korisnika" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Napravi" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9577,61 +9622,61 @@ msgstr "Tabela %s je odbačena" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "strana" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Uvoz datoteka" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Izvor/uvoz u razmeri" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Napravi novi ključ" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Ime korisnika" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Izvor/uvoz u razmeri" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "preporučeno" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Greška: relacija već postoji." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Greška: relacija nije dodata." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Dodata interna relacija" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relacija obrisana" @@ -9643,91 +9688,91 @@ msgstr "Greška pri snimanju koordinata za Dizajner." msgid "Modifications have been saved" msgstr "Izmene su sačuvane" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\"" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Uvoz datoteka" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Uvoz datoteka" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Sve" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela nije pronađena ili nije postavljena u %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9737,17 +9782,17 @@ msgstr "Tabela \"%s\" ne postoji!" msgid "Select binary log to view" msgstr "Izaberite binarni dnevnik za pregled" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Datoteke" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -9763,7 +9808,7 @@ msgstr "Pozicija" msgid "Original position" msgstr "Originalna pozicija" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Informacije" @@ -9771,7 +9816,7 @@ msgstr "Informacije" msgid "Character Sets and Collations" msgstr "Karakter setovi i sortiranje" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9780,24 +9825,24 @@ msgstr[0] "%s baza je uspešno odbačeno." msgstr[1] "%s baza je uspešno odbačeno." msgstr[2] "%s baza je uspešno odbačeno." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Statistika baze" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Uključi statistike" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9809,156 +9854,156 @@ msgstr "" msgid "Storage Engines" msgstr "Pogoni skladištenja" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Početak" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "Persijski" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Onemogućeno" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmenu struktura postojećih tabela." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Dozvoljava pravljenje sačuvanih rutina." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dozvoljava pravljenje, odbacivanje i preimenovanje korisničkih naloga." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Dozvoli kreiranje novih pogleda." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Dozvoljava izvršavanje sačuvanih rutina." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dozvoljava dodavanje korisnika i privilegija bez ponovnog učitavanja tabela " "privilegija." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamenu podataka." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Ograničava broj upita koje korisnik može da uputi serveru za sat." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9966,59 +10011,59 @@ msgstr "" "Ograničava broj komandi koje menjaju tabele ili baze koje korisnik može da " "izvrši na sat." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dozvoljava izvršavanje SHOW CREATE VIEW upita." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -10028,173 +10073,173 @@ msgstr "" "Neophodno za većinu administrativnih opcija kao što su podešavanje globalnih " "promenljivih ili prekidanje procesa ostalih korisnika." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Dozvoljava kreiranje i brisanje ključeva." -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Nema privilegija." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "nema" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globalne privilegije" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Ograničenja resursa" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Napomena: Postavljanje ovih opcija na 0 (nulu) uklanja ograničenja." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Podaci o prijavi" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Nemoj da menjaš lozinku" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Korisnik nije nađen." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Korisnik %s već postoji!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Ažurirali ste privilegije za %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Zabranili ste privilegije za %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Lozinka za %s je uspešno promenjena." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Brišem %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Nijedan korisnik nije odabran za brisanje!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Ponovo učitavam privilegije" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Izabrani korisnici su uspešno obrisani." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Promeni privilegije" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Zabrani" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Izvoz" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Privilegije" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegije" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Pregled korisnika" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Omogući" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10207,143 +10252,143 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na sledećoj bazi" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na sledećoj tabeli" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... obriši stare iz tabela korisnika." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 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:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Baza za korisnika" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Proveri privilegije za bazu "%s"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "globalno" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "Specifično za bazu" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "džoker" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "Pogled %s je odbačen" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Privilegije su uspešno ponovo učitane." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 #, fuzzy msgid "Show master status" msgstr "Prikaži status podređenih servera" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10352,273 +10397,273 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Izaberite bazu" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Tekst ključ" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full stop" msgstr "Tekst ključ" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Samo struktura" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Samo struktura" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Proces %s je uspešno prekinut." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin nije mogao da prekine proces %s. Verovatno je već zatvoren." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Rukovalac" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Keš upita" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Niti" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Privremeni podaci" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Odložena umetanja" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Keš ključeva" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Spojevi" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Sortiranje" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Koordinator transakcija" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Očisti (zatvori) sve tabele" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Prikaži otvorene tabele" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Prikaži podređene server" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Prikaži status podređenih servera" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Očisti keš upita" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Informacije o toku rada" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Osveži" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Datoteke" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Nemoj da menjaš lozinku" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Prikaži otvorene tabele" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Prikaži otvorene tabele" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Relacije" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Vrsta upita" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Funkcije" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10626,57 +10671,57 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Ime" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10684,47 +10729,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Primljeno" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Poslato" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "maks. istovremenih veza" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Naredba" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -10734,16 +10779,16 @@ msgstr "" "prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da " "smeste izraze iz transakcije." -#: server_status.php:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10755,11 +10800,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Koliko privremenih datoteka je mysqld napravio." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10767,7 +10812,7 @@ msgstr "" "Broj privremenih tabela koje je server automatski kreirao u memoriji dok je " "izvršavao izraze." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10775,7 +10820,7 @@ msgstr "" "Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška " "(verovatno duplirani ključ)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10783,23 +10828,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Broj upisanih INSERT DELAYED redova." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih FLUSH izraza." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Broj internih COMMIT izraza." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Broj brisanja nekog reda tabele." -#: server_status.php:1334 +#: 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 " @@ -10809,7 +10854,7 @@ msgstr "" "tabelu određenog imena. To se naziva otkrivanjem (discovery). " "Handler_discover označava broj puta kada je otkrivena tabela." -#: server_status.php:1335 +#: 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, " @@ -10819,7 +10864,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:1336 +#: server_status.php:1335 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." @@ -10827,7 +10872,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:1337 +#: server_status.php:1336 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 " @@ -10837,7 +10882,7 @@ msgstr "" "kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite " "skeniranje indeksa." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10845,7 +10890,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:1339 +#: 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 " @@ -10857,7 +10902,7 @@ msgstr "" "mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve " "koji ne koriste ključeve propisno." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10869,35 +10914,35 @@ msgstr "" "nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već " "postojeće indekse." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih ROLLBACK izraza." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Broj zahteva za ažuriranje reda u tabeli." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Broj zahteva za upisivanje reda u tabelu." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Broj strana koje su trenutno prljave." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Broj slobodnih strana." -#: server_status.php:1348 +#: 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 " @@ -10907,7 +10952,7 @@ msgstr "" "čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene " "niti uklonjene." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10919,11 +10964,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:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Puna veličina ostave bafera, u stranama." -#: server_status.php:1351 +#: 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." @@ -10931,7 +10976,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:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10939,11 +10984,11 @@ msgstr "" "Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "InnoDB radi sekvencijalno skeniranje cele tabele." -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio." -#: server_status.php:1354 +#: 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." @@ -10951,7 +10996,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:1355 +#: server_status.php:1354 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 " @@ -10965,55 +11010,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:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj upisa učinjenih u InnoDB ostavu bafera." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Broj fsync() operacija do sada." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Trenutni broj fsync() operacija na čekanju." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Trenutni broj čitanja na čekanju." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Trenutni broj upisa na čekanju." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do sada, u bajtovima." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Ukupan broj čitanja podataka." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Ukupan broj upisa podataka." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka upisanih do sada, u bajtovima" -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -11021,35 +11066,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Broj zahteva za upis u dnevnik." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih upisa u datoteku dnevnika." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Broj fsync-ova za datoteku dnevnika na čekanju." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Broj upisa u datoteku dnevnika na čekanju." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Broj bajtova upisanih u datoteku dnevnika." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Broj napravljenih strana." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -11058,52 +11103,52 @@ msgstr "" "vrednosti se računaju u stranama; veličina strane omogućava da se one lako " "konvertuju u bajtove." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Broj pročitanih strana." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Broj zapisanih strana." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Broj brava za redove koje se trenutno čekaju." -#: server_status.php:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redova obrisanih iz InnoDB tabela." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redova umetnutih u InnoDB tabele." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Broj redova pročitanih iz InnoDB tabela." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Broj redova ažuriranih u InnoDB tabelama." -#: server_status.php:1387 +#: 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." @@ -11111,7 +11156,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:1388 +#: 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." @@ -11119,7 +11164,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:1389 +#: server_status.php:1388 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 " @@ -11129,17 +11174,17 @@ msgstr "" "vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u " "isto vreme." -#: server_status.php:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Format datoteka za uvoz" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -11149,26 +11194,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:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -11178,17 +11223,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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11196,39 +11241,39 @@ msgstr "" "Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je " "verovatno premali." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Broj otvorenih tabela." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za keš upita." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Broj pogodaka iz keša." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Broj upita dodatih u keš." -#: server_status.php:1408 +#: 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 " @@ -11240,7 +11285,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:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11248,19 +11293,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:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Broj upita registrovanih u kešu." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u kešu za upite." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status replikacije otporne na greške (nije još implementirano)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -11268,11 +11313,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -11281,7 +11326,7 @@ msgstr "" "reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših " "tabela.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11289,15 +11334,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11305,11 +11350,11 @@ msgstr "" "Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju " "pokušala transakcije." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11317,12 +11362,12 @@ msgstr "" "Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile " "pokrenute." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11332,23 +11377,23 @@ msgstr "" "Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti " "sistemske promenljive sort_buffer_size." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Broj sortiranja koja su urađena sa opsegom." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Broj sortiranih redova." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -11360,7 +11405,7 @@ msgstr "" "bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili " "tabele ili da koristite replikaciju." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11370,11 +11415,11 @@ msgstr "" "Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate " "vaš thread_cache_size." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11386,70 +11431,70 @@ msgstr "" "implementaciju niti, ovo obično ne donosi primetna poboljšanja u " "performansama.)" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Praćenje nije aktivno." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Broj niti koje nisu uspavane." -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sub" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Dodaj %s polja" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Osveži" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/obriši kolonu" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11458,7 +11503,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11466,18 +11511,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11485,11 +11530,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11497,92 +11542,92 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Ukloni bazu" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Izaberi tabele" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Neispravan naziv tabele" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Dodaj novog korisnika" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "SQL upit" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Statistike reda" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Izaberi tabele" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Vrsta upita" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -11591,7 +11636,7 @@ msgstr[0] "u sekundi" msgstr[1] "u sekundi" msgstr[2] "u sekundi" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11600,133 +11645,133 @@ msgstr[0] "se koristi" msgstr[1] "se koristi" msgstr[2] "se koristi" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 #, fuzzy msgid "Structure Difference" msgstr "Struktura za pogled (view)" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 #, fuzzy msgid "Data Difference" msgstr "Struktura za pogled (view)" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL upit" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "maks. istovremenih veza" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Serverske promenljive i podešavanja" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Vrednost sesije" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Globalna vrednost" @@ -12019,180 +12064,180 @@ msgstr "" msgid "Wrong data" msgstr "Baza ne postoji" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Da li stvarno hoćete da " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Prikaz kao PHP kod" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Proveri SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL rezultat" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Generisao" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem pri indeksiranju tabele `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Naziv" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspešno obrisani." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Izabrani korisnici su uspešno obrisani." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "mar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Kolona" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Skladištenja" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Naslov izveštaja" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "SQL upit" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Vrednost" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Vrednost" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Tabela %s već postoji!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "Tabela %s je odbačena" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Prikaži sadržaj (shemu) tabele" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Dodaj/obriši kolonu" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Ukupno" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Sačuvaj kao datoteku" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12210,30 +12255,30 @@ msgstr "Ne mogu da promenim ključ u PRIMARY (primarni) !" msgid "No index parts defined!" msgstr "Delovi ključa nisu definisani!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Print view" msgid "Edit index" msgstr "Za štampu" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Ime ključa :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" mora biti ime samo primarnog ključa!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Tip ključa :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Dodaj u ključ  %s kolona(e)" @@ -12256,277 +12301,277 @@ msgstr "Tabela %s je pomerena u %s." msgid "Table %s has been copied to %s." msgstr "Tabela %s je kopirana u %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Ima tabele je prazno!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Promeni redosled u tabeli" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(po jednom polju)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Pomeri tabelu u (baza.tabela):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Opcije tabele" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Promeni ime tabele u" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopiraj tabelu u (baza.tabela):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Pređi na kopiranu tabelu" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Radnje na tabeli" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmentiraj tabelu" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabela %s je osvežena" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Osveži tabelu (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Prikaz podataka tabele" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Baza ne postoji" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Radnje na tabeli" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 #, fuzzy msgid "Check" msgstr "Češki" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Popravi" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Proveri referencijalni integritet:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Prikaži tabele" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Zauzeće" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Efektivne" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Statistike reda" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamički" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Dužina reda" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Veličina reda" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Unutrašnje relacije" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Pregledaj različite vrednosti" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "nema" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Tabela %s je odbačena" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Primarni ključ je upravo dodat %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Ključ je upravo dodat %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Prikaži informacije o PHP-u" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "Dodaj %s polja" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Za štampu" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Relacioni pogled" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Predloži strukturu tabele" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "Dodaj %s polja" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Na kraju tabele" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Na početku tabele" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Posle %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12684,74 +12729,40 @@ msgstr "" msgid "Create version" msgstr "Napravi relaciju" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Napravi \"upit po primeru\" (džoker: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "SQL upit" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -msgid "How to use" -msgstr "verzija PHP-a" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Poništi" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Dostupni MIME-tipovi" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-tipovi prikazani u kurzivu nemaju odvojene funkcije transformacije." -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Dostupne transformacije" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Opis" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Nije Vam dozvoljeno da budete ovde!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profil je promenjen." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "naziv za VIEW" diff --git a/po/sv.po b/po/sv.po index 56195e5f7f..502212eb63 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,8 +3,8 @@ 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-04 13:49+0200\n" -"PO-Revision-Date: 2012-06-05 20:53+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"PO-Revision-Date: 2012-06-22 13:11+0200\n" "Last-Translator: ProUser \n" "Language-Team: swedish \n" "Language: sv\n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Visa alla" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Sida:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "fönstret, eller så är din webbläsares säkerhetsinställningar konfigurerade " "för att blockera flerfönster uppdateringar." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Kör" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Nyckelnamn" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Beskrivning" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Använd detta värde" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Databas %1$s har skapats." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Databaskommentar" -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Tabellkommentarer" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Kolumn" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Standardvärde" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Länkar till" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Kommentarer" @@ -197,14 +198,14 @@ msgstr "Kommentarer" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Nej" @@ -217,120 +218,120 @@ msgstr "Nej" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ja" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Visa dump (schema) av databasen" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Inga tabeller funna i databasen." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Välj alla" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Avmarkera alla" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Databasens namn är tomt!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "Databasen %1$s har bytt namn till %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "Databasen %1$s har kopierats till %2$s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Byt namn på databasen till" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Radera databasen" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Databasen %s har tagits bort." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Tag bort databasen (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Kopiera databasen till" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Enbart struktur" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Struktur och data" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Enbart data" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE före kopiering" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Lägg till %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Addera AUTO_INCREMENT värde" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Lägg till restriktioner" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Byt till den kopierade databasen" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Kollationering" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -338,59 +339,59 @@ msgid "" msgstr "" "Konfigurationsschemat för phpMyAdmin har avaktiverats. %sVisa orsaken%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Editera eller exportera relationsschema" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tabell" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Rader" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Storlek" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "används" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Skapande" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Senaste uppdatering" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Senaste kontroll" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -401,395 +402,396 @@ msgstr[1] "%s tabeller" msgid "You have to choose at least one column to display" msgstr "Du måste välja minst en kolumn som ska visas" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Växla till %sgrafisk modellerare%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sortera" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Stigande" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Fallande" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Visa" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriterier" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Infoga" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Och" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Ta bort" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Eller" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Ändra" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Lägg till/Ta bort villkorsrader" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Lägg till/Ta bort kolumner" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Uppdatera fråga" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Använd tabeller" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-fråga i databas %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Skicka fråga" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Åtkomst nekad" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "minst ett av orden" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "alla ord" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "den exakta frasen" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "som reguljärt uttryck" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Sök resultat för \"%s\"%s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, 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:289 +#: db_search.php:292 msgid "Search in database" msgstr "Sök i databas" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Ord eller värden att söka efter (jokertecken: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Hitta:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Ord separeras av ett mellanslag (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Inuti tabeller:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Inuti kolumnen:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Det finns inga tabeller i databasen" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "okänd" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Tabellen %s har tömts" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Vyn %s har tagits bort" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Tabellen %s har tagits bort" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Spårning är aktiv." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Spårning är inaktiv." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Vy" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikering" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Summa" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Med markerade:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Markera alla" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Kontrollera tabeller med overhead" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportera" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Töm" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Radera" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Kontrollera tabell" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Optimera tabell" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Reparera tabell" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Analysera tabell" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Lägg till prefix till tabellen" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Ersätt tabellprefix" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Kopiera tabell med prefix" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Datalexikon" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Spårade tabeller" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Databas" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Senaste versionen" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Skapad" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Uppdaterad" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Status" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Åtgärd" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ta bort spårning för denna tabell" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "aktiv" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "inaktiv" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Versioner" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Spårningsrapport" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Ögonblicksbild på strukturen" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Ej spårade tabeller" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Spåra tabell" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Databas logg" @@ -801,16 +803,16 @@ msgstr "Dålig typ!" msgid "Selected export type has to be saved in file!" msgstr "Vald exporttyp måste sparas till fil!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Felaktiga parametrar!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Otillräckligt utrymme för att spara filen %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -818,12 +820,12 @@ msgstr "" "Filen %s finns redan på servern, ändra filnamnet eller kontrollera ersätt " "alternativet." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Webbservern har inte behörighet att spara filen %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump har sparats till filen %s." @@ -832,86 +834,86 @@ msgstr "Dump har sparats till filen %s." msgid "Invalid export type" msgstr "Ogiltig export-typ" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Värde för kolumn \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Använd OpenStreetMaps som baslager" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Punkt" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Punkt %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Lägg till en punkt" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Linestring" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Yttre ringen" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Inre ringen" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Lägg till ny linestring" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Lägg till ny inre ring" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Polygon" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Addera polygon" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Addera geometri" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Utdata" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -919,7 +921,7 @@ msgstr "" "Välj \"GeomFromText\" från \"Funktions\"-kolumnen och klistra in " "nedanstående sträng i \"Value\"-fältet" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -928,21 +930,21 @@ 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." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Visar bokmärke" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Bokmärket har tagits bort." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Filen kunde inte läsas" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -951,7 +953,7 @@ msgstr "" "Du försökta ladda en fil med en komprimering (%s) som inte stöds. Antingen " "är detta inte implementerat, eller inaktiverat i din konfiguration." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -961,28 +963,28 @@ msgstr "" "översteg filens storlek den maximalt tillåtna storleken i din PHP-" "konfiguration. Se [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Kan inte konvertera filens teckenuppsättning utan teckenuppsättningens " "omvandlingsbibliotek" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Kunde inte läsa in tillägg för import, kontrollera din installation!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Bokmärket %s har skapats" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Importen har slutförts korrekt, %d frågor utförda." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -990,7 +992,7 @@ msgstr "" "Skriptets tidsbegränsning har överskridits. Om du vill slutföra importen, " "importera samma fil igen så kommer importen att återupptas." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -999,23 +1001,23 @@ msgstr "" "att phpMyAdmin inte kan slutföra denna import såvida du inte ökar PHP:s " "tidsbegränsningar." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Föregående" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin fungerar bättre med en webbläsare som hanterar ramar." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" satserna är inaktiverade." @@ -1024,7 +1026,7 @@ msgstr "\"DROP DATABASE\" satserna är inaktiverade." msgid "Do you really want to execute \"%s\"?" msgstr "Vill du verkligen exekvera \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Du är på väg att RADERA en hel databas!" @@ -1064,7 +1066,7 @@ msgstr "Addera index" msgid "Edit Index" msgstr "Redigera index" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Lägg till %d kolumner till index" @@ -1082,16 +1084,16 @@ msgstr "Värdnamnet är tomt!" msgid "The user name is empty!" msgstr "Användarnamnet saknas!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Lösenordet saknas!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Lösenorden överensstämmer inte!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Lägg till en användare" @@ -1108,23 +1110,24 @@ msgstr "Tar bort valda användare" msgid "Close" msgstr "Stäng" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Redigera" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Live trafik diagram" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Live anslutning/process diagram" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Live sökfrågediagram" @@ -1134,24 +1137,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Totalt" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Annan" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1171,7 +1174,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Processer" @@ -1189,7 +1192,7 @@ msgstr "Frågor sedan senaste uppdatering" msgid "Questions (executed statements by the server)" msgstr "Frågor (utförda kommandon från servern)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Visa statistik" @@ -1234,14 +1237,14 @@ msgid "System swap" msgstr "System swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "Mb" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "kB" @@ -1293,32 +1296,32 @@ msgstr "Antal bitar som skickats" msgid "Bytes received" msgstr "Antal mottagna bital" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Anslutningar" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "bytes" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1332,11 +1335,11 @@ msgstr "%d tabell(er)" msgid "Questions" msgstr "Frågor" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Inställningar" @@ -1356,11 +1359,11 @@ msgstr "Addera diagrammet till rutnätet" msgid "Please add at least one variable to the series" msgstr "Lägg till minst en variabel till serien" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Inget" @@ -1460,7 +1463,7 @@ msgstr "Ändra inställningar" msgid "Current settings" msgstr "Nuvarande inställningar" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Diagramtitel" @@ -1543,7 +1546,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Tid" @@ -1637,10 +1640,10 @@ msgstr "" "Misslyckades skapa diagrammets rutnät med den importerade configurationen. " "Återställer till ursprunglig konfiguration ..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importera" @@ -1688,9 +1691,9 @@ msgstr "Använd variabel / formel" msgid "Test" msgstr "Test" -#: 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 +#: 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 msgid "Cancel" msgstr "Avbryt" @@ -1702,11 +1705,11 @@ msgstr "Laddar" msgid "Processing Request" msgstr "Processa begäran" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Fel i processbegäran" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Inga databaser markerade." @@ -1718,9 +1721,9 @@ msgstr "Tar bort kolumn" msgid "Adding Primary Key" msgstr "Lägger till primär nyckel" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1760,15 +1763,15 @@ msgstr "Dölj index" msgid "Show indexes" msgstr "Visa index" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Kontroll av sekundärnyckel:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Aktiverad)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Inaktiverad)" @@ -1797,7 +1800,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET editor" @@ -1837,8 +1840,8 @@ msgstr "Visa frågerutan" msgid "No rows selected" msgstr "Inga rader valda" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Ändra" @@ -1846,18 +1849,18 @@ msgstr "Ändra" msgid "Query execution time" msgstr "Exekveringstid för frågor" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Spara" @@ -1869,7 +1872,7 @@ msgstr "Dölj sökkriterier" msgid "Show search criteria" msgstr "Visa sökkriterier" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Zoom sökning" @@ -1886,7 +1889,6 @@ msgid "To zoom in, select a section of the plot with the mouse." msgstr "För att zooma in, välja en del av grafen med musen." #: 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 "" "Klicka på återställningsknappen för att komma tillbaka till ursprungsläget." @@ -1915,12 +1917,12 @@ msgstr "Frågeresultat" msgid "Data point content" msgstr "Innehåll för datapunkt" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ignorera" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Kopiera" @@ -1940,7 +1942,7 @@ msgstr "Välj främmande nyckel" msgid "Please select the primary key or a unique key" msgstr "Välj den primära nyckeln eller en unik nyckel" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Välj kolumn att visa" @@ -2032,7 +2034,7 @@ msgstr "Generera" msgid "Change Password" msgstr "Ändra lösenord" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Mera" @@ -2123,63 +2125,63 @@ msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "dec" @@ -2217,32 +2219,32 @@ msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Lör" @@ -2357,16 +2359,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "per sekund" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "per minut" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "per timme" @@ -2388,20 +2390,205 @@ msgstr "" msgid "Font size" msgstr "Teckenstorlek" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Spara editerade data" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Återställ ordningen på kolumner" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Starta" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Föregående" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Nästa" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Slut" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Starta rad" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Antal rader" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Läge" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "horisontell" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "horisontell (roterade rubriker)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertikal" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "Rubriker var %s rad" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Sortera efter nyckel" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Alternativ" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Förkortade texter" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Kompletta texter" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Besläktad nyckel" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Kolumn för besläktad nyckel" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Visa binärt innehåll" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "Visa BLOB-innehåll" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Visa binärt innehåll som HEX" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Dölj webbläsarens transformation" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Välkänd text" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Välkänd binär" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Raden har raderats" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Döda" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Kan vara ungefärligt. Se [a@./Documentation.html#faq3_11@Documentation)FAQ " +"3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "i fråga" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Visar rader" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "totalt" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Frågan tog %01.4f sek" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Operationer för frågeresultat" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Utskriftsvänlig version (med fullständiga texter)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "Visa diagram" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "Visualisera GIS-data" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Skapa vy" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Länken hittades inte" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "För många felmeddelanden, en del kommer inte visas." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Filen var inte en uppladdad fil." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Den uppladdade filen överskrider direktivet upload_max_filesize i php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2409,52 +2596,65 @@ msgstr "" "Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades " "i HTML-formuläret." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Den uppladdade filen blev endast delvis uppladdad." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Saknar en temporär katalog." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Misslyckades att skriva fil till disk." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Filuppladdning stoppades av tillägg." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Okänt fel i filuppladdning." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Fel vid flytt av uppladdad fil, se FAQ 1.11" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Fel när du flyttar uppladdad fil." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Kan inte läsa (flyttad) uppladdad fil." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Öppna nytt phpMyAdmin-fönster" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Kakor (cookies) måste tillåtas för att gå vidare." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Index" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unik" @@ -2467,8 +2667,8 @@ msgstr "Packad" msgid "Cardinality" msgstr "Kardinalitet" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Kommentar" @@ -2491,128 +2691,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Databaserna" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Struktur" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Lägg till" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operationer" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Spårning" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tabellen verkar vara tom!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Databasen verkar vara tom!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Fråga" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilegier" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Rutiner" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Händelser" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Designer" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Användarna" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Synkronisera" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binär logg" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Variabler" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Teckenuppsättningar" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Insticksprogram" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Motorer" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Fel" @@ -2637,7 +2837,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d rad infogad." msgstr[1] "%1$d rader infogade." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Fel när PDF skapas:" @@ -2731,16 +2931,97 @@ 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 +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 +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 +msgid "Value" +msgstr "Värde" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Tabellsök" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Redigera / Infoga" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Markera kolumner (minst en):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Lägg till sökvillkor (uttryck i \"where\"-sats):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Anntal rader per sida" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Visningsordning:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Använd denna kolumn för att markera varje punkt" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Maximalt antal rader att visa" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Bläddra bland främmande värden" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "Ytterligare sökkriterier" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" +"Utför en \"Query By Example\" (jokertecken: \"%\") för två olika kolumner" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Utför en \"Query By Example\" (jokertecken: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Bläddra / Redigera punkter" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Hur du använder" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "Återställ zoom" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Ingen giltig sökväg för tema %s hittades!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Ingen förhandsgranskning tillgänglig." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "använd detta" @@ -2759,7 +3040,7 @@ msgstr "Tema %s hittades inte!" msgid "Theme path not found for theme %s!" msgstr "Temats sökväg för tema %s hittades inte!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Tema" @@ -3110,13 +3391,13 @@ msgstr "En uppräkning, vald från listan av definierade värden" msgid "Cannot connect: invalid settings." msgstr "Kan ej skapa förbindelse: ogiltiga inställningar." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Välkommen till %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3125,7 +3406,7 @@ msgstr "" "Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda " "%1$suppsättningsskript%2$s för att skapa denna." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3141,40 +3422,36 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Misslyckades med att använda Blowfish från mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Javascript måste vara aktiverat efter detta" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "Din session har gått ut. Vänligen logga in igen." -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Logga in" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Du kan ange värdnamn/IP-adress och port separerade med mellanslag." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Användarnamn:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Lösenord:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Välj server" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Kakor (cookies) måste tillåtas för att gå vidare." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3182,19 +3459,19 @@ msgstr "" "Inloggning utan lösenord är inte tillåtet enligt konfiguration (se " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Ingen aktivitet sedan %s sekunder; var god logga in igen" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Kan ej logga in på MySQL-server" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Felaktigt användarnamn/lösenord. Åtkomst nekad." @@ -3226,7 +3503,7 @@ msgstr "delad" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tabeller" @@ -3238,13 +3515,13 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Data" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Outnyttjat" @@ -3269,19 +3546,11 @@ msgstr "Kontrollera privilegier för databas "%s"." msgid "Check Privileges" msgstr "Kontrollera privilegier" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "möjlig exploatering" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "numerisk tangent upptäckt" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Kunde inte läsa konfigurationsfilen" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3289,12 +3558,12 @@ msgstr "" "Detta betyder oftast att det finns ett syntaxfel i det, kontrollera " "eventuella fel som visas nedan." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Kunde inte ladda standardkonfiguration från: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3302,204 +3571,190 @@ msgstr "" "Direktivet[code]$cfg['PmaAbsoluteUri'][/code] MÅSTE definieras i " "konfigurationsfilen!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Ogiltigt serverindex: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Ogiltig metod för verifiering angiven i konfiguration:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Du bör uppgradera till %s %s eller senare." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "Globals överskrivningsförsök" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "möjlig exploatering" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "numerisk tangent upptäckt" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentation" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-fråga" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Lyckades inte ansluta till SQL validerare!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Förklara SQL-kod" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Utan SQL-förklaring" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "Utan PHP-kod" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Skapa PHP-kod" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Uppdatera" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Hoppa över SQL-validering" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Validera SQL-kod" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Redigera denna fråga" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Infogad" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profilering" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Sön" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y kl %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagar, %s timmar, %s minuter och %s sekunder" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Saknade parametrar:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Starta" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Föregående" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Nästa" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Slut" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Hoppa till databas "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Klicka för att växla" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Gå igenom din dator:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format 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:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Det finns inga filer att ladda upp" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Utför" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Skriv ut" @@ -3529,8 +3784,8 @@ msgid "Closed" msgstr "Stängd" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Inaktiverad" @@ -3673,9 +3928,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Återställ" @@ -3899,10 +4154,6 @@ msgstr "Dölj åtgärder för tabellstruktur" msgid "Show binary contents as HEX by default" msgstr "Visa binärt innehåll som HEX som standard" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Visa binärt innehåll som HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Visa databas som en lista i stället för en drop-down" @@ -3959,7 +4210,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Maximal exekveringstid" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Spara som fil" @@ -3968,7 +4219,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4072,7 +4323,7 @@ msgid "MIME type" msgstr "MIME-typ" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Relationer" @@ -5660,9 +5911,9 @@ msgstr "Kräver att SQL Validator är aktiverad" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Lösenord" @@ -5947,32 +6198,24 @@ msgstr "Kontrollera privilegierna för katalogen som innehåller databasen." msgid "Details..." msgstr "Detaljer..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Kan vara ungefärligt. Se [a@./Documentation.html#faq3_11@Documentation)FAQ " -"3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "Uppkoppling för controluser enligt din konfiguration misslyckades." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Byt lösenord" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Inget lösenord" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Skriv igen" @@ -5993,22 +6236,22 @@ msgstr "Skapa databas" msgid "Create" msgstr "Skapa" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Inga privilegier" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Namn" @@ -6164,25 +6407,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Omkodning:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "%1$s från %2$s grenen" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "ingen gren" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Git revision" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "inlaggd %1$s av %2$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "Skriven den %1$s av %2$s" @@ -6301,173 +6544,27 @@ msgstr "Format-specifika alternativ:" msgid "Language" msgstr "Språk" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Spara editerade data" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Återställ ordningen på kolumner" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Starta rad" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Antal rader" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Läge" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "horisontell" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "horisontell (roterade rubriker)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertikal" - -#: libraries/display_tbl.lib.php:636 -#, php-format -#| msgid "Headers every" -msgid "Headers every %s rows" -msgstr "Rubriker var %s rad" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Sortera efter nyckel" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Alternativ" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Förkortade texter" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Kompletta texter" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Besläktad nyckel" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Kolumn för besläktad nyckel" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Visa binärt innehåll" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "Visa BLOB-innehåll" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Dölj webbläsarens transformation" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Välkänd text" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Välkänd binär" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Raden har raderats" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Döda" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "i fråga" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Visar rader" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "totalt" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Frågan tog %01.4f sek" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Operationer för frågeresultat" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Utskriftsvänlig version (med fullständiga texter)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Visa diagram" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "Visualisera GIS-data" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Skapa vy" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Länken hittades inte" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Versionsinformation" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Hemkatalog för data" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Den gemensamma delen av sökvägen för alla InnoDB-datafiler." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Datafiler" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Automatisk utökningsstorlek" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6475,11 +6572,11 @@ msgstr "" "Tillökningsstorleken vid automatisk utökning av tabellutrymme när det blir " "fullt." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Buffertstorlek" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6487,79 +6584,79 @@ msgstr "" "Storleken på minnesbufferten som InnoDB använder för cache av data och index " "till sina tabeller." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Buffertutrymme" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB-status" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Buffertanvändning" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "sidor" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Fria sidor" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Orena sidor" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Sidor innehållande data" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Sidor att rensa" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Upptagna sidor" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Låsta sidor" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Buffert Pool aktivitet" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Läsförfrågningar" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Skrivförfrågningar" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Läsmissar" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Skrivväntanden" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Läsmissar i %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Skrivväntanden i %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Storlek för datapekare" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6567,11 +6664,11 @@ msgstr "" "Standardpekarens storlek i bytes, vilken används av CREATE TABLE för MyISAM-" "tabeller när inget MAX_ROWS-alternativ är specificerat." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Automatisk återställningsläge" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6579,11 +6676,11 @@ msgstr "" "Inställningen för automatisk återställning av kraschade MyISAM-tabeller, som " "satts via serverns startparameter --myisam-recover." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Maximal storlek för temporära sorteringsfiler" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6593,11 +6690,11 @@ msgstr "" "använda under återskapande av MyISAM-index (vid REPAIR TABLE, ALTER TABLE, " "eller LOAD DATA INFILE)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Maximal storlek för temporära filer vid skapande av index" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6607,11 +6704,11 @@ msgstr "" "skulle vara större än att använda nyckelcachen vars storlek specificeras " "här, så föredras metoden med nyckelcachen." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Reparera trådar" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6619,11 +6716,11 @@ msgstr "" "Om detta värde är större än 1 skapas MyISAM-tabellindex parallellt (varje " "index i sin egen tråd) under reparationen vid sorteringsprocess." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Storlek för sorteringsbuffert" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6631,11 +6728,11 @@ msgstr "" "Bufferten som allokeras vid sortering av MyISAM-index under REPAIR TABLE " "eller vid skapande av index med CREATE INDEX eller ALTER TABLE." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Cachestorlek för index" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6643,11 +6740,11 @@ msgstr "" "Detta är mängden minne som allokeras för indexcachen. Standardvärdet är " "32MB. Minnet som allokeras här används endast för cache av indexsidor." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Cachestorlek för rad" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6657,11 +6754,11 @@ msgstr "" "tabelldata. Standardvärdet är 32MB. Detta minne används för att cacha " "ändringar i filer för hanteringsdata (.xtd) och radpekare (.xtr)." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Cachestorlek för logg" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6669,11 +6766,11 @@ msgstr "" "Mängden minne som allokeras för transaktionsloggcachen som används för cache " "av transaktionsloggdata. Standardvärdet är 16MB." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Gräns för loggfil" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6681,11 +6778,11 @@ msgstr "" "Storleken på en transaktionslogg före övergång då en ny logg skapas. " "Standardvärdet är 16MB." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Transactionsbufferstorlek" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6693,11 +6790,11 @@ msgstr "" "Storleken på den globala transaktionsloggbuffern (motorn allokerar 2 buffrar " "med denna storlek). Standardvärdet är 1MB." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Frekvens för kontrollpunkt" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6705,11 +6802,11 @@ msgstr "" "Mängden data som skrivs till transaktionsloggen innan en kontrollpunkt " "utförs. Standardvärdet är 24MB." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Gräns för datalogg" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6721,11 +6818,11 @@ msgstr "" "värde kan ökas för att öka den totala mängden data som kan lagras i " "databasen." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Gräns för skräp" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6733,11 +6830,11 @@ msgstr "" "Andelen skräp i en dataloggfil innan den komprimeras. Detta är ett värde " "mellan 1 och 99. Standardvärdet är 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Bufferstolek för logg" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6747,27 +6844,27 @@ msgstr "" "256MB. Motorn allokerar en buffer per tråd, men endast om tråden behöver " "skriva en datalogg." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Växstorlek för datafil" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Storleken med vilken filer för hanteringsdata (.xtd) växer." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Växstorlek för radfil" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Storleken med vilken filer för radpekare (.xtr) växer." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Antal loggfiler" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6778,7 +6875,7 @@ msgstr "" "upprätthåller. Om antalet loggar överstiger detta värde tas gamla loggar " "bort. Annars döps de om och ges det näst högsta numret." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6787,11 +6884,11 @@ msgstr "" "Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page" "%s." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "Liknande länkar" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "PrimeBase XT Blogg av Paul McCullagh" @@ -6838,14 +6935,14 @@ msgstr "Dumpning av Data i tabell" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Händelse" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Definition" @@ -6903,14 +7000,14 @@ msgstr "Visa MIME-typer" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Värd" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Skapad" @@ -7117,21 +7214,12 @@ msgstr "Vy" msgid "Export contents" msgstr "Exportera innehåll" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Öppna nytt phpMyAdmin-fönster" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "Inga data finns för GIS visualisering." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "Globals överskrivningsförsök" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7232,12 +7320,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Tabellnamn" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Kolumn-namn" @@ -7307,93 +7395,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funktion" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Dölj" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binär" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binär - ändra inte" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "Uppladdningskatalog på webbserver" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Redigera / Infoga" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsätt inmatning med %s rader" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "och sedan" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Lägg till som ny rad" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Infoga som ny rad och ignorera fel" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Visa insert fråga" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Gå tillbaka till föregående sida" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Lägg till ytterligare en ny rad" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Gå tillbaka till denna sida" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Ändra nästa rad" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Värde" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad id: %1$d" @@ -7408,32 +7480,32 @@ msgstr "Inget" msgid "Convert to Kana" msgstr "Konvertera till Kana" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Från" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Till" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Sänd" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Lägg till tabellprefix" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Lägg till prefix" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "Vill du verkligen exekvera följande fråga?" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Ingen förändring" @@ -7643,82 +7715,82 @@ msgstr "Ladda om navigering ram" msgid "This format has no options" msgstr "Detta format har inga alternativ" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Inte OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Aktiverat" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Allmänna relationsfunktionaliteter" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Visningsfunktionalitet" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Skapande av PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Visning av kolumnkommentarer" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Webbläsaromvandling" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Vänligen se dokumentationen om hur du uppdaterar din column_comments tabell" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Bokmärkt SQL-fråga" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-historik" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Beständiga, nyligen använda tabeller" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Bestående tabeller för inställninar av användargränssnittet" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Användarinställningar" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Snabba steg för att installera avancerade funktioner:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Skapa de nödvändiga tabellerna med examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Skapa en PMA användare och ge tillgång till dessa tabeller." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7727,13 +7799,13 @@ msgstr "" "code>), till exempel genom att starta från config.sample.inc.php." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Logga in igen till phpMyAdmin för att ladda den uppdaterade " "konfigurationsfilen." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "Ingen beskrivning" @@ -7741,7 +7813,7 @@ msgstr "Ingen beskrivning" msgid "Slave configuration" msgstr "Slavkonfiguration" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Ändra eller konfigurera om master-server" @@ -7755,13 +7827,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Användarnamn" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -7774,7 +7846,7 @@ msgid "Slave status" msgstr "Slav-status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Variabel" @@ -7790,38 +7862,38 @@ msgstr "" "Endast slavar startade med - report-host = host_name alternativet syns i " "denna lista." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Lägg till användare för slav replikering" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Använd textfältet" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Vilken värd som helst" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Denna värd" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Använd värdtabell" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7837,7 +7909,7 @@ msgstr "Generera lösenord" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7869,88 +7941,89 @@ msgid "One or more errors have occured while processing your request:" msgstr "" " Ett eller flera fel har inträffat under hanteringen av din begäran: " -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Editera händelse" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Fel i utförandebegäran" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Detaljer" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Händelsenamn" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Händelsetyp" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Ändra till %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Utför vid" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Utför varje" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Start" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Slut" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Vid avslut, bevara" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Definierare" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: 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\"" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Du måste ange ett händelsenamn" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Du måste ange ett giltigt intervall värde för händelsen." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Du måste ange en giltig exekveringstid för händelsen." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Du måste ange en giltig typ för händelsen." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 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:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Ny" @@ -7983,7 +8056,7 @@ msgstr "" "undvika eventuella problem." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ogiltig rutintyp: \"%s\"" @@ -8002,69 +8075,69 @@ msgstr "Rutinen %1$s har modifierats." msgid "Routine %1$s has been created." msgstr "Rutinen %1$s har skapats." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Redigera rutin" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Rutinnamn" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parametrar" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Riktning" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Längd/Värden" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Lägg till parameter" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Ta bort senaste parametern" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Returtyp" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Returnera längd/värden" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Return alternativ" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Är deterministisk" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Säkerhetstyp" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "SQL dataaccess" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Du måste ange ett rutinnamn" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ogiltig riktning \"%s\" angiven för parameter." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8072,37 +8145,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:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Du måste ange en rutindefinition." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Exekveringsresultat av rutin %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Utför rutin" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Rutinparametrar" @@ -8120,36 +8193,36 @@ msgstr "Triggern %1$s har modifierats." msgid "Trigger %1$s has been created." msgstr "Triggern %1$s har skapats." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Editera trigger" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Trigger namn" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Tidpunkt" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Du måste ange ett triggernamn" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Du måste ange en giltig tidsgräns för triggern" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Du måste ange en giltig händelse för triggern" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Du måste ange ett giltigt tabellnamn" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Du måste ange en trigger definition." @@ -8233,7 +8306,7 @@ msgstr "Det finns inga händelser att visa." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8242,7 +8315,7 @@ msgstr "Tabellen %s existerar inte!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8250,7 +8323,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Var god ange koordinaterna för tabellen %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8261,27 +8334,27 @@ msgstr "Schema för databasen %s - Sida %s" msgid "This page does not contain any tables!" msgstr "Den här sidan innehåller inga tabeller!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "SCHEMA FEL: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Relationsschema" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Innehållsförteckning" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Attribut" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Extra" @@ -8389,7 +8462,7 @@ msgstr "Okänt språk: %1$s." msgid "Current Server" msgstr "Nuvarande Server" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Källdatabas" @@ -8407,7 +8480,7 @@ msgstr "Fjärrserver" msgid "Difference" msgstr "Skillnad" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Måldatabas" @@ -8426,7 +8499,7 @@ msgstr "Kör SQL-fråga/frågor på server %s" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Rensa" @@ -8435,11 +8508,11 @@ msgstr "Rensa" msgid "Columns" msgstr "Kolumn" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Låt varje användare få tillgång till detta bokmärke" @@ -8535,7 +8608,7 @@ msgstr "" "SQL-validatorn kunde inte initieras. Kontrollera om du har installerat de " "nödvändiga PHP-tilläggen enligt %sdokumentationen%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "Spårning av %s är aktiverad." @@ -8561,8 +8634,8 @@ msgstr "" "citattecken, enligt formatet: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Index" @@ -8612,13 +8685,13 @@ msgstr "Inget" msgid "As defined:" msgstr "Som definierat:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Primär" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Fulltext" @@ -8631,17 +8704,17 @@ msgstr "först" msgid "after %s" msgstr "efter %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Lägg till %s fält" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "Du måste lägga till åtminstone en kolumn." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Lagringsmotor" @@ -8649,41 +8722,6 @@ msgstr "Lagringsmotor" msgid "PARTITION definition" msgstr "Partitionsdefinition" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Tabellsök" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Markera kolumner (minst en):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Lägg till sökvillkor (uttryck i \"where\"-sats):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Anntal rader per sida" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Visningsordning:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Bläddra bland främmande värden" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Utför en \"Query By Example\" (jokertecken: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8837,11 +8875,11 @@ msgstr "" msgid "Manage your settings" msgstr "Hantera dina inställningar" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Konfigurationen har sparats" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8854,7 +8892,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Kunde inte spara konfigurationen" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8883,7 +8921,7 @@ msgstr "Serveranslutning kollationering" msgid "Appearance Settings" msgstr "Inställningar för utseende" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Fler inställningar" @@ -8903,9 +8941,9 @@ msgstr "Mjukvaruversion" msgid "Protocol version" msgstr "Protokollversion" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Användare" @@ -9037,126 +9075,126 @@ msgid "" "issues." msgstr "Server körs med Suhosin. Se %sdokumentation%s för möjliga problem." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Inga databaser" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "Filtrera databaser efter namn" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Filtrera tabeller efter namn" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Skapa tabell" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Välj en databas" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Visa/Dölj vänster meny" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Spara position" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Skapa relation" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Uppdatera" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Hjälp" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Vinklade länkar" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Direkta länkar" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Fäst vid rutnät" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Små/Stora Alla" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Växla liten/stor" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Växla mellan relaterade linjer" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Importera/exportera koordinater för PDF-schema" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Bygg sökfråga" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Flytta meny" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Dölj/Visa alla" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Dölj/visa tabeller utan relationer" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Antal tabeller" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Ta bort relation" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Relation aktör" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Förutom" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "underfråga" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Byt namn till" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Nytt namn" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Aggregera" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Aktiva alternativ" @@ -9168,51 +9206,51 @@ msgstr "Sidan har skapats" msgid "Page creation failed" msgstr "Sidan gick inte att skapa" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Sida" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Importera från vald sida" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Exportera till vald sida" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Skapa en sida och exportera till den" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Nytt sidnamn: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Exportera/Importera till skala" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "rekommenderad" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Fel: Relation finns redan." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Fel: Relation inte tillagd." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY relation tillagd" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Intern relation tillagd" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Relation borttagen" @@ -9224,51 +9262,51 @@ msgstr "Fel vid sparande av koordinater för Designer." msgid "Modifications have been saved" msgstr "Ändringarna har sparats" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Kan inte spara inställningar, Sänt formulär innehåller fel" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Kan inte importera konfiguration" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Konfiguration innehåller felaktiga data för vissa fält." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Vill du importera återstående inställningar?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Har sparat på: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Importera från fil" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Importera från webbläsaren" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Inställningar kommer att importeras från webbläsaren." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Du har inga sparade inställningar!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Denna funktion stöds inte av din webbläsare" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Slå samman med nuvarande konfiguration" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9277,37 +9315,37 @@ msgstr "" "Du kan ställa in fler inställningar genom att ändra config.inc.php, t ex. " "genom att använda %sSetup script%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Spara till webbläsaren" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Inställningarna kommer att sparas i din webbläsare." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Befintliga inställningar kommer skrivas över!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Du kan återställa alla inställningar och återföra dem till standardvärdena." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Importera filer" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Alla" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s-tabellen hittas ej eller är ej angiven i %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Filen finns inte" @@ -9315,17 +9353,17 @@ msgstr "Filen finns inte" msgid "Select binary log to view" msgstr "Välj binär logg att visa" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Filer" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Korta av visade frågor" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Visa fullständiga frågor" @@ -9341,7 +9379,7 @@ msgstr "Position" msgid "Original position" msgstr "Ursprunglig position" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Information" @@ -9349,31 +9387,31 @@ msgstr "Information" msgid "Character Sets and Collations" msgstr "Teckenuppsättningar och kollationeringar" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d databas har framgångsrikt tagits bort." msgstr[1] "%1$d databaser har framgångsrikt tagits bort." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Databas-statistik" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Master replikering" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Slav replikering" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Aktivera Statistik" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9385,153 +9423,153 @@ msgstr "" msgid "Storage Engines" msgstr "Lagringsmotorer" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Visa dump (schemat) för databaser" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Moduler" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Starta" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Insticksprogram" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Modul" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Bibliotek" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Version" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Författare" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Licens" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "inaktiverad" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Inkluderar alla privilegier förutom GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Tillåter ändring av befintliga tabellers struktur." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Tillåter ändring och borttagning av lagrade rutiner." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Tillåter skapande av nya databaser och tabeller." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Tillåter skapande av lagrade rutiner." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Tillåter skapande av nya tabeller." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Tillåter skapande av temporära tabeller." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillåter skapande, borttagning och omdöpning av användarkonton." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Tillåter skapande av nya vyer." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Tillåter borttagning av data." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Tillåter borttagning av databaser och tabeller." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Tillåter borttagning av tabeller." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Tillåter skapande av händelser för händelseschemaläggaren" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Tillåter utförande av lagrade rutiner." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Tillåter import av data från och export av data till filer." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Tillåter inläggning av användare och privilegier utan omladdning av " "privilegietabeller." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Tillåter skapande och borttagning av index." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Tillåter infogning och ersättning av data." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Tillåter låsning av tabeller för gällande tråd." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Begränsar antalet nya förbindelser användaren kan öppna per timme." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Begränsar antalet frågor användaren kan skicka till servern per timme." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9539,59 +9577,59 @@ msgstr "" "Begränsar antalet kommandon, vilka ändrar någon tabell eller databas, som " "användaren kan utföra per timme." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Tillåter visning av processer för alla användare" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Har ingen effekt i denna version av MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillåter omladdning av serverinställningar och rensning av serverns cache." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Ger användaren rätt att fråga var slav- / huvudservrarna är." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Nödvändigt för replikeringsslavar." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Tillåter läsning av data." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Ger tillgång till den fullständiga databaslistan." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillåter utförande av SHOW CREATE VIEW-frågor." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Tillåter avstängning av servern." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9601,163 +9639,163 @@ msgstr "" "Nödvändig för de flesta administrativa funktioner, som att sätta globala " "variabler eller döda andra användares trådar." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Tillåter skapande och borttagning av triggers" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Tillåter ändring av data." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Inga privilegier." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Inget" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Tabellspecifika privilegier" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Notera: MySQL privilegie benämningar uttrycks på engelska" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administration" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Globala privilegier" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Databasspecifika privilegier" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Resursbegränsningar" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "Anm: Genom att sätta dessa alternativ till 0 (noll) tas begränsningarna bort." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Inloggningsinformation" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Ändra inte lösenordet" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Ingen användare hittades." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Användaren %s finns redan!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Du har lagt till en ny användare." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Du har uppdaterat privilegierna för %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Du har upphävt privilegierna för %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Lösenordet för %s har ändrats." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Tar bort %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Inga användare valda för borttagning!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Laddar om privilegierna" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "De valda användarna har tagits bort." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Privilegierna har laddats om." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Ändra privilegier" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Upphäv" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Exportera allt" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Vem som helst" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Privilegier för samtliga användare" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "Privilegier för %s" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Användare översikt" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Beviilja" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Ta bort valda användare" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9770,51 +9808,51 @@ msgstr "" "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:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Den valda användaren kunde inte hittas i privilegietabellen." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Kolumnspecifika privilegier" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Lägg till privilegier till följande databas" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Lägg till privilegier till följande tabell" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Ändra inloggningsinformation / Kopiera användare" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Skapa en ny användare med samma privilegier och ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... behåll den gamla." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... ta bort den gamla från användartabellerna." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9822,82 +9860,82 @@ msgstr "" " ... ta bort den gamla från användartabellerna och ladda om privilegierna " "efteråt." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Databas för användare" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "Skapa databas med samma namn och tilldela alla privilegier" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Bevilja alla privilegier till namn med jokertecken (username\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Bevilja alla privilegier för databas "%s"" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Användare som har tillgång till "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "databasspecifik" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "jokertecken" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "En användare har skapats." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Okänt fel" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Kan inte ansluta till master %s." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Det går inte att läsa master logg läge. Eventuella privilegie problem på " "master." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Kan inte ändra master" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Huvudservern har ändrats till %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Denna server är konfigurerad som master i en replikerings process." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Visa master-status" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Visa anslutna slavar" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9906,11 +9944,11 @@ msgstr "" "Denna server är inte konfigurerad som master i en replikering process. Vill " "du konfigurera den?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Master-konfiguration" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9924,19 +9962,19 @@ msgstr "" "välja att ignorera alla databaser som standard och endast tillåta att vissa " "databaser speglas. Välj inställning:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Replikera alla databaser, Ignorera:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Ignorera alla databaser, Replikera:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Välj databaser:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -9944,7 +9982,7 @@ msgstr "" "Nu, lägg till följande rader i slutet av [mysqld]-sektionen i din my.cnf och " "starta om MySQL-servern efteråt." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -9954,80 +9992,80 @@ msgstr "" "meddelande som informerar dig, att denna server är konfigurerad som " "master" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Slav SQL tråden exekveras inte!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Slav IO tråden exekveras inte!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "Servern är konfigurerad som slav i en replikering process. Vill du:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Se slavtabell status" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Synkronisera databaser med master" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Kontroll slav:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Full start" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Full stopp" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Återställ slav" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Starta endast SQL tråd" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Stoppa endast SQL tråd" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Starta endast IO tråd" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Stoppa endast IO tråd" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Felhantering:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Hoppa över fel kan leda till osynkroniserad master och slav!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Hoppa över nuvarande fel" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Hoppa över nästa" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "fel." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10036,127 +10074,127 @@ msgstr "" "Denna server är inte konfigurerad som slav i en replikering process. Vill du " "konfigurera den?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Tråden %s dödades med framgång." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin kunde inte döda tråd %s. Troligtvis har den redan avslutats." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Hanterare" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Frågecache" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Trådar" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Temporära data" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Fördröjda infogningar" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Nyckelcache" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Kopplingar" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Sortering" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Transaktionssamordnare" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Flush (stäng) alla tabeller" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Visa öppna tabeller" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Visa slav-värdar" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Visa slav-status" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Rensa frågecache" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Körningsinformation" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Alla statusvariabler" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "Övervaka" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Handledare" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Uppdateringsfrekvens: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Filter" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "Innehåller ordet:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Visa endast varnings värden" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Filtrera efter kategori ..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Visa oformaterade värden" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "Liknande länkar:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Kör analysator" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Instruktioner" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10164,7 +10202,7 @@ msgstr "" "Advisor systemet kan ge rekommendationer på server variabler genom att " "analysera server status variablerna." -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10173,7 +10211,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:920 +#: server_status.php:919 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 " @@ -10183,7 +10221,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:922 +#: server_status.php:921 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,31 +10232,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:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Frågor sedan start: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Uppgifterna" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Nätverkstrafik sedan start:%s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10226,17 +10264,17 @@ msgstr "" "Denna MySQL-server fungerar sommaster ochslave i " "replicerings process." -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" "Denna MySQL server arbetar som master in replication process." -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" "Denna MySQL server arbetar som slave in replication process." -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10244,11 +10282,11 @@ msgstr "" "För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Replikeringsstatus" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10256,35 +10294,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Mottagna" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Skickade" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "Max. samtidiga förbindelser" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Misslyckade försök" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Avbrutna" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Kommando" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10292,11 +10330,11 @@ msgstr "" "Antalet anslutningar som avbröts eftersom klienten dog utan att stänga " "anslutningen ordentligt." -#: server_status.php:1321 +#: server_status.php:1320 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:1322 +#: server_status.php:1321 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 " @@ -10306,16 +10344,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:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 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:1325 +#: server_status.php:1324 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 " @@ -10327,11 +10365,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Antalet temporära filer som mysqld har skapat." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10339,7 +10377,7 @@ msgstr "" "Antalet temporära tabeller i minne skapade automatiskt av servern under " "utförande av satser." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10347,7 +10385,7 @@ msgstr "" "Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod " "(förmodligen dubblerad nyckel)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10355,23 +10393,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "Antalet skrivna rader med INSERT DELAYED." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Antalet utförda FLUSH-satser." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Antalet interna COMMIT-satser." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10381,7 +10419,7 @@ msgstr "" "tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar " "antalet gånger tabeller har upptäckts." -#: server_status.php:1335 +#: 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, " @@ -10391,7 +10429,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:1336 +#: server_status.php:1335 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." @@ -10400,7 +10438,7 @@ msgstr "" "är högt är det en bra indikation på att dina frågor och tabeller är riktigt " "indexerade." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10410,7 +10448,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:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10418,7 +10456,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:1339 +#: 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 " @@ -10430,7 +10468,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:1340 +#: server_status.php:1339 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 +10480,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:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Antalet interna ROLLBACK-satser." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Antalet sidor innehållande data (orena eller rena)." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Antalet sidor för närvarande orena." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Antalet tomma sidor." -#: server_status.php:1348 +#: 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 " @@ -10480,7 +10518,7 @@ msgstr "" "läses eller skrivs eller som inte kan rensas eller tas bort av någon annan " "anledning." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10492,11 +10530,11 @@ msgstr "" "också beräknas som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Total storlek på buffert, i antal sidor." -#: server_status.php:1351 +#: 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." @@ -10504,7 +10542,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:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10512,11 +10550,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:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort." -#: server_status.php:1354 +#: 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." @@ -10524,7 +10562,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:1355 +#: server_status.php:1354 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 " @@ -10538,51 +10576,51 @@ msgstr "" "fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta " "värde vara litet." -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antalet skrivningar gjorda till InnoDB-bufferten." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Antalet fsync()-operationer hittills." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Nuvarande antal väntande fsync()-operationer." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Nuvarande antal väntande läsningar." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Nuvarande antal väntande skrivningar." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Mängden data läst hittills, i bytes." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Totalt antal läsningar av data." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Totalt antal skrivningar av data." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Mängden data skriven hittills, i bytes." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "Antalet doublewrite transaktioner som har utförts.." -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -10590,35 +10628,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Antalet skriv-begäran att skriva till logg." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Antalet fysiska skrivningar till loggfilen." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Antalet fsync()-skrivningar gjorda till loggfilen." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Antalet väntande fsync() av loggfil." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Väntande skrivningar till loggfil." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Antalet bytes skrivna till loggfilen." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Antalet skapade sidor." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10626,51 +10664,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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Antalet lästa sidor." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Antalet skrivna sidor." -#: server_status.php:1378 +#: server_status.php:1377 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:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "Antalet rader borttagna från InnoDB-tabeller." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "Antalet rader tillagda i InnoDB-tabeller." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "Antalet rader lästa från InnoDB-tabeller." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "Antalet rader uppdaterade i InnoDB-tabeller." -#: server_status.php:1387 +#: 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." @@ -10678,7 +10716,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:1388 +#: 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." @@ -10686,7 +10724,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:1389 +#: server_status.php:1388 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 " @@ -10695,15 +10733,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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "Andel av använd nyckelcache (beräknat värde)" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10713,7 +10751,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:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10721,20 +10759,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:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk." -#: server_status.php:1396 +#: server_status.php:1395 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:1397 +#: server_status.php:1396 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 " @@ -10745,7 +10783,7 @@ msgstr "" "av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats " "ännu." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10753,11 +10791,11 @@ msgstr "" "Det maximala antalet anslutningar som har använts samtidigt sedan servern " "startade." -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10765,19 +10803,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Antalet filer som är öppna." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Antalet tabeller som är öppna." -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10786,19 +10824,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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Mängden fritt minne för frågecache." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Antalet cache-träffar." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Antalet förfrågningar tillagda i cachen." -#: server_status.php:1408 +#: 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 " @@ -10810,7 +10848,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:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10818,19 +10856,19 @@ msgstr "" "Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga " "inställningen query_cache_type)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Antalet frågor registrerade i cachen." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Totala antalet block i frågecachen." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status för felsäker replikering (ännu inte implementerat)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10838,11 +10876,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10851,7 +10889,7 @@ msgstr "" "varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för " "dina tabeller.)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10859,17 +10897,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10877,25 +10915,25 @@ msgstr "" "Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har " "omprövat transaktioner." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 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:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -10905,23 +10943,23 @@ msgstr "" "detta värde är stort bör du överväga att öka värdet i systemvariabeln " "sort_buffer_size." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Antalet sorteringar som gjordes med intervall." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Antalet sorterade rader." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -10933,7 +10971,7 @@ msgstr "" "du först optimera dina frågor och antingen dela upp din tabell eller " "tabeller eller använda replikering." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -10943,11 +10981,11 @@ msgstr "" "Threads_created/Connections. Om detta värde är rött bör du öka värdet " "thread_cache_size." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Antalet öppna förbindelser." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10959,47 +10997,47 @@ msgstr "" "(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra " "trådimplementering.)" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "Trådad cache träffrekvens (beräknat värde)" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Antalet trådar som inte är vilande." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "Starta Monitor" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Instruktioner/Setup" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Klar ändra/editera diagram" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Lägg till diagram" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Ordna/editera diagram" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Uppdateringsfrekvens" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Visa kolumner" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Diagram arrangemang" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -11007,15 +11045,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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Återställ till standardinställningen" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "Övervaka instruktioner" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11029,7 +11067,7 @@ msgstr "" "Observera att general_log producerar mycket data och ökar lasten på servern " "med upp till 15%" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11041,11 +11079,11 @@ msgstr "" "stöds av MySQL 5.1.6 och senare. Du kan fortfarande använda " "serverfunktionernas diagramfunktioner." -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "Använda monitorn:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11056,7 +11094,7 @@ msgstr "" "\"Inställningar\", eller ta bort diagram med cog-ikonen vid respektive " "diagram." -#: server_status.php:1655 +#: server_status.php:1654 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 " @@ -11068,11 +11106,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:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Vänligen notera:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11085,196 +11123,196 @@ msgstr "" "samt att inaktivera \"general_log\" och tömma tabellen när övervakningen " "inte behövs längre." -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Förinställt diagram" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Statusvariabler" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Välj serie:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Vanligtvis övervakade" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "eller skriv variabelnamn:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Visa som skillnadsvärde" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Tillämpa en dividend" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Lägg till enhet till datavärdena" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Lägg till denna serie" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Rensa serie" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Serie i diagram:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Logga statistik" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Välj tidsintervall:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Hämta endast SELECT, INSERT, UPDATE och DELETE kommandon" -#: server_status.php:1747 +#: server_status.php:1746 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:1752 +#: server_status.php:1751 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:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Resultaten grupperas efter frågetext." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Frågeanalyserare" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d sekund" msgstr[1] "%d sekunder" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minuter" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Kunde inte ansluta till källan" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Kunde inte ansluta till målet" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' databasen existerar inte." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Synkronisering av strukturen" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Datasynkronisering" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "saknas" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Skillnad i strukturen" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Skillnad i data" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Lägg till kolumn(er)" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Radera kolumn(er)" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Ändra kolumn(er)" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Radera index" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Tillämpa index" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Uppdatera rad(er)" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Infoga rad(er)" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Vill du radera alla föregående rader från måltabellen?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Utför valda ändringar" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Synkronisera databaser" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "De valda måltabellerna har synkroniserats mot källtabellerna." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Måldatabas har synkroniserats med källdatabasen" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Utförda frågor" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Lägg in manuellt" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Nuvarande anslutning" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Konfiguration: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11282,19 +11320,19 @@ msgstr "" "Databasen kommer synkroniseras med källdatabasen. Källdatabasen kommer vara " "oförändrad." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Inställning av variabeln misslyckades" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Servervariabler och inställningar" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Sessionsvärde" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Globalt värde" @@ -11631,153 +11669,153 @@ msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken." msgid "Wrong data" msgstr "Felaktigt data" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Använd bokmärket \"%s\" som standard webbläsarfråga." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Vill du verkligen exekvera följande fråga?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "Visar som PHP-kod" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Validerad SQL-kod" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL-resultat" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Genererad av" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem med index för tabell `%s`" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Etikett" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tabell %1$s har ändrats" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "Kolumnerna har flyttats framgångsrikt." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Blockera" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Kolumn" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Rad" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Spline" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Cirkeldiagram" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "Staplade" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Diagramtitel" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "X-axel:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Serie:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "X-axel etikett:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "X värde" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Y-axel etikett:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Y värden" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "Tabell %s finns redan!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Tabell %1$s har skapats." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Visa SQL-satser för tabellen" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "Visa GIS Visualisering" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Bredd" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Höjd" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Etikett kolumn" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "- Inget -" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Spatial kolumn" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Rita om" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Spara till fil" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Filnamn" @@ -11793,30 +11831,30 @@ msgstr "Kan inte byta namn på index till \"PRIMARY\"!" msgid "No index parts defined!" msgstr "Inga delar av index är definierade!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "Lägg till index" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "Redigera index" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Indexnamn:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" måste vara namnet på och endast på en " "primärnyckel!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Indextyp:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Lägg till %s kolumn(er) till index" @@ -11839,150 +11877,150 @@ msgstr "Tabellen %s har flyttats till %s." msgid "Table %s has been copied to %s." msgstr "Tabellen %s har kopierats till %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Tabellnamnet är tomt!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Sortera om tabellen efter" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(var för sig)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Flytta tabellen till (databas.tabell):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Tabellalternativ" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Döp om tabellen till" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Kopiera tabellen till (databas.tabell):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Byt till kopierad tabell" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Tabellunderhåll" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Defragmentera tabell" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Tabellen %s har rensats" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Rensa tabellen (flush)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Ta bort data eller tabell" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Töm tabellen (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Ta bort tabellen (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Underhåll av partition" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Partition %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Analysera" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Kontrollera" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimera" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Återskapa" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Reparera" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Ta bort partitionering" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Kontrollera referensintegritet:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Visar tabeller" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Visa använt utrymme" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Effektiv" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Radstatistik" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "statisk" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dynamisk" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Radlängd" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Radstorlek" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Nästa AutoIndex" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Fel vid skapande av främmande nyckel för %1$s (kontrollera datatyper)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Intern relation" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -11990,103 +12028,103 @@ msgstr "" "En intern relation är inte nödvändig när en motsvarande FOREIGN KEY relation " "finns." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Begränsning av främmande nyckel" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Spatial" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Distinkta värden" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Lägg till primär nyckel" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Lägg till unikt index" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "Lägg till SPATIAL index" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "Lägg till FULLTEXT index" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Inget" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Kolumnen %s har tagits bort" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "En primär nyckel har lagts till för %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Ett index har lagts till för %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Visa fler åtgärder" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "Flytta kolumner" -#: tbl_structure.php:622 +#: tbl_structure.php:624 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:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Redigera vy" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Visa relationer" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Föreslå tabellstruktur" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Lägg till kolumn" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "I slutet av tabellen" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "I början av tabellen" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Efter %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "Skapa ett index för  %s kolumn(er)" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "partitionerad" @@ -12236,66 +12274,37 @@ msgstr "Spåra dessa datahanterings kommandon:" msgid "Create version" msgstr "Skapa version" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" -"Utför en \"Query By Example\" (jokertecken: \"%\") för två olika kolumner" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "Ytterligare sökkriterier" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Använd denna kolumn för att markera varje punkt" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Maximalt antal rader att visa" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Bläddra / Redigera punkter" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Hur du använder" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "Återställ zoom" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Hämta fler teman!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Tillgängliga MIME-typer" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "Kursiverade MIME-typer har inte någon separat omvandlingsfunktion" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Tillgängliga omvandlingar" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Beskrivning" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Du har inte tillräcklig behörighet för att vara här nu!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profilen har uppdaterats." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "VIEW namn" diff --git a/po/ta.po b/po/ta.po index 5ed4ee25fa..cab6621eeb 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2011-12-28 11:44+0200\n" "Last-Translator: any anonymous user <>\n" "Language-Team: Tamil \n" @@ -17,21 +17,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.1.6\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "அனைத்தையும் காட்டு" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "பக்க எண்" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -41,58 +41,58 @@ msgstr "" "மூடியிருக்க வேண்டும், அல்லது உங்கள் உலாவி பாதுகாப்பு அமைப்புகள் குறுக்கு-சாளர " "மேம்படுத்தல்களை தடுக்க உள்ளமைக்கப்பட்டிருக்கின்றன." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "செல் " -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "முக்கியபெயர்" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "விளக்கம்" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "இந்த மதிப்பை பயன்படுத்துக" @@ -108,88 +108,89 @@ msgstr "%s கோப்பு இந்த அமைப்பில் இல் msgid "Database %1$s has been created." msgstr "%1$s தரவுத்தளம் உருவாக்கப்பட்டது" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "தரவுத்தள கருத்துரை" -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "அட்டவணைக் கருத்துரைகள்" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "நிரல்" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "வெற்று" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "முன்னிருப்பு" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "இணைப்பு" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "கருத்துரைகள்" @@ -198,14 +199,14 @@ msgstr "கருத்துரைகள்" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "இல்லை" @@ -218,122 +219,122 @@ msgstr "இல்லை" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "ஆம்" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "தரவுத்தளத்தின் திட்ட வடிவத்தைப் பார்" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "அட்டவணைகள் எதுவும் தரவுத்தளத்தில் காணப்படவில்லை" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "அனைத்தையும் தெரிவுசெய்" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "அனைத்து தெரிவுகளையும் நீக்கு" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "தரவுத்தளப் பெயர் வெறுமையாக உள்ளது" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "%s தரவுத்தளமானது %s ஆக பெயர் மாற்றப்பட்டது" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "%s தரவுத்தளமானது %s இற்கு பிரதி செய்யப்பட்டது" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "தரவுத்தளத்தைப் பெயர் மாற்ற" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "தரவுத்தளத்தை நீக்கு" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "%s தரவுத்தளம் இரத்துசெய்யப்பட்டது" -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "தரவுத்தளத்தை இரத்து செய் (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "தரவுத்தளத்தை பிரதிசெய்" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "கட்டமைப்பை மட்டும்" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "கட்டமைப்பு மற்றும் தரவுகள்" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "தரவுகளை மட்டும்" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "பிரதிசெய்யமுன் தரவுத்தளத்தை உருவாக்கு" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "%sஐ சேர்க்க" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "கட்டுப்பாடுகளை சேர்க்க" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "பிரதியான தரவுதளத்துக்கு மாறு" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "அடுக்கு" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -342,59 +343,59 @@ msgstr "" "PhpMyAdmin கட்டமைப்பு சேமிப்பகம் முடக்க செய்யப்பட்டுள்ளது. ஏன் எனக் கண்டுபிடிக்க %shere%s " "கிளிக் செய்யவும்" -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "தொடர்புசார் திட்டத்தை திருத்த அல்லது ஏற்ற" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "அட்டவணை" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "வரிசைகள்" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "அளவு" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "பயன்பாட்டில்" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "உருவாக்கம்" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "இறுதி இற்றைப்படுத்தல்" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "கடைசி சோதனை" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -405,117 +406,117 @@ msgstr[1] "%s அட்டவணைகள்" msgid "You have to choose at least one column to display" msgstr "காட்சிப்படுத்த நீங்கள் குறைந்தபட்சம் ஒரு நிரலை தேர்ந்தெடுக்க வேண்டும்" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "%s காட்சி கட்டுனர் இற்கு %s மாற்றவும்" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "வரிசைப்படுத்து" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "ஏறுவரிசை" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "இறங்குவரிசை" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "காண்பி" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "தேர்வளவை" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "துணைநிரல்கள்" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "மற்றும்" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "அழி" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "அல்லது" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "மாற்று" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "விதி நிரைகளை சேர்க்க/ நீக்க" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "நெடுவரிசைகள் சேர்க்க/ நீக்க" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "வினவலை புதுப்பி" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "அட்டவணைகளை பயன்படுத்துக" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "தரவுத்தளம் மீது %s%s
    \" %s:" msgstr "\"%s\" %s இற்கான தேடல் முடிவுகள்:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -524,280 +525,281 @@ msgid_plural "%1$s matches inside table %2$s" msgstr[0] "%s அட்டவணையில் பொருந்தியவை %s" msgstr[1] "%s அட்டவணையில் பொருந்தியவைகள் %s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "%s அட்டவணையில் பொருத்தப்பாடுகளை நீக்குவதா?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "மொத்தம்: %s பொருத்தம்" msgstr[1] "மொத்த: %s பொருத்தங்கள்" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "தரவுத்தளத்தில் தேடு" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "தேட வார்த்தைகள் அல்லது மதிப்புகள் (குழுக்குறி: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "கண்டறி:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "சொற்கள் ஓர் இடைவெளி எழுத்தால் (\" \") பிரிக்கப்பட்டிருக்கும்." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "அட்டவணைகளில்:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "நிரல் உள்ளே:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "தரவுத்தளத்தில் அட்டவணைகள் எதுவுமில்லை" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "%s அட்டவணை வெறுமை செய்யப்பட்டது" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "படியெடுத்தல்" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "கூட்டுத்தொகை" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "உடன் தெரிவுசெய்யப்பட்டது:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "அனைத்தையும் தெரி" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ஏற்றுமதி" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "அச்சுப் பார்வை" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "வெறுமை" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "அழி" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "அட்டவணையை சரிபார்" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "அட்டவணையை உகப்பாக்கு" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "அட்டவணையை திருத்து" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "அட்டவணையை பகுப்பாய்" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Display table filter" msgid "Replace table prefix" msgstr "கருதிட்குள் சேர்க்க" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "தரவு அகராதி" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "தரவுத்தளம்" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "இறுதி பதிப்பு" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "உருவாக்கப்பட்டது" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "புதுப்பிக்கப்பட்டது" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "தகுநிலை" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "செயல்" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "செயற்படு" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "செயற்பாடற்ற" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "பதிப்புக்கள்" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "அட்டவணைத் தடம்" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "தரவுத்தளப்பதிகை" @@ -811,27 +813,27 @@ msgstr "சுட்டு வகை" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -842,179 +844,179 @@ msgstr "" msgid "Invalid export type" msgstr "சுட்டு வகை" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "கேத்திர கணிதம்" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "புள்ளி" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, fuzzy, php-format #| msgid "Point" msgid "Point %d" msgstr "புள்ளி" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "ஒரு புள்ளியை சேர்" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "உள்ப்புற வளையம்" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "கட்டுப்பாடுகளை சேர்க்க" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "உள்ப்புற வளையத்தை சேர்" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "பல்கோணி" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "ஒரு பல்கோணியை சேர்" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add a new User" msgid "Add geometry" msgstr "புதிய பயனாளரை சேர்க்க" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "வெளியீடு" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "திரும்பி" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -1023,7 +1025,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1067,7 +1069,7 @@ msgstr "சுட்டுகள்" msgid "Edit Index" msgstr "தொகுப்பு பார்வை" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -1086,16 +1088,16 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "பயனரை சேர்" @@ -1112,23 +1114,24 @@ msgstr "" msgid "Close" msgstr "மூடு" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "தொகு" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "நேரடி போக்குவரத்து வரைபடம்" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "நேரடி இணை./செயலாக்க வரைபடம்" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "நேரடி வினவல் வரைபடம்" @@ -1138,24 +1141,24 @@ msgstr "நிலையான தரவு" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "மொத்தம்" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "ஏனையது" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1175,7 +1178,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "செயலாக்கங்கள்" @@ -1193,7 +1196,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "வினவல் புள்ளிவிவரவியல்" @@ -1234,14 +1237,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1293,32 +1296,32 @@ msgstr "துண்டுகள் அனுப்ப" msgid "Bytes received" msgstr "துண்டுகள் ஏற்றுக்கொள்ளப்பட்டது" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "இணைப்புகள்" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1334,11 +1337,11 @@ msgstr "%s அட்டவணை" msgid "Questions" msgstr "வினாக்கள்" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "போக்குவரத்து" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "அமைப்புகள்" @@ -1358,11 +1361,11 @@ msgstr "வரைபடத்தை கட்டத்தில் சேர்" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "எதுவுமில்லை" @@ -1455,7 +1458,7 @@ msgstr "அமைப்புக்களை மாற்று" msgid "Current settings" msgstr "நடப்பு அமைப்புக்கள்" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "வரைபடத் தலைப்பு" @@ -1542,7 +1545,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "" @@ -1644,10 +1647,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "இறக்குமதி" @@ -1697,9 +1700,9 @@ msgstr "" msgid "Test" msgstr "சோதனை" -#: 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 +#: 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 msgid "Cancel" msgstr "விலக்கு" @@ -1711,11 +1714,11 @@ msgstr "ஏற்றப்படுகிறது" msgid "Processing Request" msgstr "வேண்டுகோள் செயற்படுத்தபடுகின்றது" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1727,9 +1730,9 @@ msgstr "நெடுக்கை அழிக்கபடுகின்றத msgid "Adding Primary Key" msgstr "முதன்மை சாவி இணைக்கப்படுகின்றது" -#: 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 +#: 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 msgid "OK" msgstr "சரி" @@ -1771,17 +1774,17 @@ msgstr "சுட்டுகளை மறை" msgid "Show indexes" msgstr "சுட்டுகளை காட்டு" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enable %s" msgid "(Enabled)" msgstr "இயலச்செய் %s" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disable %s" msgid "(Disabled)" @@ -1811,7 +1814,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1852,8 +1855,8 @@ msgstr "வினவல் பெட்டியை காண்பி" msgid "No rows selected" msgstr "தெரிவுசெய்யப்பட வரிசைகள் இல்லை" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "மாற்று" @@ -1861,18 +1864,18 @@ msgstr "மாற்று" msgid "Query execution time" msgstr "வினவல் நிறைவேற்றுகை நேரம்" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "சேமி" @@ -1884,7 +1887,7 @@ msgstr "தேடுதல் கட்டளை விதியை மறை" msgid "Show search criteria" msgstr "தேடுதல் கட்டளை விதியை காண்பி" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "பொரித்தாக்கி தேடு" @@ -1932,12 +1935,12 @@ msgstr "தேடல் முடிவுகளை மறை" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "புறக்கணி" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "நகல்" @@ -1957,7 +1960,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "" @@ -2040,7 +2043,7 @@ msgstr "இயற்று" msgid "Change Password" msgstr "கடவுச்சொல்லை மாற்று" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "மேலும்" @@ -2135,27 +2138,27 @@ msgid "December" msgstr "டிசம்பர்" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2163,37 +2166,37 @@ msgid "May" msgstr "வைகாசி" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "மார்கழி" @@ -2242,32 +2245,32 @@ msgid "Sun" msgstr "ஞாயி" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "திங்" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "செவ்" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "புத" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "வியா" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "வெள்" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "சனி" @@ -2382,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "ஒரு வினாடிக்கு" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "ஒரு நிமிடத்திற்கு " -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "ஒரு மணி நேரத்திற்கு " @@ -2412,70 +2415,272 @@ msgstr "" msgid "Font size" msgstr "எழுத்துரு அளவு" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "ஆரம்பம்" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "முந்தைய" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "அடுத்து" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "முடிவு" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "திங்கள்" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Add into comments" +msgid "Display chart" +msgstr "கருதிட்குள் சேர்க்க" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "ஒரு தற்காலிய உறையை காணவில்லை" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "சுட்டுகள்" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "தனித்தன்மை" @@ -2488,8 +2693,8 @@ msgstr "பொதிக்கப்பட்டது" msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "கருத்துரை" @@ -2510,130 +2715,130 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "தரவுத்தளங்கள்" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "சேவையன்" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "கட்டமைப்பு" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "செருகு" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "செயல்பாடுகள்" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "Usage" msgid "Users" msgstr "பாவனையளவு" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "வலு" @@ -2658,7 +2863,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d வரிசை சேர்க்கப்பட்டுள்ளது" msgstr[1] "%1$d வரிசைகள் சேர்க்கப்பட்டுள்ளன" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2746,16 +2951,98 @@ 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 +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 +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 +msgid "Value" +msgstr "" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "தேடு" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "எப்படி பயன்படுத்துவது" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "அதை ஏற்றுக்கொள்" @@ -2774,7 +3061,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3071,13 +3358,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "வரவேற்கிறது %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3086,7 +3373,7 @@ msgstr "" "நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s " "பயன்படுத்தலாம்" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3101,58 +3388,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "உள்நுழையா" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "சேவையன்:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "பயனாளர்:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "கடவுச்சொல்" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "சேவையன் தேர்வு" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "" @@ -3184,7 +3467,7 @@ msgstr "பகிரப்பட்டது" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "அட்டவணைகள்" @@ -3196,13 +3479,13 @@ msgstr "அட்டவணைகள்" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "தரவு" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "" @@ -3227,233 +3510,211 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "ஆவணச்சான்று" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "ஆங்" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "ஆங்" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "ஆங்" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL வினவல்" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL சொன்னது:" -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP குறிமுறை உருவாக்கு" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "புதுப்பி" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "வினாவிற்கான உன்வரிசை மாற்றப்பகுதி " -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "உள்வரிசை" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "ஞாயிறு" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s செக்கன்கள்" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "ஆரம்பம்" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "முந்தைய" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "அடுத்து" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "முடிவு" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "உனது கணினியை உலாவு" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "நிறைவேற்று" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "அச்சிடு" @@ -3483,8 +3744,8 @@ msgid "Closed" msgstr "மூடப்பட்டது" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "" @@ -3625,9 +3886,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "" @@ -3831,10 +4092,6 @@ msgstr "தரவுத்தளங்கள்" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3889,7 +4146,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "" @@ -3898,7 +4155,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "" @@ -4002,7 +4259,7 @@ msgid "MIME type" msgstr "" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "" @@ -5466,9 +5723,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -5737,30 +5994,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "" @@ -5781,22 +6032,22 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -5947,26 +6198,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version" msgid "committed on %1$s by %2$s" msgstr "பதிப்பை உருவாக்கு" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version" msgid "authored on %1$s by %2$s" @@ -6074,389 +6325,238 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "திங்கள்" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Add into comments" -msgid "Display chart" -msgstr "கருதிட்குள் சேர்க்க" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6464,48 +6564,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6513,18 +6613,18 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6571,14 +6671,14 @@ msgstr "" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6638,14 +6738,14 @@ msgstr "" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "" @@ -6836,21 +6936,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6943,12 +7034,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "" @@ -7013,91 +7104,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7112,34 +7187,34 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "வெள்ளி" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "" @@ -7349,92 +7424,92 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "சரி" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "" @@ -7442,7 +7517,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7454,13 +7529,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7473,7 +7548,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "" @@ -7487,38 +7562,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7532,7 +7607,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7563,90 +7638,91 @@ msgstr "" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Add a new User" msgid "Edit event" msgstr "புதிய பயனாளரை சேர்க்க" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7677,7 +7753,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7696,109 +7772,109 @@ msgstr "" msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Action" msgid "Direction" msgstr "செயல்" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Actions" msgid "Return options" msgstr "செயல்கள்" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -7816,38 +7892,38 @@ msgstr "" msgid "Trigger %1$s has been created." msgstr "" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new User" msgid "Edit trigger" msgstr "புதிய பயனாளரை சேர்க்க" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -7941,7 +8017,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -7950,7 +8026,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -7958,7 +8034,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -7969,27 +8045,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "" @@ -8097,7 +8173,7 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8115,7 +8191,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -8134,7 +8210,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8143,11 +8219,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8229,7 +8305,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8249,8 +8325,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "" @@ -8296,13 +8372,13 @@ msgstr "" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "" @@ -8316,20 +8392,20 @@ msgstr "" msgid "after %s" msgstr "%s பின்" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s)" msgstr "%s களத்தை சேர்க்க" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8337,43 +8413,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "தேடு" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8481,11 +8520,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8496,7 +8535,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8525,7 +8564,7 @@ msgstr "பாதுகாப்பற்ற இணைப்பு" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "" @@ -8549,9 +8588,9 @@ msgstr "பதிப்புகளை காட்டு" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "" @@ -8663,126 +8702,126 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Actions" msgid "Active options" @@ -8796,51 +8835,51 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "" @@ -8852,87 +8891,87 @@ msgstr "" msgid "Modifications have been saved" msgstr "" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "" @@ -8940,17 +8979,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -8966,7 +9005,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "" @@ -8974,7 +9013,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -8982,24 +9021,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s தரவுத்தளம் இரத்துசெய்யப்பட்டது" msgstr[1] "%s தரவுத்தளம் இரத்துசெய்யப்பட்டது" -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9009,378 +9048,378 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 #, fuzzy #| msgctxt "First page" #| msgid "Begin" msgid "Begin" msgstr "ஆரம்பம்" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "பதிப்பு" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disable %s" msgid "disabled" msgstr "முடக்கு %s" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "ஏற்றுமதி" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "Overview" msgid "Users overview" msgstr "இறுதிப்பர்வை" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9389,138 +9428,138 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "பின்வரும் கொட்பிட்கான புதிய அனுமதியை சேர்க்க" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9529,251 +9568,251 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "வடிகட்டிகள்" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -9781,115 +9820,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "நிறுத்தப்பட்டுள்ளது" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -9897,78 +9936,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -9976,7 +10015,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -9984,42 +10023,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10027,33 +10066,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10062,242 +10101,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10305,99 +10344,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10405,18 +10444,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10424,65 +10463,65 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s களத்தை சேர்க்க" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10491,7 +10530,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10499,18 +10538,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10518,11 +10557,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10530,216 +10569,216 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "புதிய பயனாளரை சேர்க்க" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "வினவல்கள் நிறைவடைந்தது" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "கைமுறையாக நுழை" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "நடப்பாணை இணைப்பு" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "உள்ளமைவு: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "பொருத்துவாய்" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "மாறி அமைப்பு தோல்வியடைந்தது" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "சேவையக மாறிகள் மற்றும் அமைப்புக்கள்" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "அமர்வு மதிப்பு" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "முழுதளாவிய மதிப்பு" @@ -11025,169 +11064,169 @@ msgstr "" msgid "Wrong data" msgstr "தரவு இல்லை" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "சிட்டை" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "%s தரவுத்தளம் இரத்துசெய்யப்பட்டது" -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "பங்குனி" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "நிரல்" -#: tbl_chart.php:84 +#: tbl_chart.php:87 #, fuzzy #| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "கோடு" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Inline" msgctxt "Chart type" msgid "Spline" msgstr "உள்வரிசை" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "வரைபட தலைப்பு" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "X-அச்சு" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "தொடர்கள்" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "X-அச்சு சிட்டை:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "X மதிப்புக்கள்" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Y-அச்சு சிட்டை:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Y மதிப்புக்கள்:" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "%s இந்த அட்டவணை ஏற்கனவே உள்ளது!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "அட்டவணை %1$s உருவாக்கபட்டது." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "அகலம்" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "உயரம்" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- எதுவுமில்லை --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Spatial column" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "கோப்பை சேமி" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "கோப்பின் பெயர்" @@ -11203,30 +11242,30 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit view" msgid "Edit index" msgstr "தொகுப்பு பார்வை" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "சுட்டுப் பெயர்" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "சுட்டு வகை" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11249,260 +11288,260 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "அட்டவணை தெரிவுகள்" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "அட்டவணை பராமரிப்பு" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "அட்டவணையை ஒருங்கமை" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "தரவை அல்லது அட்டவணையை அழி" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "அட்டவணையை வெறுமையாக்கு (காலி)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "அட்டவணையை அழி (அழி)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "பிரிவினை பராமரிப்பு" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "பிரிவினை %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "ஆரய்தல்" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "சரிபார்" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "உகப்பாக்கு" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "மீள்வாகு" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "திருத்து" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "அட்டவணைகளை காட்டு" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "பயனுடைய" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "மாறா" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "இறக்காற்றல்" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "நிரல் நீளம்" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "நிரல் அளவு" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Session value" msgid "Distinct values" msgstr "அமர்வு மதிப்பு" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "ஒன்றுமில்லாத" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add columns" msgid "Move columns" msgstr "நெடுக்கைகளை சேர்" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "தொகுப்பு பார்வை" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "தொடர்பு பார்வை" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s களத்தை சேர்க்க" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "%s பின்" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -11652,65 +11691,37 @@ msgstr "" msgid "Create version" msgstr "பதிப்பை உருவாக்கு" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "எப்படி பயன்படுத்துவது" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "விவரிப்பு" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "பெயரை பார்" diff --git a/po/te.po b/po/te.po index 0a5089a252..f049951500 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:16+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Telugu \n" @@ -17,21 +17,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "అన్నీ చూపించు" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "పుట సంఖ్య:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgid "" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "వెళ్ళు" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "కీలకపదం" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "వివరణ" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "ఈ విలువని ఉపయోగించు" @@ -106,89 +106,90 @@ msgstr "" msgid "Database %1$s has been created." msgstr "" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "డేటాబేస్ వ్యాఖ్య: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "పట్టిక వ్యాఖ్యలు" # మొదటి అనువాదము -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "వరుస" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "అప్రమేయం" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "వ్యాఖ్యలు" @@ -197,14 +198,14 @@ msgstr "వ్యాఖ్యలు" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "కాదు" @@ -217,185 +218,185 @@ msgstr "కాదు" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "అవును" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవు" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "అన్నీ ఎంచుకో" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "అన్నీ ఎంచుకోవద్దు" # మొదటి అనువాదము -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "డేటాబేస్ పేరు ఖాళీగా ఉన్నది" # మొదటి అనువాదము -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Page has been created" msgid "Database %1$s has been renamed to %2$s" msgstr "పుటను సృష్టించడమైనది" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "%s డేటాబేస్ %s డేటాబేస్ కు కాపీ అయింది" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి" # మొదటి అనువాదము -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "డేటాబేస్ తొలగించండి" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "డేటాబేస్ ను తుడిచివేయి" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "నిర్మాణం మాత్రమే" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "నిర్మాణం, మరియు డేటా" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "డేటా మాత్రమే" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "కాపీ చేయబోయే ముందు డేటాబేస్ సృష్టించు" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "%s జతచేయి" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "పట్టిక" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "పరిమాణం" # మొదటి అనువాదము -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "వాడుకలో ఉన్నది" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "సృష్టి" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "చివరి మార్పు" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "చివరి చూపు" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -406,217 +407,217 @@ msgstr[1] "%s పట్టికలు" msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" msgstr "దృశ్య కల్పకం" # మొదటి అనువాదము -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "క్రమంలో పేర్చు" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "ఆరోహణ" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "అవరోహణ" # మొదటి అనువాదము -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "చూపించు" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "లక్షణాలు" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "చొప్పించు" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "మరియు" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "తొలగించు" # మొదటి అనువాదము -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "లేదా" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "మార్చు" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "లక్షణాల వరుసలను చేర్చు/తొలగించు" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "నిలువ వరుసల్ని చేర్చు/తొలగించు" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "క్వెరీ ని మార్చు" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "పట్టికల్ని వాడు" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "క్వెరీ ని సమర్పించు" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "యాక్సెస్ నిరోధించడమైనది" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "కనీసం ఒక్క పదం" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "అన్ని పదాలూ" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "మొత్తం: %s పోలిక" msgstr[1] "మొత్తం: %s పోలికలు" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" # మొదటి అనువాదము -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "వెతుకు" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "" -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Use Tables" msgid "Inside tables:" msgstr "పట్టికల్ని వాడు" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "తెలియని" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -624,190 +625,191 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "" # మొదటి అనువాదము -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "మొత్తము" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ఎగుమతి" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "" # మొదటి అనువాదము -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "ఖాళీ" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Display table filter" msgid "Replace table prefix" msgstr "పట్టిక వ్యాఖ్యలు" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" # మొదటి అనువాదము -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "డేటాబేస్" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "చివరి కూర్పు" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "స్థితి" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "చర్య" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "" @@ -820,27 +822,27 @@ msgid "Selected export type has to be saved in file!" msgstr "" # మొదటి అనువాదము -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "చెల్లని పరామితులు!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -849,182 +851,182 @@ msgstr "" msgid "Invalid export type" msgstr "చెల్లని ఎగుమతి రకం" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" # మొదటి అనువాదము -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "బిందువును చేర్చు" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a New User" msgid "Add a linestring" msgstr "కొత్త వాడుకరిని చేర్చు" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" # మొదటి అనువాదము -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add into comments" msgid "Add a polygon" msgstr "స్పందనలకు చేర్చు" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add a new User" msgid "Add geometry" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "వెనుకకి" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -1033,7 +1035,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1079,7 +1081,7 @@ msgid "Edit Index" msgstr "క్రొత్త వాడుకరిని చేర్చు" # మొదటి అనువాదము -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %d column(s) to index" @@ -1101,17 +1103,17 @@ msgstr "" msgid "The user name is empty!" msgstr "వాడుకరి పేరులో ఏమీ లేదు" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "సంకేతపదం ఖాళీగా ఉంది!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "సంకేతపదాలు సరిపోలలేదు!" # మొదటి అనువాదము -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1130,23 +1132,24 @@ msgstr "" msgid "Close" msgstr "మూసివేయి" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "మార్చు" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "" @@ -1156,24 +1159,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "మొత్తం" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1193,7 +1196,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "" @@ -1213,7 +1216,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -1258,14 +1261,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "మెబై" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "కిబై" @@ -1321,32 +1324,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "అనుసంధానాలు" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "బై" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "గిబై" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "టెబై" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "పిబై" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "ఎబై" @@ -1364,11 +1367,11 @@ msgstr "%s పట్టిక" msgid "Questions" msgstr "సంబంధాలు" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "అమరికలు" @@ -1391,11 +1394,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "ఏమీలేదు" @@ -1494,7 +1497,7 @@ msgstr "ప్రాధమిక అమరికలు" msgid "Current settings" msgstr "మరిన్ని అమరికలు" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Default title" msgid "Chart Title" @@ -1587,7 +1590,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "సమయం" @@ -1694,10 +1697,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "దిగుమతి" @@ -1755,9 +1758,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "రద్దుచేయి" @@ -1769,11 +1772,11 @@ msgstr "" msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1785,9 +1788,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "సరే" @@ -1844,17 +1847,17 @@ msgstr "" msgid "Show indexes" msgstr "" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Tables" msgid "(Enabled)" msgstr "పట్టికలు" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disable Statistics" msgid "(Disabled)" @@ -1889,7 +1892,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1931,8 +1934,8 @@ msgid "No rows selected" msgstr "" # మొదటి అనువాదము -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "మార్చుము" @@ -1940,18 +1943,18 @@ msgstr "మార్చుము" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "భద్రపరచు" @@ -1964,7 +1967,7 @@ msgid "Show search criteria" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2016,12 +2019,12 @@ msgstr "గణాంకాలను చూపించు" msgid "Data point content" msgstr "విషయ సూచిక" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2044,7 +2047,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "" @@ -2131,7 +2134,7 @@ msgstr "" msgid "Change Password" msgstr "సంకేతపదాన్ని మార్చు" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "మరిన్ని" @@ -2226,63 +2229,63 @@ msgid "December" msgstr "డిసెంబర్" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "డిసెం" @@ -2323,32 +2326,32 @@ msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "శని" @@ -2464,16 +2467,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "క్షణానికి" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "నిమిషానికి" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "గంటకి" @@ -2494,70 +2497,290 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Table comments" +msgid "Restore column order" +msgstr "పట్టిక వ్యాఖ్యలు" + +# మొదటి అనువాదము +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "మొదలు" + +# మొదటి అనువాదము +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "క్రితము" + +# మొదటి అనువాదము +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "తదుపరి" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "ముగింపు" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "మొదలుపెట్టు" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "More" +msgid "Mode" +msgstr "మరిన్ని" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "ఎంపికలు" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "పాక్షిక పాఠ్యాలు" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "పూర్తి పాఠ్యాలు" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Version information" +msgid "Hide browser transformation" +msgstr "సంచిక సమాచారం" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "మొత్తం" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Table comments" +msgid "Display chart" +msgstr "పట్టిక వ్యాఖ్యలు" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +# మొదటి అనువాదము +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +#| msgid "Create" +msgid "Create view" +msgstr "సృష్టించు" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "" @@ -2570,8 +2793,8 @@ msgstr "" msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "వ్యాఖ్య" @@ -2592,130 +2815,130 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "నిర్మాణాకృతి" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "వాడుకరి" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "పొరపాటు" @@ -2740,7 +2963,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2835,17 +3058,100 @@ 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 +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 +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 +msgid "Value" +msgstr "విలువ" + +# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "శోధించు" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" # మొదటి అనువాదము -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "తీసుకొనుము" @@ -2864,7 +3170,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3162,20 +3468,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%sకి స్వాగతం" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3187,59 +3493,55 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "ప్రవేశించు" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "" # మొదటి అనువాదము -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "వాడుకరి పేరు" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "సంకేతపదం:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "" @@ -3273,7 +3575,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "పట్టికలు" @@ -3285,13 +3587,13 @@ msgstr "పట్టికలు" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "" @@ -3316,247 +3618,214 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Server configuration" msgid "Failed to read configuration file" msgstr "సేవకి స్వరూపణం" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "గరిష్ఠం: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "పత్రావళి" # మొదటి అనువాదము #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "ఆది" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -# మొదటి అనువాదము -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "మొదలు" - -# మొదటి అనువాదము -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "క్రితము" - -# మొదటి అనువాదము -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "తదుపరి" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "ముగింపు" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "ముద్రించు" @@ -3590,8 +3859,8 @@ msgid "Closed" msgstr "మూసివేయి" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "" @@ -3732,9 +4001,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "" @@ -3939,10 +4208,6 @@ msgstr "డేటాబేస్" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3997,7 +4262,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "" @@ -4006,7 +4271,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "" @@ -4110,7 +4375,7 @@ msgid "MIME type" msgstr "" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "సంబంధాలు" @@ -5587,9 +5852,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "సంకేతపదం" @@ -5861,30 +6126,24 @@ msgstr "" msgid "Details..." msgstr "వివరాలు..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "సంకేతపదాన్ని మార్చు" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "సంకేతపదం లేదు" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "మళ్ళీ టైపుచెయ్యండి" @@ -5910,22 +6169,22 @@ msgstr "పట్టికను సృష్టించు" msgid "Create" msgstr "సృష్టించు" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "పేరు" @@ -6077,26 +6336,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "More settings" msgid "committed on %1$s by %2$s" msgstr "మరిన్ని అమరికలు" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "More settings" msgid "authored on %1$s by %2$s" @@ -6204,398 +6463,240 @@ msgstr "" msgid "Language" msgstr "భాష" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Table comments" -msgid "Restore column order" -msgstr "పట్టిక వ్యాఖ్యలు" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "మొదలుపెట్టు" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "More" -msgid "Mode" -msgstr "మరిన్ని" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "ఎంపికలు" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "పాక్షిక పాఠ్యాలు" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "పూర్తి పాఠ్యాలు" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Version information" -msgid "Hide browser transformation" -msgstr "సంచిక సమాచారం" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "మొత్తం" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Table comments" -msgid "Display chart" -msgstr "పట్టిక వ్యాఖ్యలు" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -# మొదటి అనువాదము -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -#| msgid "Create" -msgid "Create view" -msgstr "సృష్టించు" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "సంచిక సమాచారం" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" # మొదటి అనువాదము -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "పుటలు" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" # మొదటి అనువాదము -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "విన్నపములను వ్రాయుము" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6603,48 +6704,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6652,20 +6753,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "సంబంధాలు" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6712,14 +6813,14 @@ msgstr "" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6779,14 +6880,14 @@ msgstr "" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "" @@ -6981,21 +7082,12 @@ msgstr "చూపుము" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7091,12 +7183,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "పట్టిక పేరు" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "" @@ -7161,95 +7253,79 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "" - # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "దాచు" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "మరియు తరువాత" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "మునుపటి పుటకు వెళ్ళు" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "" # మొదటి అనువాదము -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "ఈ పుటకు తిరిగి వెళ్ళుము" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "విలువ" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7264,34 +7340,34 @@ msgstr "ఏమీలేదు" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fr" msgid "From" msgstr "శు" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "దాఖలుచేయి" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "" @@ -7513,92 +7589,92 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "సరే" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL చరిత్ర" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "వాడుకరి అభిరుచులు" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "వివరణ లేదు" @@ -7606,7 +7682,7 @@ msgstr "వివరణ లేదు" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7618,13 +7694,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "వాడుకరి పేరు" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7637,7 +7713,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "" @@ -7651,39 +7727,39 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" # మొదటి అనువాదము -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "ఏ వాడుకరి ఐనను" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "స్థానిక" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7697,7 +7773,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7731,100 +7807,101 @@ msgstr "పుటను సృష్టించడమైనది" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Add a new User" msgid "Edit event" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." msgid "Details" msgstr "వివరాలు..." -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "New name" msgid "Event name" msgstr "కొత్త పేరు" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "" # మొదటి అనువాదము -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "మార్చుము" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Start" msgctxt "Start of recurring event" msgid "Start" msgstr "మొదలుపెట్టు" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "ముగింపు" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7855,7 +7932,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7877,118 +7954,118 @@ msgstr "%s డేటాబేస్ తుడిచివేయడమైనద msgid "Routine %1$s has been created." msgstr "పుటను సృష్టించడమైనది" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Comments" msgid "Routine name" msgstr "వ్యాఖ్యలు" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "నేరు లంకెలు" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "పొడవు/విలువలు" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" # మొదటి అనువాదము -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "డేటాబేస్ తొలగించండి" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "పొడవు/విలువలు" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "పట్టిక ఎంపికలు" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "భద్రత" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8009,42 +8086,42 @@ msgstr "%s డేటాబేస్ తుడిచివేయడమైనద msgid "Trigger %1$s has been created." msgstr "పుటను సృష్టించడమైనది" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new User" msgid "Edit trigger" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "User name" msgid "Trigger name" msgstr "వాడుకరి పేరు" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "సమయం" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8143,7 +8220,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8152,7 +8229,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8160,7 +8237,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8171,27 +8248,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "విషయ సూచిక" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "" @@ -8298,7 +8375,7 @@ msgstr "తెలియని భాష: %1$s." msgid "Current Server" msgstr "" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8316,7 +8393,7 @@ msgstr "" msgid "Difference" msgstr "తేడా" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -8335,7 +8412,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8346,11 +8423,11 @@ msgstr "" msgid "Columns" msgstr "వ్యాఖ్యలు" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8432,7 +8509,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8452,8 +8529,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "" @@ -8499,13 +8576,13 @@ msgstr "ఏమీలేదు" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "పూర్తిపాఠ్యం" @@ -8521,21 +8598,21 @@ msgid "after %s" msgstr "%s మార్లు తరువాత" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format #| msgid "Add into comments" msgid "Add %s column(s)" msgstr "స్పందనలకు చేర్చు" # మొదటి అనువాదము -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have added a new user." msgid "You have to add at least one column." msgstr "మీరు క్రొత్త వినియోగదారుని చేర్చారు" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8543,44 +8620,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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 "" - -# Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "శోధించు" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8690,13 +8729,13 @@ msgstr "" msgid "Manage your settings" msgstr "ప్రాధమిక అమరికలు" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Server configuration" msgid "Configuration has been saved" msgstr "సేవకి స్వరూపణం" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8709,7 +8748,7 @@ msgstr "" msgid "Could not save configuration" msgstr "సేవకి స్వరూపణం" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8738,7 +8777,7 @@ msgstr "సేవకి స్వరూపణం" msgid "Appearance Settings" msgstr "రూపురేఖల అమరికలు" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "మరిన్ని అమరికలు" @@ -8763,9 +8802,9 @@ msgstr "చివరి కూర్పు" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "వాడుకరి" @@ -8878,142 +8917,142 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Table name" msgid "Filter databases by name" msgstr "పట్టిక పేరు" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Table name" msgid "Filter tables by name" msgstr "పట్టిక పేరు" # మొదటి అనువాదము -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "పట్టికను సృష్టించు" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "" # మొదటి అనువాదము -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "ఎడమవైపున మెనుని చూపించు/దాచు" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "సహాయం" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "నేరు లంకెలు" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" # మొదటి అనువాదము -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "చిన్నవి / పెద్దవి అన్నియు" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" # మొదటి అనువాదము -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Page creation failed" msgid "Toggle relation lines" msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" # మొదటి అనువాదము -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "అన్నింటిని చూపుము/దాచుము" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relations" msgid "Relation operator" msgstr "సంబంధాలు" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "కొత్త పేరు" # మొదటి అనువాదము -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "సృష్టించు" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "క్రియాశీల ఎంపికలు" @@ -9028,54 +9067,54 @@ msgid "Page creation failed" msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది" # మొదటి అనువాదము -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "పుట" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" # మొదటి అనువాదము -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a page" msgid "Create a page and export to it" msgstr "పుటని సృష్టించు" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "కొత్త పుట పేరు: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "" @@ -9087,92 +9126,92 @@ msgstr "" msgid "Modifications have been saved" msgstr "" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Server configuration" msgid "Could not import configuration" msgstr "సేవకి స్వరూపణం" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 #, fuzzy #| msgid "Server configuration" msgid "Merge with current configuration" msgstr "సేవకి స్వరూపణం" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" # మొదటి అనువాదము -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "అన్నీ" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "" @@ -9180,17 +9219,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "దస్త్రాలు" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -9206,7 +9245,7 @@ msgstr "" msgid "Original position" msgstr "అసలు స్థానం" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "సమాచారం" @@ -9214,7 +9253,7 @@ msgstr "సమాచారం" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -9222,24 +9261,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s డేటాబేస్ తుడిచివేయడమైనది" msgstr[1] "%s డేటాబేస్ తుడిచివేయడమైనది" -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "గణాంకాలని చేతనంచేయి" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9249,378 +9288,378 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" # మొదటి అనువాదము -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "మొదలు" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disable Statistics" msgid "disabled" msgstr "గణాంకాలని అచేతనంచేయి" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "ఏమీలేవు" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "పరిపాలన" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "ప్రవేశపు సమాచారం" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "వాడుకరి కనబడలేదు." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "%s అనే వాడుకరి ఇప్పటికే ఉన్నారు!" # మొదటి అనువాదము -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "మీరు క్రొత్త వాడుకరిని చేర్చారు." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "ఎగుమతి" # మొదటి అనువాదము -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "ఏదైనను" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "Overview" msgid "Users overview" msgstr "అవలోకనం" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9629,141 +9668,141 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" # మొదటి అనువాదము -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... పాతదే ఉంచుము" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "Database %s has been dropped." msgid "User has been added." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9772,258 +9811,258 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "సంబంధాలు" # మొదటి అనువాదము -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Analyze" msgid "Run analyzer" msgstr "విశదీకరించు" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Administration" msgid "Instructions" msgstr "పరిపాలన" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10031,117 +10070,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" # మొదటి అనువాదము -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "పంపించు" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" # మొదటి అనువాదము -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "ఆజ్ఞ" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10149,78 +10188,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10228,7 +10267,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10236,42 +10275,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10279,33 +10318,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10314,245 +10353,245 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" # మొదటి అనువాదము -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "సృష్టించబడిన పుటల సంఖ్య" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "చదివిన పుటల సంఖ్య" # మొదటి అనువాదము -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "వ్రాసిన పుటల సంఖ్య" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10560,99 +10599,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10660,18 +10699,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10679,70 +10718,70 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "మొదలుపెట్టు" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" # మొదటి అనువాదము -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add into comments" msgid "Add chart" msgstr "స్పందనలకు చేర్చు" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Table comments" msgid "Chart columns" msgstr "పట్టిక వ్యాఖ్యలు" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 #, fuzzy #| msgid "Leave blank for defaults" msgid "Reset to default" msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10751,7 +10790,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10759,18 +10798,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10778,11 +10817,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10791,85 +10830,85 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "డేటాబేస్ తొలగించండి" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "గణాంకాలను చూపించు" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -10878,7 +10917,7 @@ msgstr[0] "క్షణం" msgstr[1] "క్షణం" # మొదటి అనువాదము -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -10886,131 +10925,131 @@ msgid_plural "%d minutes" msgstr[0] "నిమిషం" msgstr[1] "నిమిషం" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "అనుసంధానాలు" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, fuzzy, php-format #| msgid "Server configuration" msgid "Configuration: %s" msgstr "సేవకి స్వరూపణం" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "సార్వత్రిక విలువ" @@ -11300,52 +11339,52 @@ msgstr "" msgid "Wrong data" msgstr "భోగట్టా" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "%s డేటాబేస్ తుడిచివేయడమైనది" -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" @@ -11353,121 +11392,121 @@ msgid "Bar" msgstr "మార్చి" # మొదటి అనువాదము -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Command" msgctxt "Chart type" msgid "Column" msgstr "ఆజ్ఞ" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "పిబై" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Default title" msgid "Chart title" msgstr "అప్రమేయ శీర్షిక" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "విలువ" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "విలువ" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "%s అనే పట్టిక ఇప్పటికే ఉంది!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "వెడల్పు" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "ఎత్తు" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Table comments" msgid "Label column" msgstr "పట్టిక వ్యాఖ్యలు" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- ఏమీలేదు -" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "మొత్తం" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11485,30 +11524,30 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Add a new User" msgid "Edit index" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11531,266 +11570,266 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "పట్టిక ఎంపికలు" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" # మొదటి అనువాదము -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "విశదీకరించు" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show all" msgid "Showing tables" msgstr "అన్నీ చూపించు" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "వరుసల గణాంకాలు" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "అంతర్గత సంబంధం" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Use this value" msgid "Distinct values" msgstr "ఈ విలువని ఉపయోగించు" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "ఏమీలేదు" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "మరిన్ని చర్యలను చూపించు" # మొదటి అనువాదము -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add into comments" msgid "Move columns" msgstr "స్పందనలకు చేర్చు" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Add a new User" msgid "Edit view" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "" # మొదటి అనువాదము -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add into comments" msgid "Add column" msgstr "స్పందనలకు చేర్చు" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "" # మొదటి అనువాదము -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "%s మార్లు తరువాత" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -11941,66 +11980,38 @@ msgstr "" msgid "Create version" msgstr "" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "మరిన్ని అలంకారాలను పొందండి!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "వివరణ" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" # మొదటి అనువాదము -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "నామధేయమును చూపుము" diff --git a/po/th.po b/po/th.po index 1b3052eede..8ec5ba52bb 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-04-21 15:20+0200\n" "Last-Translator: Setthawut Sawaengkit \n" "Language-Team: thai \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 0.10\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "แสดงทั้งหมด" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "หมายเลขหน้า:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,58 +37,58 @@ msgstr "" "ไม่สามารถเปลี่ยนแปลงข้อมูลของหน้าต่างเป้าหมายได้ อาจเป็นเพราะว่าคุณปิดหน้าต่างหลัก " "หรือสาเหตุจากการตั้งค่าความปลอดภัยให้ป้องกันการเปลี่ยนแปลงข้อมูลข้ามหน้าต่าง" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "ลงมือ" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "ชื่อคีย์" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "คำอธิบาย" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "ใช้ค่านี้" @@ -104,88 +104,89 @@ msgstr "ไม่สามารถเปิดไฟล์ %s ได้ เพ msgid "Database %1$s has been created." msgstr "ฐานข้อมูล %1$s ถูกสร้างเรียบร้อยแล้ว" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "หมายเหตุของฐานข้อมูล: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "หมายเหตุของตาราง" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "สดมภ์" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "ว่างเปล่า (null)" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "ค่าปริยาย" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "เชื่อมไปยัง" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "หมายเหตุ" @@ -194,14 +195,14 @@ msgstr "หมายเหตุ" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "ไม่" @@ -214,181 +215,181 @@ msgstr "ไม่" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "ใช่" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "ดูโครงสร้างของฐานข้อมูล" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "ไม่พบตารางใดๆ ในฐานข้อมูล" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "เลือกทั้งหมด" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "ไม่เลือกเลย" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "ไม่มีชื่อฐานข้อมูล" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "ฐานข้อมูล %s ได้ถูกเปลี่ยนชื่อเป็น %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "คัดลอกฐานข้อมูล %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "เอาฐานข้อมูลออก" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว" -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "โยนฐานข้อมูลทิ้ง" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "คัดลอกฐานข้อมูลเป็น" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "เฉพาะโครงสร้าง" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "เฉพาะข้อมูล" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "สร้างฐานข้อมูลก่อนคัดลอก" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "เพิ่ม %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "เพิ่มค่า AUTO_INCREMENT" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "เพิ่ม constraints" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "สลับไปยังฐานข้อมูลที่ถูกทำสำเนาไว้" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "การเรียงลำดับ" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "การจัดเก็บการตั้งค่าของ phpMyAdmin ได้ถูกระงับเอาไว้ คลิก %shere%s เพื่อหาสาเหตุ" -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "แก้ไข หรือส่งออก รีเลชันแนล สกีมา" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "ตาราง" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "แถว" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "ขนาด" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "ใช้อยู่" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "สร้างเมื่อ" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -398,117 +399,117 @@ msgstr[0] "%s ตาราง" msgid "You have to choose at least one column to display" msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "สลับไปยัง %svisual builder%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "เรียง" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "น้อยไปมาก" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "มากไปน้อย" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "แสดง" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "เงื่อนไข" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "เพิ่ม" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "และ" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "ลบ" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "หรือ" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "แก้ไข" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "เพิ่ม/ลบ แถว" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "เพิ่ม/ลบ สดมภ์" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "ปรับปรุงคำค้น" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "ใช้ตาราง" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "คำค้นบนฐานข้อมูล %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "ประมวลผลคำค้น" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "ไม่อนุญาตให้ใช้งาน" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "อย่างน้อยหนึ่งคำ" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "ทุกคำ" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "เหมือนทั้งวลี" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "รูปแบบคำพ้อง (regular expression)" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "ผลการค้นหา \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -516,277 +517,278 @@ msgid "%1$s match inside table %2$s" msgid_plural "%1$s matches inside table %2$s" msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "ลบตรงกับที่ตาราง %s หรือไม่?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "รวม: %s ผลลัพธ์ที่ตรง" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "ค้นหาในฐานข้อมูล" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "คำ หรือ ค่าที่ต้องการค้นหา (wildcard: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "ค้น:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "คำถูกแบ่งด้วยช่องว่าง (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "ภายในตาราง:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "ในคอลัมน์:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "ไม่พบตารางใดๆ ในฐานข้อมูล" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "ไม่ระบุ" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "ลบข้อมูลในตาราง %s เรียบร้อยแล้ว" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "การติดตามเริ่มทำงานแล้ว" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "หยุดการติดตามแล้ว" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "การแสดงผลนี้แสดงเพียงจำนวนข้อมูลเท่านี้, ดูข้อมูลเพิ่มเติมได้ที่ %sdocumentation%s" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "การทำข้อมูลซ้ำไปไว้อีกที่หนึ่ง" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "ผลรวม" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "เซิร์ฟเวอร์ MySQL นี้ใช้ storage engine ชื่อ %s เป็นค่าเริ่มต้น" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "ทำกับที่เลือก:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "เลือกทั้งหมด" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "ตรวจสอบตารางที่มี overhead" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ส่งออก" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "แสดง" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "ลบข้อมูล" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "โยนทิ้ง" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "ตรวจสอบตาราง" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "ปรับแต่งตาราง" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "ซ่อมแซมตาราง" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "วิเคราะห์ตาราง" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "เพิ่มคำนำไปยังตาราง" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "แทนที่คำนำไปยังตาราง" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "คัดลอกคำนำไปยังตาราง" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "พจนานุกรมข้อมูล" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "ตารางที่ถูกติดตาม" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "ฐานข้อมูล" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "เวอร์ชั่นล่าสุด" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "ถูกสร้าง" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "ปรับปรุงแล้ว" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "สถานะ" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "กระทำการ" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "ลบการติดตามตารางนี้" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "ใช้งานได้" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "ใช้งานไม่ได้" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "รุ่น" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "รายงานผลการติดตาม" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "เก็บโครงสร้างไว้" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "เลิกติดตามตาราง" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "ติดตามตาราง" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Log ของฐานข้อมูล" @@ -798,27 +800,27 @@ msgstr "ประเภทไม่ถูกต้อง!" msgid "Selected export type has to be saved in file!" msgstr "ชนิดการส่งออกที่ถูกเลือกต้องถูกบันทึกลงไฟล์" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "พารามิเตอร์ไม่ถูกต้อง!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "พื้นที่ไม่เพียงพอที่จะบันทึกไฟล์ %s" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "ให้เปลี่ยนชื่อไฟล์ หรือเลือกแบบเขียนทับไฟล์เดิม เพราะมีไฟล์ %s อยู่ในเซิร์ฟเวอร์อยู่แล้ว" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "บันทึกไฟล์ %s ไม่ได้ เพราะเว็บเซิร์ฟเวอร์ไม่อนุญาติ" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "ข้อมูลที่ส่งออกถูกบันทึกไว้ในไฟล์ %s" @@ -827,92 +829,92 @@ msgstr "ข้อมูลที่ส่งออกถูกบันทึก msgid "Invalid export type" msgstr "ประเภทที่ส่งออกไม่ถูกต้อง!" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "ค่าสำหรับคอลัมน์ \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "ใช้ OpenStreetMaps เป็นชั้นพื้นฐาน" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "เรขาคณิต" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "จุด" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "จุด %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "เพิ่มจุด" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "แถวข้อความ" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "ด้านนอก" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "ด้านใน" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "เพิ่มข้อความ" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "เพิ่มด้านใน" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "รูปหลายเหลี่ยม" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "เพิ่มรูปหลายเหลี่ยม" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "เพิ่มเรขาคณิต" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "ส่งออก" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "เลือก \"GeomFromText\" จากแถวฟังก์ชั่น และวางลงในข้อความช่อง \"ค่า\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -921,21 +923,21 @@ msgstr "" "คุณพยายามที่จะอับโหลดไฟล์ที่มีขนาดใหญ่เกินไป กรุณาดูที่ %sdocumentation%s เอกสารช่วยเหลือ " "เพื่อแก้ไขปัญหาดังกล่าวนี้ " -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "แสดงบุ๊คมาร์ค" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "ลบคำค้นที่จดไว้เรียบร้อยแล้ว" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "อ่านไฟล์ไม่ได้" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -944,7 +946,7 @@ msgstr "" "คุณพยายามที่จะโหลดไฟล์ที่ไม่สนับสนุนระบบการบีบอัดไฟล์ข้อมูล (%s) กรุณากำหนดค่าอย่างไรอย่างหนึ่ง " "หรือปิดการตั้งค่าของคุณ" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -954,32 +956,32 @@ msgstr "" "กรุณาแก้ไขไฟล์ตั้งค่าของ PHP ดูเอกสารเพิ่มเติมได้ที่ [a@./Documentation." "html#faq1_16@Documentation]FAQ 1.16[/a]" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "ไม่สามารถแปลงไฟล์ข้อมูลชุดอักขระได้ในไลค์บารี" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "ไม่สามารถโหลดนำเข้าปลั๊กอินได้ กรุณาตรวจสอบการติดตั้งของคุณ" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "ที่คั่นหน้า %s ได้ถูกสร้างขึ้น" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "นำเข้าได้สำเร็จ %d ได้ถูกนำเดินการแล้ว" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "หมดเวลาการนำเข้าสริปแล้ว กรุณานำเข้าไฟล์สริปใหม่" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -987,23 +989,23 @@ msgstr "" "ชุดข้อมูลที่นำเข้าล่าสุดไม่ได้สามารถนำเข้าได้ หมายความว่า phpMyAdmin ไม่สามารถนำเข้าได้ทัน " "ตามเวลารันสูงสุดที่กำหนดใน PHP" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "ย้อนกลับ" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "เบราเซอร์ที่ใช้เฟรมได้ จะช่วยให้ใช้ phpMyAdmin ได้ง่ายขึ้น" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "คำสั่ง \"ทิ้งฐานข้อมูล\" ถูกปิดไว้" @@ -1013,7 +1015,7 @@ msgstr "คำสั่ง \"ทิ้งฐานข้อมูล\" ถูก msgid "Do you really want to execute \"%s\"?" msgstr "คุณแน่ใจที่ต้องการจะ" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "คุณกำลังจะทำลายฐาข้อมูลทั้งหมด!" @@ -1053,7 +1055,7 @@ msgstr "เพิ่มดัชนีใหม่" msgid "Edit Index" msgstr "แก้ไขดัชนี" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "ทำดัชนีใน สดมส์นี้ %d" @@ -1071,16 +1073,16 @@ msgstr "ชื่อโฮสต์ยังว่างอยู่!" msgid "The user name is empty!" msgstr "ชื่อผู้ใช้ยังว่างอยู่!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "รหัสผ่านยังว่างอยู่!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "รหัสผ่านไม่ตรงกัน!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "เพิ่มผู้ใช้" @@ -1097,23 +1099,24 @@ msgstr "ถอนผู้ใช้ที่เลือก" msgid "Close" msgstr "ปิด" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "แก้ไข" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "สถานะการใช้ปัจจุบัน" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "โปรเซสที่ทำงานอยู่" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "คำสั่ง SQL ปัจจุบัน" @@ -1123,24 +1126,24 @@ msgstr "ข้อมูลคงที่" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "รวม" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "อื่นๆ" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1160,7 +1163,7 @@ msgstr "การจราจรของเครื่องแม่ข่า msgid "Connections since last refresh" msgstr "การเชื่อมต่อ จากครั้งล่าสุด" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "โพรเซส" @@ -1178,7 +1181,7 @@ msgstr "คำถามจากครั้งล่าสุด" msgid "Questions (executed statements by the server)" msgstr "คำสั่ง (คำสั่งที่รันโดยเครื่องแม่ข่าย)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "สถิติของคำสั่ง" @@ -1221,14 +1224,14 @@ msgid "System swap" msgstr "หน่วยความจำ swap ของระบบ" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "เมกกะไบต์" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "กิโลไบต์" @@ -1280,32 +1283,32 @@ msgstr "Byte ที่ส่ง" msgid "Bytes received" msgstr "Byte ที่รับ" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "การเชื่อมต่อ" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "ไบต์" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "กิกะไบต์" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "เทอราไบต์" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "เพตตะไบต์" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "เอกซะไบต์" @@ -1319,11 +1322,11 @@ msgstr "%d ตาราง" msgid "Questions" msgstr "คำถาม" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "การจราจร" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "การตั้งค่า" @@ -1343,11 +1346,11 @@ msgstr "เพิ่มแสดงผลไปในตารางข้อม msgid "Please add at least one variable to the series" msgstr "กรุณาเพิ่มค่าตัวแปรอย่างน้อยหนึ่งตัวเข้าไปในลำดับ" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "ไม่มี" @@ -1442,7 +1445,7 @@ msgstr "เปลี่ยนการตั้งค่า" msgid "Current settings" msgstr "ค่าที่ถูกตั้งปัจจุบัน" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "ชื่อการแสดงผล" @@ -1528,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "เวลา" @@ -1622,10 +1625,10 @@ msgid "" msgstr "" "การสร้างตารางแสดงผลล้มเหลว เป็นเพราะการตั้งค่า โปรดล้างค่ากลับไปเป็นการตั้งค่าแบบเริ่มแรก" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "นำเข้า" @@ -1677,9 +1680,9 @@ msgstr "ตัวแปรหรือสูตรที่ถูกใช้" msgid "Test" msgstr "ทดสอบ" -#: 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 +#: 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 msgid "Cancel" msgstr "ยกเลิก" @@ -1691,11 +1694,11 @@ msgstr "กำลังเรียกดูข้อมูล" msgid "Processing Request" msgstr "กำลังประมวลผล" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "การประมวลผลผิดพลาด" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "ยังไม่ได้เลือกฐานข้อมูล." @@ -1707,9 +1710,9 @@ msgstr "ทิ้งสดมส์" msgid "Adding Primary Key" msgstr "เพิ่มคีย์หลัก" -#: 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 +#: 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 msgid "OK" msgstr "ตกลง" @@ -1749,17 +1752,17 @@ msgstr "ซ่อนดัชนี" msgid "Show indexes" msgstr "แสดงดัชนี" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "เปิดใช้อยู่" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1789,7 +1792,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ตัวแก้ไข ENUM/SET" @@ -1828,8 +1831,8 @@ msgstr "แสดงช่องคำค้น SQL" msgid "No rows selected" msgstr "ยังไม่ได้เลือกแถว" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "เปลี่ยน" @@ -1837,18 +1840,18 @@ msgstr "เปลี่ยน" msgid "Query execution time" msgstr "เวลาที่ทำคำสั่ง" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "บันทึก" @@ -1860,7 +1863,7 @@ msgstr "ซ่อนหลักในการค้นหา" msgid "Show search criteria" msgstr "แสดงหลักการค้นหา" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "ค้นหาแบบ Zoom" @@ -1906,12 +1909,12 @@ msgstr "ผลลัพธ์ SQL" msgid "Data point content" msgstr "สารบัญ" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "ข้าม" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "คัดลอก" @@ -1931,7 +1934,7 @@ msgstr "เลือกคีย์นอก" msgid "Please select the primary key or a unique key" msgstr "กรุณาเลือกคีย์หลักหรือคียเดี่ยว" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "เลือกฟิลด์ที่ต้องการแสดง" @@ -2019,7 +2022,7 @@ msgstr "สร้างอัตโนมัติ" msgid "Change Password" msgstr "เปลี่ยนรหัสผ่าน" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "เพิ่มเติม" @@ -2108,63 +2111,63 @@ msgid "December" msgstr "ธันวาคม" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "ธ.ค." @@ -2205,32 +2208,32 @@ msgid "Sun" msgstr "อา." #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "ส." @@ -2345,16 +2348,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "ต่อวินาที" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "ต่อนาที" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "ต่อชั่วโมง" @@ -2375,45 +2378,256 @@ msgstr "สิทธิสำหรับไฟล์ตั้งค่าไม msgid "Font size" msgstr "ขนาดตัวอักษร" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "จุดเริ่มต้น" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "ก่อนหน้า" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "ต่อไป" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "ท้ายสุด" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "ส." + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows per page" +msgid "Number of rows" +msgstr "ระเบียนต่อหน้า" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "จ." + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "แนวนอน" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "แนวนอน (หมุนหัวเรื่อง)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "แนวตั้ง" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "เรียงโดยคีย์" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "กระบวนการ" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "ข้อความบางส่วน" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "ทั้งข้อความ" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "รีเลชันแนล สกีมา" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "รีเลชันแนล สกีมา" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +msgid "Hide browser transformation" +msgstr "การแปลงที่เรียกใช้ได้" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "ลบเรียบร้อยแล้ว" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "ฆ่าทิ้ง" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "ในคำค้น" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "แสดงระเบียนที่ " + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "ทั้งหมด" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "คำค้นใช้เวลา %01.4f วินาที" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "แสดงสกีมาของ PDF" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "รุ่นของเซิร์ฟเวอร์" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "ไม่พบลิงก์" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "มีข้อความผิดพลาดจำนวนมาก บางส่วนจึงซ่อนไว้ไม่แสดง" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "ไฟล์ไม่ได้ถูกอัพโหลด" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "ไฟล์ที่อัพโหลดขนาดเกินที่กำหนด" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "จำนวนไฟล์ที่อัพโหลดเกินจำนวนสูงสุดที่กำหนด" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "ไฟล์ที่ถูกอัพโหลดมาไม่ครบ" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "ไม่พบแฟ้มชั่วคราว" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "ไม่สามารถเขียนไฟล์ลงดิสได้" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "ไม่รองรับไฟล์ประเภทนี้" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "ไม่ทราบข้อผิดพลาดของไฟล์ที่จะอัพโหลด" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2421,26 +2635,41 @@ msgstr "" "มีข้อผิดพลาดขนาดย้ายไฟล์อัพหลด กรุณาดู [a@./Documentation.html#faq1_11@Documentation]" "FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "ข้อผิดพลาดขณะเคลื่อนย้ายไฟล์อัพโหลด" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "ไม่สามารถอ่านไฟล์อัพโหลด" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' (cookie) เสียก่อน จึงจะผ่านจุดนี้ไปได้" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' (cookie) เสียก่อน จึงจะผ่านจุดนี้ไปได้" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "ดัชนี" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "เอกลักษณ์" @@ -2453,8 +2682,8 @@ msgstr "กลุ่ม" msgid "Cardinality" msgstr "เอกเทศ" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "หมายเหตุ" @@ -2475,131 +2704,131 @@ msgid "" "removed." msgstr "ดัชนี %1$s และ %2$s น่าจะเป็นอันเดียวกัน ควรจะลบออกไปอันหนึ่ง" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "ฐานข้อมูล" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "เซิร์ฟเวอร์" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "โครงสร้าง" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "แทรก" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "กระบวนการ" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "คำค้นจากตัวอย่าง" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "สิทธิ" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "ผู้ใช้" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 #, fuzzy msgid "Binary log" msgstr "ข้อมูลไบนารี " -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "ตัวแปร" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "ชุดตัวอักษร" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "ผิดพลาด" @@ -2621,7 +2850,7 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "%1$d ระเบียนถูกเพิ่ม" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "เกิดข้อผิดพลาดขณะสร้าง PDF:" @@ -2711,16 +2940,108 @@ 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 +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 +#, 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 +msgid "Value" +msgstr "ค่า" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "ค้นหา" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "แทรก" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "เลือกฟิลด์ (อย่างน้อยหนึ่งฟิลด์):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "เพิ่มเงื่อนไขในการค้นหา:" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "ระเบียนต่อหน้า" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "ลำดับการแสดง:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "คำค้น SQL" + +#: 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 "ทำ \"คำค้นจากตัวอย่าง\" (wildcard: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "ทำ \"คำค้นจากตัวอย่าง\" (wildcard: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "เริ่มใหม่" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "ไม่สามารถแสดงตัวอย่างได้" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2739,7 +3060,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3037,20 +3358,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%s ยินดีต้อนรับ" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3062,60 +3383,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' (cookie) เสียก่อน จึงจะผ่านจุดนี้ไปได้" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "เข้าสู่ระบบ" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "เซิร์ฟเวอร์" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "ชื่อผู้ใช้:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "รหัสผ่าน:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' (cookie) เสียก่อน จึงจะผ่านจุดนี้ไปได้" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "ไม่สามารถล็อกอินเข้าเซิร์ฟเวอร์ MySQL ได้" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "อนุญาตให้เข้าใช้ไม่ได้ ชื่อผู้ใช้หรือรหัสผ่านผิด" @@ -3147,7 +3462,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "ตาราง" @@ -3159,13 +3474,13 @@ msgstr "ตาราง" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "ข้อมูล" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "เกินความจำเป็น" @@ -3192,30 +3507,22 @@ msgstr "ตรวจสอบสิทธิสำหรับฐานข้อ msgid "Check Privileges" msgstr "ตรวจสอบสิทธิ" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3226,215 +3533,193 @@ msgid "" msgstr "" "ต้องกำหนดค่า $cfg['PmaAbsoluteUri'] ในไฟล์คอนฟิกูเรชั่นเสียก่อน" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "ขนาดใหญ่สุด: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "เอกสารอ้างอิง" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "คำค้น SQL" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL แสดง: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "อธิบาย SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "ไม่ต้องอธิบาย SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "ไม่เอาโค้ด PHP" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "เรียกใหม่" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "ไม่ต้องตรวจสอบ SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "ตรวจสอบ SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "อา." #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y %Rน." -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "จุดเริ่มต้น" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "ก่อนหน้า" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "ต่อไป" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "ท้ายสุด" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "กระโดดไปที่ฐานข้อมูล "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "พิมพ์" @@ -3466,8 +3751,8 @@ msgid "Closed" msgstr "ไม่ได้ปิดเครื่องหมายคำพูด" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "ระงับการใช้อยู่" @@ -3619,9 +3904,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "เริ่มใหม่" @@ -3833,10 +4118,6 @@ msgstr "เสนอโครงสร้างตาราง" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3893,7 +4174,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "ส่งมาเป็นไฟล์" @@ -3903,7 +4184,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "รูปแบบ" @@ -4022,7 +4303,7 @@ msgid "MIME type" msgstr "MIME-type" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "รีเลชัน" @@ -5553,9 +5834,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "รหัสผ่าน" @@ -5830,30 +6111,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "ไม่มีรหัสผ่าน" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "พิมพ์ใหม่" @@ -5876,13 +6151,13 @@ msgstr "สร้างฐานข้อมูลใหม่" msgid "Create" msgstr "สร้าง" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "ไม่มีสิทธิ" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "เริ่มหน้าใหม่" @@ -5890,9 +6165,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "ชื่อ" @@ -6077,25 +6352,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "รุ่นของเซิร์ฟเวอร์" @@ -6206,406 +6481,241 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "ส." - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows per page" -msgid "Number of rows" -msgstr "ระเบียนต่อหน้า" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "จ." - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "แนวนอน" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "แนวนอน (หมุนหัวเรื่อง)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "แนวตั้ง" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "เรียงโดยคีย์" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "กระบวนการ" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "ข้อความบางส่วน" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "ทั้งข้อความ" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "รีเลชันแนล สกีมา" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "รีเลชันแนล สกีมา" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -msgid "Hide browser transformation" -msgstr "การแปลงที่เรียกใช้ได้" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "ลบเรียบร้อยแล้ว" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "ฆ่าทิ้ง" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "ในคำค้น" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "แสดงระเบียนที่ " - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "ทั้งหมด" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "คำค้นใช้เวลา %01.4f วินาที" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "แสดงสกีมาของ PDF" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "รุ่นของเซิร์ฟเวอร์" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "ไม่พบลิงก์" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 #, fuzzy msgid "Version information" msgstr "ข้อมูลล็อกอิน" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 #, fuzzy msgid "Data files" msgstr "เฉพาะข้อมูล" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "สถานะของ InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 #, fuzzy msgid "Pages to be flushed" msgstr "ล้างตาราง %s เรียบร้อยแล้ว" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6613,48 +6723,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6662,20 +6772,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "รีเลชัน" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6733,15 +6843,15 @@ msgstr "dump ตาราง" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "ถูกส่ง" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6812,14 +6922,14 @@ msgstr "MIME-types ที่มีอยู่" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "โฮสต์" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "เวลาในการสร้าง" @@ -7017,21 +7127,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." @@ -7126,12 +7227,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "ชื่อคอลัมน์" @@ -7196,96 +7297,78 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "ฟังก์ชั่น" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "ข้อมูลไบนารี " -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "ข้อมูลไบนารี - ห้ามแก้ไข " -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "แทรก" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "แทรกเป็นแถวใหม่" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "แทรกระเบียนใหม่" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 #, fuzzy msgid "Go back to this page" msgstr "ส่งกลับ" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "ค่า" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7302,38 +7385,38 @@ msgstr "ไม่มี" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "ศ." -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "ส่ง" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Add new field" msgid "Add prefix" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "คุณแน่ใจที่ต้องการจะ" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "ไม่มีการเปลี่ยนแปลง" @@ -7546,95 +7629,95 @@ msgstr "" msgid "This format has no options" msgstr "รูปแบบนี้ไม่มีตัวเลือก" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "ไม่ตกลง" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "ตกลง" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "เปิดใช้อยู่" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "ความสามารถด้านรีเลชันทั่วไป" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "ความสามารถด้านการแสดงผล" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "การสร้างเอกสาร PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "แสดงหมายเหตุของคอลัมน์" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 #, fuzzy msgid "Browser transformation" msgstr "การแปลงที่เรียกใช้ได้" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "โปรดอ่านเอกสารเกี่ยวกับ วิธีการปรับปรุงตาราง Column_comments (เก็บหมายเหตุของคอลัมน์) " "ของคุณ" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "คำค้นนี้ถูกจดไว้แล้ว" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-history" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "ไม่มีรายละเอียด" @@ -7642,7 +7725,7 @@ msgstr "ไม่มีรายละเอียด" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7654,13 +7737,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "ชื่อผู้ใช้" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "เรียง" @@ -7674,7 +7757,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "ตัวแปร" @@ -7689,38 +7772,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "ผู้ใช้ใดๆ" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "โฮสต์ใดๆ" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "โลคอล" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "โฮสต์นี้" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7734,7 +7817,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7766,99 +7849,100 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "ถูกส่ง" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "โพรเซส" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy msgid "Event name" msgstr "ชนิดคำค้น" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 #, fuzzy msgid "Event type" msgstr "ชนิดคำค้น" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "เปลี่ยน" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "สถานะ" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "ท้ายสุด" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "คำสั่ง INSERT เต็มรูปแบบ" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7889,7 +7973,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7909,118 +7993,118 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "Routine %1$s has been created." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "ชื่อคอลัมน์" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "สร้างเมื่อ" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "ความยาว/เซต*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "เอาฐานข้อมูลออก" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "ความยาว/เซต*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "ตัวเลือกตาราง" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "ชนิดคำค้น" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8039,41 +8123,41 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "Trigger %1$s has been created." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "เพิ่มผู้ใช้ใหม่" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "ชื่อผู้ใช้" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "เวลา" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8172,7 +8256,7 @@ msgstr "ไม่มีเหตุการณ์ใดๆ" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8182,7 +8266,7 @@ msgstr "ไม่มีตาราง \"%s\"!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8190,7 +8274,7 @@ msgid "Please configure the coordinates for table %s" msgstr "กรุณาตั้งค่าโคออร์ดิเนตของตาราง %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8202,27 +8286,27 @@ msgstr "schema ของฐานข้อมูล \"%s\" - หน้า %s" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "รีเลชันแนล สกีมา" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "สารบัญ" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "แอตทริบิวต์" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "เพิ่มเติม" @@ -8340,7 +8424,7 @@ msgstr "" msgid "Current Server" msgstr "เซิร์ฟเวอร์" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "ค้นหาในฐานข้อมูล" @@ -8359,7 +8443,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "ค้นหาในฐานข้อมูล" @@ -8379,7 +8463,7 @@ msgstr "ประมวลผลคำค้นบนฐานข้อมูล msgid "Run SQL query/queries on database %s" msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" @@ -8391,11 +8475,11 @@ msgstr "ปฏิทิน" msgid "Columns" msgstr "ชื่อคอลัมน์" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8489,7 +8573,7 @@ msgstr "" "ไม่สามารถเริ่มตัวตรวจสอบ SQL ได้. กรุณาตรวจสอบว่า คุณได้ติดตั้ง php extensions ที่จำเป็น " "ดังที่อธิบายไว้ใน %sdocumentation%s เรียบร้อยแล้ว" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8519,8 +8603,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "ดัชนี" @@ -8572,13 +8656,13 @@ msgstr "ไม่มี" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "ไพรมารี" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "ข้อความเต็ม (fulltext)" @@ -8592,19 +8676,19 @@ msgstr "" msgid "after %s" msgstr "หลัง %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format msgid "Add %s column(s)" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8612,46 +8696,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "ค้นหา" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "เลือกฟิลด์ (อย่างน้อยหนึ่งฟิลด์):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "เพิ่มเงื่อนไขในการค้นหา:" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "ระเบียนต่อหน้า" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "ลำดับการแสดง:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "ทำ \"คำค้นจากตัวอย่าง\" (wildcard: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8767,13 +8811,13 @@ msgstr "" msgid "Manage your settings" msgstr "ความสามารถด้านรีเลชันทั่วไป" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8784,7 +8828,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8811,7 +8855,7 @@ msgstr "เปรียบเทียบการเชื่อมต่อเ msgid "Appearance Settings" msgstr "ตั้งค่าลักษณะที่ปรากฏ" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "ตั้งค่าเพิ่มเติม" @@ -8833,9 +8877,9 @@ msgstr "รุ่นของเซิร์ฟเวอร์" msgid "Protocol version" msgstr "รุ่นของโพรโทคอล" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "ผู้ใช้" @@ -8958,146 +9002,146 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "ไม่มีฐานข้อมูล" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "เรียงค่าในตารางตาม" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "เรียงค่าในตารางตาม" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "เริ่มหน้าใหม่" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "โปรดเลือกฐานข้อมูล" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Traditional Chinese" msgid "Toggle relation lines" msgstr "จีน (ไต้หวัน)" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "ประมวลผลคำค้น" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "แสดงทั้งหมด" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "มุมมองรีเลชัน" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "ส่งออก" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "ในคำค้น" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "เปลี่ยนชื่อตารางเป็น" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "ชื่อผู้ใช้" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "สร้าง" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9112,62 +9156,62 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "ใช้งาน" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "นำเข้าไฟล์" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "ยังไม่ได้เลือกแถว" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "สร้างดัชนีใหม่" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "ชื่อผู้ใช้" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 #, fuzzy msgid "Internal relation added" msgstr "รีเลชันภายใน" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 #, fuzzy msgid "Relation deleted" msgstr "มุมมองรีเลชัน" @@ -9180,89 +9224,89 @@ msgstr "" msgid "Modifications have been saved" msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "นำเข้าไฟล์" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "นำเข้าไฟล์" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "ทั้งหมด" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "ไม่พบตาราง %s ใน %s" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9272,18 +9316,18 @@ msgstr "ไม่มีตาราง \"%s\"!" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "จำนวนฟิลด์" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "ตัดทอนคำค้นที่แสดง" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "แสดงคำค้นแบบเต็ม" @@ -9299,7 +9343,7 @@ msgstr "ตำแหน่ง" msgid "Original position" msgstr "ตำแหน่งเริ่มแรก" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "ข้อมูล" @@ -9307,31 +9351,31 @@ msgstr "ข้อมูล" msgid "Character Sets and Collations" msgstr "ชุดตัวอักษร และการเรียงลำดับ" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%s ฐานข้อมูลได้ถูกทิ้งไปเรียบร้อยแล้ว." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "สถิติฐานข้อมูล" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "ให้มีการเก็บสถิติ" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9343,390 +9387,390 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 #, fuzzy msgid "View dump (schema) of databases" msgstr "ดูโครงสร้างของฐานข้อมูล" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "จุดเริ่มต้น" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "รุ่นของ PHP" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "ระงับการใช้อยู่" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "ให้สิทธิทุกอย่าง ยกเว้นการให้สิทธิแก่ผู้อื่น (GRANT)." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "อนุญาตให้เปลี่ยนโครงสร้างของตารางที่มีอยู่เดิม." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "อนุญาตให้สร้างฐานข้อมูล และตารางใหม่." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 #, fuzzy msgid "Allows creating stored routines." msgstr "อนุญาตให้สร้างตารางใหม่." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "อนุญาตให้สร้างตารางใหม่." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "อนุญาตให้สร้างตารางชั่วคราว." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 #, fuzzy msgid "Allows creating new views." msgstr "อนุญาตให้สร้างตารางใหม่." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "อนุญาตให้ลบข้อมูล" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "อนุญาตให้ทิ้งฐานข้อมูล และตาราง" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "อนุญาตให้ทิ้งตาราง" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "อนุญาตให้นำเข้าข้อมูล และส่งออกข้อมูล ไปที่ไฟล์" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "จำกัดจำนวนของคำค้น ที่ผู้ใช้จะสามารถส่งมาที่เซิร์ฟเวอร์ได้ ต่อชั่วโมง" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" "จำกัดจำนวนของคำสั่ง ที่จะเปลี่ยนแปลงตาราง หรือฐานข้อมูลใดๆ ที่ผู้ใช้จะสามารถสั่งได้ ต่อชั่วโมง" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "ไม่มีผลใน MySQL รุ่นนี้" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "อนุญาตให้เรียกใช้ค่ากำหนดของเซิร์ฟเวอร์ใหม่ และล้างแคชของเซิร์ฟเวอร์" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "มอบสิทธิให้ผู้ใช้ ในการถามว่า slaves หรือ masters อยู่ที่ไหน." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "อนุญาตให้อ่านข้อมูลได้." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "สามารถเรียกดูรายการฐานข้อมูลทั้งหมดได้" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "อนุญาตให้ปิดเซิร์ฟเวอร์ได้" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "อนุญาตให้เปลี่ยนข้อมูลได้." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "ไม่มีสิทธิใดๆ." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "ไม่มี" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "สิทธิเจาะจงเฉพาะตาราง" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ " -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "การดูแลระบบ" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "สิทธิแบบโกลบอล" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "ขีดจำกัดของทรัพยากร" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "โปรดทราบ: ถ้าเปลี่ยนค่าเหล่านี้เป็น 0 (ศูนย์) จะหมายถึง ไม่มีขีดจำกัด." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "ข้อมูลล็อกอิน" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "ไม่พบผู้ใช้ใดๆ." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "คุณได้ปรับปรุงสิทธิสำหรับ %s แล้ว" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "คุณได้เพิกถอนสิทธิของ %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "เปลี่ยนรหัสผ่านของ %s เรียบร้อยแล้ว" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "กำลังลบ %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "ปรับปรุงสิทธิเข้าถึงใหม่อีกรอบ" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "แก้ไขสิทธิ" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "เพิกถอน" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "ส่งออก" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "ใดๆ" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "สิทธิ" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "สิทธิ" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "ข้อมูลทั่วไปของผู้ใช้" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "มอบสิทธิ" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "ถอนผู้ใช้ที่เลือก" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9735,141 +9779,141 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "สิทธิเฉพาะคอลัมน์" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "เพิ่มสิทธิของฐานข้อมูลต่อไปนี้" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "เพิ่มสิทธิของตารางต่อไปนี้" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... เก็บของเก่าไว้." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... ลบของเก่าทิ้งไปจากตารางผู้ใช้." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น." -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "มอบสิทธิทั้งหมดสำหรับฐานข้อมูล "%s"." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "โกลบอล" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "เฉพาะฐานข้อมูล" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "ไวล์การ์ด" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "โยนวิว %s ทิ้งไปเรียบร้อยแล้ว" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9878,271 +9922,271 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "โปรดเลือกฐานข้อมูล" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "ข้อความเต็ม (fulltext)" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "เฉพาะโครงสร้าง" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "เฉพาะโครงสร้าง" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "เธรด %s ถูกทำลายเรียบร้อยแล้ว." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin ไม่สามารถฆ่าเธรด %s. บางทีมันอาจจะถูกปิดไปแล้วก็ได้." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 #, fuzzy msgid "Query cache" msgstr "ชนิดคำค้น" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 #, fuzzy msgid "Delayed inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 #, fuzzy msgid "Show open tables" msgstr "แสดงตาราง" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "ข้อมูลรันไทม์" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "เรียกใหม่" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy msgid "Show only alert values" msgstr "แสดงตาราง" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy msgid "Show unformatted values" msgstr "แสดงตาราง" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "รีเลชัน" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "ชนิดคำค้น" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "ฟังก์ชั่น" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10150,117 +10194,117 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "คำสั่ง" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "ได้รับ" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "ถูกส่ง" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "ความพยายามล้มเหลว" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "ยกเลิก" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "คำสั่ง" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10268,78 +10312,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10347,7 +10391,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10355,42 +10399,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10398,33 +10442,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10433,242 +10477,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10676,99 +10720,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10776,18 +10820,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10795,70 +10839,70 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "หยุดการติดตามแล้ว" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "ส." -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "เพิ่มฟิลด์ใหม่" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "เรียกใหม่" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10867,7 +10911,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10875,18 +10919,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10894,11 +10938,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10906,90 +10950,90 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "เอาฐานข้อมูลออก" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "เลือกตาราง" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "เพิ่มผู้ใช้ใหม่" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "คำค้น SQL" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "สถิติของแถว" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "เลือกทั้งหมด" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "ชนิดคำค้น" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" @@ -10997,7 +11041,7 @@ msgid_plural "%d seconds" msgstr[0] "ต่อวินาที" msgstr[1] "ต่อวินาที" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" @@ -11005,131 +11049,131 @@ msgid_plural "%d minutes" msgstr[0] "ใช้อยู่" msgstr[1] "ใช้อยู่" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "ดัชนี" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "อัพเดทแถว" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "เพิ่มแถว" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "ใช้การเปลี่ยนแปลงที่เลือก" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "ทำให้ฐานข้อมูลเท่ากัน" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "คำค้น SQL" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "การเชื่อมต่อ" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "ตัวแปร และค่ากำหนด ของเซิร์ฟเวอร์" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "ค่าเซสชั่น" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "ค่าแบบโกลบอล" @@ -11418,176 +11462,176 @@ msgstr "" msgid "Wrong data" msgstr "ไม่มีฐานข้อมูล" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "คุณแน่ใจที่ต้องการจะ" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "ตรวจสอบ SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "ผลลัพธ์ SQL" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "สร้างโดย" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "ป้ายชื่อ" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "มี.ค." -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "สดมภ์" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "เพตตะไบต์" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "นำเข้าไฟล์" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "คำค้น SQL" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "ค่า" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "ค่า" -#: tbl_create.php:31 +#: tbl_create.php:30 #, fuzzy, php-format msgid "Table %s already exists!" msgstr "มีผู้ใช้ %s อยู่แล้ว!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "ดูโครงสร้างของตาราง" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "รวม" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "บันทึกลงเป็นไฟล์" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -11605,32 +11649,32 @@ msgstr "เปลี่ยนชื่อดัชนีเป็น PRIMARY ไ msgid "No index parts defined!" msgstr "ไม่ได้กำหนดส่วนใดๆ ของดัชนี!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "เพิ่มฟิลด์ใหม่" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Add new field" msgid "Edit index" msgstr "เพิ่มฟิลด์ใหม่" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "ชื่อดัชนี :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(ชื่อของไพรมารีคีย์จะต้องเป็น \"PRIMARY\" เท่านั้น!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "ชนิดของดัชนี :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "เพิ่มดัชนีคอลัมน์ %s" @@ -11653,277 +11697,277 @@ msgstr "ตาราง %s ถูกย้ายไป %s แล้ว" msgid "Table %s has been copied to %s." msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "ชื่อตารางยังว่างอยู่!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "เรียงค่าในตารางตาม" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(เดี่ยว)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "ย้ายตารางไป (database.table):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "ตัวเลือกตาราง" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "เปลี่ยนชื่อตารางเป็น" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "คัดลอกตารางไปยัง (ฐานข้อมูล.ตาราง):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "การดูแลรักษาตาราง" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "จัดระเบียบตาราง" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "ล้างตาราง %s เรียบร้อยแล้ว" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "ล้างตาราง (flush)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "dump ตาราง" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "ลบข้อมูลตาราง (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "ไม่มีฐานข้อมูล" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "การดูแลรักษาตาราง" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "วิเคราะห์" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "ตรวจสอบ" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "ซ่อมแซม" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "ตรวจสอบความสมบูรณ์ของการอ้างถึง:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "แสดงตาราง" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "เนื้อที่ที่ใช้" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "มีผล" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "สถิติของแถว" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "ไม่คงที่" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "ความยาวแถว" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "ขนาดแถว " -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "รีเลชันภายใน" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Session value" msgid "Distinct values" msgstr "ค่าเซสชั่น" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add new field" msgid "Add SPATIAL index" msgstr "เพิ่มฟิลด์ใหม่" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "ไม่มี" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "ได้เพิ่มไพรมารีคีย์แล้วใน %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "ได้เพิ่มดัชนีแล้วใน %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "แสดงข้อมูลของ PHP" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add columns" msgid "Move columns" msgstr "เพิ่มฟิลด์ใหม่" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "แสดง" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "มุมมองรีเลชัน" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "เสนอโครงสร้างตาราง" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy msgid "Add column" msgstr "เพิ่มฟิลด์ใหม่" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "ที่จุดสุดท้ายของตาราง" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "ที่จุดเริ่มต้นของตาราง" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "หลัง %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "สร้างดัชนีโดยคอลัมน์ %s" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12079,72 +12123,39 @@ msgstr "" msgid "Create version" msgstr "รุ่นของเซิร์ฟเวอร์" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "ทำ \"คำค้นจากตัวอย่าง\" (wildcard: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "คำค้น SQL" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "เริ่มใหม่" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "MIME-types ที่มีอยู่" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "การแปลงที่เรียกใช้ได้" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "รายละเอียด" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "คุณไม่มีสิทธิที่จะเข้ามาตรงนี้!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "ปรับปรุงโพรไฟล์เรียบร้อยแล้ว" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/tk.po b/po/tk.po index a4e92b446e..fff6fe48d6 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,7 +7,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-03-23 10:42+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen \n" @@ -18,21 +18,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 0.8\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Hemmesini görkez" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Sahypa belgisi:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -42,58 +42,58 @@ msgstr "" "ýapdyňyz, ýada siziň brauzeriňiziň hopsuzlyk sazlamalary äpişgeler-arasy " "täzelemäni saklaýandyr." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Git" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Açarsözi" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Düşündiriş" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Şu bahany ulan" @@ -111,88 +111,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s maglumatlar ulgamy döredildi" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "" -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "" @@ -201,14 +202,14 @@ msgstr "" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "" @@ -221,181 +222,181 @@ msgstr "" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s maglumatlar ulgamy döredildi" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Database %1$s has been copied to %2$s" msgstr "%1$s maglumatlar ulgamy döredildi" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "" -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -406,395 +407,396 @@ msgstr[1] "" msgid "You have to choose at least one column to display" msgstr "" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "" msgstr[1] "" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "" -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "" @@ -806,27 +808,27 @@ msgstr "" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "" @@ -835,174 +837,174 @@ msgstr "" msgid "Invalid export type" msgstr "" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -1011,7 +1013,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1051,7 +1053,7 @@ msgstr "" msgid "Edit Index" msgstr "" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "" @@ -1069,16 +1071,16 @@ msgstr "" msgid "The user name is empty!" msgstr "" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "" @@ -1095,23 +1097,24 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "" @@ -1121,24 +1124,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "" @@ -1158,7 +1161,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "" @@ -1176,7 +1179,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "" @@ -1217,14 +1220,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "" @@ -1276,32 +1279,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "" @@ -1315,11 +1318,11 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "" @@ -1339,11 +1342,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "" @@ -1436,7 +1439,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "" @@ -1514,7 +1517,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "" @@ -1602,10 +1605,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1653,9 +1656,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1667,11 +1670,11 @@ msgstr "" msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1683,9 +1686,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "" @@ -1725,15 +1728,15 @@ msgstr "" msgid "Show indexes" msgstr "" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "" @@ -1761,7 +1764,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1800,8 +1803,8 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "" @@ -1809,18 +1812,18 @@ msgstr "" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "" @@ -1832,7 +1835,7 @@ msgstr "" msgid "Show search criteria" msgstr "" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "" @@ -1876,12 +1879,12 @@ msgstr "" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -1901,7 +1904,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "" @@ -1984,7 +1987,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "" @@ -2073,63 +2076,63 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "" @@ -2167,32 +2170,32 @@ msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "" @@ -2305,16 +2308,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "" @@ -2335,70 +2338,266 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "" @@ -2411,8 +2610,8 @@ msgstr "" msgid "Cardinality" msgstr "" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "" @@ -2433,128 +2632,128 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "" @@ -2579,7 +2778,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "" msgstr[1] "" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2667,16 +2866,96 @@ 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 +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 +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 +msgid "Value" +msgstr "" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "" @@ -2695,7 +2974,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -2984,20 +3263,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3009,58 +3288,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "" @@ -3092,7 +3367,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "" @@ -3104,13 +3379,13 @@ msgstr "" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "" @@ -3135,233 +3410,211 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "" @@ -3391,8 +3644,8 @@ msgid "Closed" msgstr "" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "" @@ -3533,9 +3786,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "" @@ -3737,10 +3990,6 @@ msgstr "" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -3793,7 +4042,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "" @@ -3802,7 +4051,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "" @@ -3906,7 +4155,7 @@ msgid "MIME type" msgstr "" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "" @@ -5356,9 +5605,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -5625,30 +5874,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "" @@ -5669,22 +5912,22 @@ msgstr "" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -5835,25 +6078,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "" @@ -5960,383 +6203,238 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6344,48 +6442,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6393,18 +6491,18 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6451,14 +6549,14 @@ msgstr "" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "" @@ -6516,14 +6614,14 @@ msgstr "" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "" @@ -6708,21 +6806,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6814,12 +6903,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "" @@ -6884,91 +6973,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6983,32 +7056,32 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 msgid "Do you really want to execute the following query?" msgstr "" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "" @@ -7218,90 +7291,90 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "" @@ -7309,7 +7382,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7321,13 +7394,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7340,7 +7413,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "" @@ -7354,38 +7427,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7399,7 +7472,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7430,88 +7503,89 @@ msgstr "" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7540,7 +7614,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7559,105 +7633,105 @@ msgstr "" msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -7675,36 +7749,36 @@ msgstr "" msgid "Trigger %1$s has been created." msgstr "" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -7788,7 +7862,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -7797,7 +7871,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -7805,7 +7879,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -7816,27 +7890,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "" @@ -7942,7 +8016,7 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -7960,7 +8034,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -7979,7 +8053,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -7988,11 +8062,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8074,7 +8148,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8094,8 +8168,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "" @@ -8139,13 +8213,13 @@ msgstr "" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "" @@ -8158,17 +8232,17 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8176,41 +8250,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8318,11 +8357,11 @@ msgstr "" msgid "Manage your settings" msgstr "" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8333,7 +8372,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8360,7 +8399,7 @@ msgstr "" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "" @@ -8380,9 +8419,9 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "" @@ -8490,126 +8529,126 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "" @@ -8621,51 +8660,51 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "" @@ -8677,87 +8716,87 @@ msgstr "" msgid "Modifications have been saved" msgstr "" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "" @@ -8765,17 +8804,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -8791,7 +8830,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "" @@ -8799,31 +8838,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "" msgstr[1] "" -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -8833,369 +8872,369 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9204,138 +9243,138 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9344,251 +9383,251 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -9596,115 +9635,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -9712,78 +9751,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -9791,7 +9830,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -9799,42 +9838,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -9842,33 +9881,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -9877,242 +9916,242 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10120,99 +10159,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10220,18 +10259,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10239,61 +10278,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10302,7 +10341,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10310,18 +10349,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10329,11 +10368,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10341,214 +10380,214 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "" msgstr[1] "" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -10832,153 +10871,153 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "" -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "" @@ -10994,28 +11033,28 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11038,254 +11077,254 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Use this value" msgid "Distinct values" msgstr "Şu bahany ulan" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -11433,65 +11472,37 @@ msgstr "" msgid "Create version" msgstr "" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/tr.po b/po/tr.po index 49feda491f..bacd6967ae 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,8 +3,8 @@ 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-04 13:49+0200\n" -"PO-Revision-Date: 2012-06-01 19:33+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" +"PO-Revision-Date: 2012-06-18 13:24+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Tümünü göster" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Sayfa numarası:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ 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:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Git" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Anahtar adı" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Açıklama" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Bu değeri kullan" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Veritabanı %1$s oluşturuldu." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Veritabanı yorumu: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Tablo yorumları" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Sütun" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Boş" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Varsayılan" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Bağlantı verilen:" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Yorumlar" @@ -197,14 +198,14 @@ msgstr "Yorumlar" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Hayır" @@ -217,120 +218,120 @@ msgstr "Hayır" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Evet" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Veritabanının dökümünü (şemasını) göster" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Veritabanında tablo bulunamadı." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Tümünü Seç" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Tüm Seçimi Kaldır" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Veritabanı adı boş!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "%1$s veritabanı %2$s olarak yeniden adlandırıldı" -#: db_operations.php:315 +#: db_operations.php:318 #, php-format msgid "Database %1$s has been copied to %2$s" msgstr "%1$s veritabanı %2$s veritabanına kopyalandı" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Veritabanını şuna yeniden adlandır" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Veritabanını kaldır" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "%s veritabanı kaldırıldı." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Veritabanını kaldır (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Veritabanını şuraya kopyala:" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Sadece yapı" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Yapı ve veri" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Sadece veri" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Kopyalamadan önce VERİTABANI OLUŞTUR" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "%s ekle" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT değeri ekle" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Kısıtlamaları ekle" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Kopyalanmış veritabanına geç" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Karşılaştırma" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -339,59 +340,59 @@ msgstr "" "phpMyAdmin yapılandırma depolaması devre dışı bırakıldı. Nedenini öğrenmek " "için %sburaya%s tıklayın." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Bağlantılı şemayı dışa aktar veya düzenle" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tablo" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Satır" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Boyut" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "kullanımda" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Oluşturma" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Son güncellenme" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Son kontrol" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -401,208 +402,208 @@ msgstr[0] "%s tablo" msgid "You have to choose at least one column to display" msgstr "Görüntülemek için en az bir sütun seçmelisiniz" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "%sGörsel yaratıcı'ya%s geç" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sırala" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Küçükten Büyüğe" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Büyükten Küçüğe" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Göster" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriter" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Ve" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Veya" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Değiştir" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Kriter satırı Ekle/Sil" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Sütun Ekle/Sil" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Sorguyu Güncelle" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Tabloları kullan" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "%s veritabanındaki SQL sorgusu:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Sorguyu Gönder" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Erişim engellendi" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "kelimelerin en azından biri" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "tüm kelimeler" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "kesin ifade" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "kurallı ifade olarak" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" %s için arama sonuçları:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "Toplam: %s benzeşme" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Veritabanında ara" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Aranacak kelimeler veya değerler (joker: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Bul:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Kelimeler boşlukla ayrılır (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Tablo içindekiler:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "İç sütun:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "Veritabanında tablolar bulunamadı" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "bilinmeyen" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "%s tablosu boşaltıldı" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "%s görünümü kaldırıldı" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "%s tablosu kaldırıldı" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "İzleme aktif." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "İzleme aktif değil." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -610,185 +611,186 @@ msgid "" msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Görünüm" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Kopya Etme" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Toplam" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Seçilileri:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Tümünü Seç" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Ek yükü olan tabloları kontrol et" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Dışa Aktar" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Baskı görünümü" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Boşalt" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Kaldır" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Tabloyu kontrol et" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Tabloyu uyarla" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Tabloyu onar" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Tabloyu çözümle" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Tabloya ön ek ekle" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Tablo ön ekini değiştir" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Tabloyu ön eki ile kopyala" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Veri sözlüğü" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "İzlenen tablolar" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Veritabanı" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Son sürüm" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Oluşturuldu" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Güncellendi" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Durum" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Eylem" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Bu tablo için izleme verisini sil" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "aktif" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "aktif değil" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Sürümler" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "İzleme raporu" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Yapı görüntüsü yakalama" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "İzlenmeyen tablolar" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Tabloyu izle" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Veritabanı Günlüğü" @@ -800,16 +802,16 @@ msgstr "Kötü tür!" msgid "Selected export type has to be saved in file!" msgstr "Seçili dışa aktarma türü dosyaya kaydedilmelidir!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Kötü parametreler!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "%s dosyasını kaydetmek için yetersiz alan." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -817,12 +819,12 @@ msgstr "" "%s dosyası zaten sunucuda var, dosya adını değiştirin veya üzerine yazma " "seçeneğini işaretleyin." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Web sunucusu %s dosyasını kaydetmek için izne sahip değil." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Döküm, %s dosyasına kaydedildi." @@ -831,86 +833,86 @@ msgstr "Döküm, %s dosyasına kaydedildi." msgid "Invalid export type" msgstr "Geçersiz dışa aktarma türü" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "\"%s\" sütunu için değer" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Taban Katman olarak OpenStreetMaps kullan" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Geometri" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Nokta" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Nokta %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Nokta ekle" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Satır dizgisi" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Dış Halka" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "İç Halka" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Satır dizgisi ekle" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "İç halka ekle" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Poligon" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Poligon ekle" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Geometri ekle" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Çıktı" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -918,7 +920,7 @@ msgstr "" "\"Function\" sütunundan \"GeomFromText\" seçin ve \"Value\" alanı içine " "alttaki dizgiyi yapıştırın" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -927,21 +929,21 @@ msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu " "bulmak için %sbelgeden%s yararlanın." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Gösterilen işaret" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "İşaretleme silindi." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Dosya okunamadı" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -950,7 +952,7 @@ msgstr "" "Desteklenmeyen sıkıştırmayla (%s) dosya yüklemeyi denediniz. Ya bunun için " "destek henüz tamamlanmadı ya da yapılandırmanız tarafından etkisizleştirildi." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -960,28 +962,28 @@ msgstr "" "boyutu PHP yapılandırmanız tarafından izin verilen en fazla boyutu aştı. " "[a@./Documentation.html#faq1_16@Documentation]SSS 1.16[/a]'ya bakın." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" "Karakter grubu dönüştürme kütüphanesi olmadan dosyanın karakter grubu " "dönüştürülemez" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "İçe aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "İşaretleme %s oluşturuldu" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "İçe aktarma başarılı olarak bitti, %d sorgu çalıştırıldı." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -989,7 +991,7 @@ msgstr "" "Betik zaman aşımı geçti, eğer içe aktarmayı bitirmek istiyorsanız, lütfen " "aynı dosyayı yeniden gönderin ve içe aktarma devam edecektir." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -998,24 +1000,24 @@ msgstr "" "sınırlarını arttırmadığınız sürece phpMyAdmin'in bu içe aktarmayı " "biteremeyeceği anlamına gelir." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Geri" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin, çerçeve-kabiliyeti olan tarayıcı ile daha kullanışlıdır." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." @@ -1024,7 +1026,7 @@ msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." msgid "Do you really want to execute \"%s\"?" msgstr "\"%s\" sorgusunu çalıştırmak istediğinize emin misiniz?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" @@ -1064,7 +1066,7 @@ msgstr "İndeksi ekle" msgid "Edit Index" msgstr "İndeksi düzenle" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "İndekse %d sütun ekle" @@ -1082,16 +1084,16 @@ msgstr "Anamakine adı boş!" msgid "The user name is empty!" msgstr "Kullanıcı adı boş!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Parola boş!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Parolalar birbiriyle aynı değil!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Kullanıcı ekle" @@ -1108,23 +1110,24 @@ msgstr "Seçili Kullanıcılar Kaldırılıyor" msgid "Close" msgstr "Kapat" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Düzenle" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Canlı trafik çizelgesi" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Canlı bağ./işlem çizelgesi" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Canlı sorgu çizelgesi" @@ -1134,24 +1137,24 @@ 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:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Toplam" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Diğer" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1171,7 +1174,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:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "İşlemler" @@ -1189,7 +1192,7 @@ msgstr "Son yenilemeden bu yana sorular" msgid "Questions (executed statements by the server)" msgstr "Sorular (sunucu tarafından çalıştırılan ifadeler)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Sorgu istatistikleri" @@ -1234,14 +1237,14 @@ msgid "System swap" msgstr "Sistem takası" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1293,32 +1296,32 @@ msgstr "Gönderilmiş bayt" msgid "Bytes received" msgstr "Alınmış bayt" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Bağlantılar" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EiB" @@ -1332,11 +1335,11 @@ msgstr "%d tablo" msgid "Questions" msgstr "Sorular" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Ayarlar" @@ -1356,11 +1359,11 @@ msgstr "Çizelgeyi ızgaraya ekle" msgid "Please add at least one variable to the series" msgstr "Lütfen diziye en az bir değişken ekleyin" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Yok" @@ -1460,7 +1463,7 @@ msgstr "Ayarları değiştir" msgid "Current settings" msgstr "Şu anki ayarlar" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Çizelge Başlığı" @@ -1544,7 +1547,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Süre" @@ -1639,10 +1642,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:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "İçe Aktar" @@ -1690,9 +1693,9 @@ msgstr "Kullanılan değişken / formül" msgid "Test" msgstr "Sınama" -#: 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 +#: 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 msgid "Cancel" msgstr "İptal" @@ -1704,11 +1707,11 @@ msgstr "Yükleniyor" msgid "Processing Request" msgstr "İstek İşleniyor" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "İstek İşlemede Hata" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Veritabanı seçilmedi." @@ -1720,9 +1723,9 @@ msgstr "Sütun Kaldırılıyor" msgid "Adding Primary Key" msgstr "Birincil Anahtar Ekleniyor" -#: 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 +#: 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 msgid "OK" msgstr "TAMAM" @@ -1762,15 +1765,15 @@ msgstr "İndeksleri gizle" msgid "Show indexes" msgstr "İndeksleri göster" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "Dış anahtar kontrolü:" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "(Etkinleştirildi)" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 msgid "(Disabled)" msgstr "(Etkisizleştirildi)" @@ -1798,7 +1801,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET düzenleyicisi" @@ -1839,8 +1842,8 @@ msgstr "Sorgu kutusunu göster" msgid "No rows selected" msgstr "Satır seçilmedi" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Değiştir" @@ -1848,18 +1851,18 @@ msgstr "Değiştir" msgid "Query execution time" msgstr "Sorgu yürütme süresi" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Kaydet" @@ -1871,7 +1874,7 @@ msgstr "Arama kriterini gizle" msgid "Show search criteria" msgstr "Arama kriterini göster" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Odaklı Arama" @@ -1888,11 +1891,10 @@ 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 -#, fuzzy #| 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 bağlantısına " +"Orijinal durumuna geri gelmesi için yakınlaştırmayı sıfırla düğmesine " "tıklayın." #: js/messages.php:308 @@ -1922,12 +1924,12 @@ msgstr "Sorgu sonuçları" msgid "Data point content" msgstr "Veri imleci içeriği" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Yoksay" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Kopyala" @@ -1947,7 +1949,7 @@ msgstr "Dış Anahtarı seç" msgid "Please select the primary key or a unique key" msgstr "Lütfen birincil anahtarı veya benzersiz anahtarı seçin" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Göstermek için sütun seçin" @@ -2040,7 +2042,7 @@ msgstr "Üret" msgid "Change Password" msgstr "Parola Değiştir" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Daha Fazla" @@ -2131,63 +2133,63 @@ msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Ara" @@ -2225,32 +2227,32 @@ msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Sal" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Cum" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Ctesi" @@ -2365,16 +2367,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:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "saniye başına" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "dakika başına" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "saat başına" @@ -2396,20 +2398,205 @@ msgstr "" msgid "Font size" msgstr "Yazı Tipi boyutu" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "Düzenlenen veriyi kaydet" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "Sütun düzenini geri yükle" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Başlangıç" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Önceki" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Sonraki" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "Son" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "Başlangıç satırı" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "Satır sayısı" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "Kip" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "yatay" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "yatay (döndürülmüş başlıklar)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "dikey" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "Her %s satırda bir başlıklar" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Anahtara göre sırala" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Seçenekler" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "Kısmi metinler" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "Tam metinler" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Bağlantılı anahtar" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "Bağlantılı görüntü sütunu" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Binari içerikleri göster" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "BLOB içerikleri göster" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Binari içerikleri HEX olarak göster" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "Tarayıcı dönüşümünü gizle" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "Çok İyi Bilinen Metin" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "Çok İyi Bilinen Binari" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Satır silindi" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Sonlandır" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Yaklaşık olabilir. [a@./Documentation.html#faq3_11@Documentation]SSS 3.11[/" +"a]'e bakın" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "sorgu içerisinde" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Gösterilen satırlar" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "toplam" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Sorgu %01.4f san. sürdü" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Sorgu sonuçları işlemleri" + +#: libraries/DisplayResults.class.php:4365 +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 +msgid "Display chart" +msgstr "Çizelge göster" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "GIS verisini görselleştir" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "Görünüm oluştur" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Bağlantı bulunamadı" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Çok fazla hata mesajı, bazıları görüntülenmedi." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Dosya gönderilmiş bir dosya değil." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Gönderilen dosya, php.ini içindeki upload_max_filesize yönergesini aşıyor." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2417,27 +2604,27 @@ msgstr "" "Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini " "aşıyor." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Gönderilen dosya sadece kısmen gönderildi." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Eksik geçici klasör." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Dosyayı diske yazma başarısız." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Dosya gönderme uzantısından dolayı durduruldu." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Dosya göndermede bilinmeyen hata oldu." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2445,26 +2632,41 @@ msgstr "" "Gönderilen dosyayı taşıma hatası, [a@./Documentation." "html#faq1_11@Documentation]SSS 1.11[/a]'e bakın" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Gönderilmiş dosya taşınırken hata oldu." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Gönderilen dosya okunamıyor (taşınamadı)." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Yeni phpMyAdmin penceresi aç" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" +"Bu kısmı geçmek için tanımlama bilgileri (cookies) etkinleştirilmiş " +"olmalıdır." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +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 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "İndeksler" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Benzersiz" @@ -2477,8 +2679,8 @@ msgstr "Paketlendi" msgid "Cardinality" msgstr "Önemlilik" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Yorum" @@ -2501,128 +2703,128 @@ 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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Veritabanları" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Sunucu" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Yapı" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Ekle" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "İşlemler" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "İzleme" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Tablo boş olarak görünüyor!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Veritabanı boş olarak görünüyor!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Sorgu" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Yetkiler" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Yordamlar" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Olaylar" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Tasarımcı" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Kullanıcılar" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Eşitle" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binari günlüğü" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Değişkenler" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Karakter Grupları" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Eklentiler" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Motorlar" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Hata" @@ -2644,7 +2846,7 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "%1$d satır eklendi." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "PDF oluşturulurken hata:" @@ -2736,16 +2938,96 @@ 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 +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 +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 +msgid "Value" +msgstr "Değer" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "Tablo Arama" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "Düzenle/Ekle" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "Sütunları seç (en az bir):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Arama koşulu ekle (\"where\" koşulu gövdesi):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Sayfa başına satır sayısı" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Görünüm düzeni:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "Bu sütunu her noktayı etiketlemek için kullan" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "Çizim için en fazla satır" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Dış değerlere gözat" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "İlave arama kriteri" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "İki farklı sütun için \"örnekle sorgulama\" (joker: \"%\") yap" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "\"Örnekle sorgulama\" yap. (joker: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "Noktalara gözat/düzenle" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "Nasıl kullanılır" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "Odaklamayı sıfırla" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "%s teması için geçerli resim yolu bulunamadı!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Önizleme mevcut değil." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "Al" @@ -2764,7 +3046,7 @@ msgstr "%s teması bulunamadı!" msgid "Theme path not found for theme %s!" msgstr "%s teması için tema yolu bulunamadı!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Tema" @@ -3119,13 +3401,13 @@ msgstr "Bir numaralandırma, tanımlanmış değerlerin listesinden seçilir" msgid "Cannot connect: invalid settings." msgstr "Bağlanamıyor: geçersiz ayarlar." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%s'e Hoş Geldiniz" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3134,7 +3416,7 @@ 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." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3150,44 +3432,38 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "mcrypt'tan Blowfish kullanmak başarısız!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" -msgstr "Bu kısmı geçmek için Javascript etkinleştirilmiş olmalıdır" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "Oturumunuzun süresi doldu. Lütfen tekrar oturum açın." -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Oturum aç" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Anamakine adı/IP adresi ve bağlantı noktasını boşluk bırakarak ayrı " "girebilirsiniz." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Sunucu:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Kullanıcı Adı:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Parola:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Sunucu Seçimi" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" -"Bu kısmı geçmek için tanımlama bilgileri (cookies) etkinleştirilmiş " -"olmalıdır." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3195,19 +3471,19 @@ msgstr "" "Yapılandırma tarafından parolasız oturum açma yasaktır (AllowNoPassword'a " "bakın)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s saniye içinde hiçbir işlem yapılmadı, lütfen yeniden oturum açın" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL sunucusuna oturum açılamıyor" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Yanlış kullanıcı adı/parola girdiniz. Erişim engellendi." @@ -3239,7 +3515,7 @@ msgstr "paylaşılmış" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tablolar" @@ -3251,13 +3527,13 @@ msgstr "Tablolar" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Veri" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Ek Yük" @@ -3282,19 +3558,11 @@ msgstr ""%s" veritabanı için yetkileri kontrol et." msgid "Check Privileges" msgstr "Yetkileri kontrol et" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "olası kötüye kullanma" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "sayısal tuş algılandı" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Yapılandırma dosyasını okuma başarısız" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3302,12 +3570,12 @@ msgstr "" "Bu genellikle bir sözdizimi hatası var anlamına gelir, lütfen aşağıda " "gösterilen her hatayı kontrol edin." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Varsayılan yapılandırma bundan yüklenemedi: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" @@ -3315,206 +3583,192 @@ msgstr "" "[code]$cfg['PmaAbsoluteUri'][/code] talimatı yapılandırma dosyanız içinde " "AYARLANMAK zorundadır!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Geçersiz sunucu indeksi: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırma dosyanızı gözden " "geçirin." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Yapılandırma içinde geçersiz kimlik doğrulama yöntemi ayarı:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s veya sonrasına yükseltmelisiniz." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "GLOBALS üzerine yazma girişimi" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "olası kötüye kullanma" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "sayısal tuş algılandı" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "En fazla: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Belgeler" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL sorgusu" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL çıktısı: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "SQL onaylayıcısına bağlanma başarısız oldu!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL'i açıkla" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "SQL Açıklamasını atla" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP Kodsuz" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP Kodu oluştur" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Yenile" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL Onaylamayı atla" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL'i onayla" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Bu sorguyu sıralı düzenle" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "Sıralı" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profil çıkart" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Paz" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M:%S" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s dakika ve %s saniye" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Eksik parametreler:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Başlangıç" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Önceki" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Sonraki" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "Son" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr ""%s" veritabanına git." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Değiştirmek için tıklayın" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Bilgisayarınıza gözat:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Web sunucusu gönderme dizininden %s seçin:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Göndermek için hiç dosya yok" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Çalıştır" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Yazdır" @@ -3544,8 +3798,8 @@ msgid "Closed" msgstr "Kapandı" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Etkisiz" @@ -3686,9 +3940,9 @@ 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:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Sıfırla" @@ -3915,10 +4169,6 @@ msgstr "Tablo yapısı eylemlerini gizle" msgid "Show binary contents as HEX by default" msgstr "Binari içerikleri varsayılandan HEX olarak göster" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Binari içerikleri HEX olarak göster" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Veritabanı listelemeyi aşağı açılır menü yerine liste olarak gösterir" @@ -3975,7 +4225,7 @@ msgstr "" msgid "Maximum execution time" msgstr "En fazla yürütme süresi" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Dosya olarak kaydet" @@ -3984,7 +4234,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Biçim" @@ -4088,7 +4338,7 @@ msgid "MIME type" msgstr "MIME türü" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Bağlantılar" @@ -5704,9 +5954,9 @@ msgstr "SQL Onaylayıcının etkinleştirilmesini gerektirir" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Parola" @@ -5994,14 +6244,6 @@ msgstr "Lütfen veritabanını içeren dizinin yetkilerini kontrol edin." msgid "Details..." msgstr "Ayrıntılar..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Yaklaşık olabilir. [a@./Documentation.html#faq3_11@Documentation]SSS 3.11[/" -"a]'e bakın" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6010,18 +6252,18 @@ msgstr "" "başarısız oldu." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Parola değiştir" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Parola yok" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Parola tekrarı" @@ -6042,22 +6284,22 @@ msgstr "Veritabanı oluştur" msgid "Create" msgstr "Oluştur" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Yetkiniz yok" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Adı" @@ -6215,25 +6457,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Kodlama Dönüştürme:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "%2$s dalından %1$s" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "dal yok" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "Git gözden geçirme" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, php-format msgid "committed on %1$s by %2$s" msgstr "%2$s tarafından %1$s tarihinde işlendi" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, php-format msgid "authored on %1$s by %2$s" msgstr "%2$s tarafından %1$s tarihinde hazırlandı" @@ -6352,172 +6594,27 @@ msgstr "Biçim-Belli Seçenekler:" msgid "Language" msgstr "Dil" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "Düzenlenen veriyi kaydet" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "Sütun düzenini geri yükle" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "Başlangıç satırı" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "Satır sayısı" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "Kip" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "yatay" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "yatay (döndürülmüş başlıklar)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "dikey" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "Her %s satırda bir başlıklar" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Anahtara göre sırala" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Seçenekler" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "Kısmi metinler" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "Tam metinler" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Bağlantılı anahtar" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "Bağlantılı görüntü sütunu" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Binari içerikleri göster" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "BLOB içerikleri göster" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "Tarayıcı dönüşümünü gizle" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "Çok İyi Bilinen Metin" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "Çok İyi Bilinen Binari" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Satır silindi" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Sonlandır" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "sorgu içerisinde" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Gösterilen satırlar" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "toplam" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Sorgu %01.4f san. sürdü" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Sorgu sonuçları işlemleri" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Baskı görünümü (tüm metinler ile)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "Çizelge göster" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "GIS verisini görselleştir" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "Görünüm oluştur" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Bağlantı bulunamadı" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Sürüm bilgisi" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Veri ana dizini" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "Tüm InnoDB veri dosyaları için dizin yolunun ortak kısmı." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Veri dosyaları" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Artış miktarını otomatik genişlet" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -6525,11 +6622,11 @@ msgstr "" "Tablo dolduğunda otomatik genişleyen tablo alanının genişlemesi için artış " "miktarı boyutu." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Arabellek havuzu boyutu" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6537,79 +6634,79 @@ msgstr "" "Hafıza arabelleği boyutu InnoDB, veriyi önbelleklemek ve tablolarını " "indekslemek için kullanır." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Arabellek Havuzu" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB Durumu" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Arabellek Havuzu Kullanımı" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "sayfa" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Serbest sayfalar" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Bozuk sayfalar" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Veri içeren sayfalar" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Temizlenen sayfalar" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Meşgul sayfalar" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Sabitlenmiş sayfalar" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Arabellek Havuzu Etkinliği" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "İstekleri oku" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Yazma istekleri" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Okuma kaçırıyor" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Yazma bekliyor" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Okuma kaçırması %" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Yazma beklemesi %" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Veri imleci boyutu" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6617,11 +6714,11 @@ msgstr "" "MAX_ROWS seçeneği belirlenmediğinde MyISAM tabloları için CREATE TABLE " "komutuyla kullanılacak olan bayt cinsinden varsayılan imleç boyutu." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Otomatik kurtarma kipi" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6629,11 +6726,11 @@ msgstr "" "--myisam-recover sunucusu başlat seçeneği yoluyla ayarlanan, çökmüş MyISAM " "tablolarını otomatik kurtarmak için kip." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Geçici sıralama dosyaları için en fazla boyut" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6643,11 +6740,11 @@ msgstr "" "geçici dosyanın en fazla boyutu (REPAIR TABLE, ALTER TABLE, ya da LOAD DATA " "INFILE sırasında)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "İndeks oluşturmada kullanılan geçici dosyalar için en fazla boyut" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6657,11 +6754,11 @@ msgstr "" "belirlenmiş miktar tarafından kullanılan anahtar önbelleğinden büyükse, " "anahtar önbellek yöntemi tercih edilir." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "İşlemleri onar" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6670,11 +6767,11 @@ msgstr "" "sırasında, MyISAM tablosu indeksleri (her bir indeks kendi işlemi içinde) " "paralel olarak oluşturulur." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Arabellek boyutunu sırala" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6683,11 +6780,11 @@ msgstr "" "CREATE INDEX veya ALTER TABLE komutuyla indeksler oluşturulduğunda ayrılan " "arabellek miktarı." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "İndeks önbellek boyutu" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -6696,11 +6793,11 @@ msgstr "" "32MB'tır. Burada ayrılmış bellek sadece indeks sayfalarının önbelleklenmesi " "için kullanılır." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Kayıt önbellek boyutu" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6711,11 +6808,11 @@ msgstr "" "veri (.xtd) ve satır işaretçisi (.xtr) dosyalarında önbellek değişimleri " "için kullanılır." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Günlük önbellek boyutu" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -6723,11 +6820,11 @@ msgstr "" "Bellek miktarı işlem günlüğü verisinde önbellek olarak kullanılmak üzere " "işlem günlüğü önbelleğine ayrıldı. Varsayılan 16MB'tır." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Günlük dosyası eşiği" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -6735,11 +6832,11 @@ msgstr "" "Yuvarlamadan önceki işlem günlüğü boyutu ve yeni günlük oluşturma. " "Varsayılan değer 16MB'tır." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "İşlem arabellek boyutu" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -6747,11 +6844,11 @@ msgstr "" "Genel işlem günlüğü arabellek boyutu (motor bu boyutun 2 arabelleğini " "ayırır). Varsayılan 1MB'tır." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Kontrol noktası sıklığı" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -6759,11 +6856,11 @@ msgstr "" "Kontrol noktası oluşturulmadan önce işlem günlüğüne yazılan veri miktarı. " "Varsayılan değer 24MB'tır." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Veri günlüğü eşiği" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6775,11 +6872,11 @@ msgstr "" "yüzden veritabanında saklanabilir toplam veri miktarını arttırmak için bu " "değişkenin değeri arttırılabilir." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Artık eşiği" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -6787,11 +6884,11 @@ msgstr "" "Ufaltılmadan önce veri günlük dosyasındaki artık yüzdesidir. Bu 1 ile 99 " "arasında bir değerdir. Varsayılan değer 50'dir." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Günlük arabellek boyutu" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6801,27 +6898,27 @@ msgstr "" "256MB'tır. Motor işlem öncesi bir arabellek hesaplar ama sadece işlemin veri " "günlüğü yazmasını gerektirirse." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Veri dosyası büyüme boyutu" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "İşlenen veri (.xtd) dosyalarının büyüme boyutu." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Satır dosyası büyüme boyutu" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Satır gösterge (.xtr) dosyalarının büyüme boyutu." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Günlük dosyası sayısı" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6832,7 +6929,7 @@ msgstr "" "sayısıdır. Eğer günlük sayısı bu değeri geçerse eski günlükler silinecektir, " "diğer taraftan yeniden adlandırılır ve bir sonraki en yüksek numara verilir." -#: libraries/engines/pbxt.lib.php:128 +#: libraries/engines/pbxt.lib.php:131 #, php-format msgid "" "Documentation and further information about PBXT can be found on the " @@ -6841,11 +6938,11 @@ msgstr "" "%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi " "bulunabilir." -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "İlgili Bağlantılar" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "Paul McCullagh'ın The PrimeBase XT Bloğu" @@ -6892,14 +6989,14 @@ msgstr "Tablo döküm verisi" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Olay" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Tanım" @@ -6957,14 +7054,14 @@ msgstr "MIME türlerini göster" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Anamakine" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Üretim Zamanı" @@ -7172,21 +7269,12 @@ msgstr "Görünümler" msgid "Export contents" msgstr "İçerikleri dışa aktar" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Yeni phpMyAdmin penceresi aç" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "GIS görselleştirmesi için bulunan veri yok." -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "GLOBALS üzerine yazma girişimi" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7287,12 +7375,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Tablo adı" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Sütun adları" @@ -7361,93 +7449,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "İşlev" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Gizle" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binari" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binari - düzenlemeyiniz" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "web sunucusu gönderme dizini" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "Düzenle/Ekle" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "%s satırla eklemeye devam et" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "ve sonra" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Yeni satır olarak ekle" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Yeni satır olarak ekle ve hataları yoksay" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Ekleme sorgusunu göster" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Önceki sayfaya geri dön" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Yeni başka bir satır ekle" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Bu sayfaya geri dön" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Sonraki satırı düzenle" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Değer" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" @@ -7462,32 +7534,32 @@ msgstr "Yok" msgid "Convert to Kana" msgstr "Kana'ya dönüştür" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "Buradan" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "Buraya" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Gönder" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "Tablo ön eki ekle" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "Ön ek ekle" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 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:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Değişiklik yok" @@ -7697,83 +7769,83 @@ msgstr "Rehber çerçeveyi yeniden yükle" msgid "This format has no options" msgstr "Bu biçim seçeneğe sahip değil" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "TAMAM değil" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "TAMAM" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Etkin" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Genel bağlantı özellikleri" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Özellikleri göster" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF'lerin oluşturulması" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Sütun Yorumları gösteriliyor" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Tarayıcı dönüşümü" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "Lütfen column_comments tablonuzun nasıl güncelleneceğini öğrenmek için " "belgeye bakın" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "SQL sorgusu işaretlendi" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL geçmişi" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "Sürekli son kullanılan tablolar" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "Sürekli tabloların KA tercihleri" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "Kullanıcı tercihleri" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Gelişmiş özellikleri ayarlamak için hızlı adımlar:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Gerekli tabloları examples/create_tables.sql ile oluşturun." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Pma kullanıcısı oluştur ve bu tablolara erişim verin." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7782,13 +7854,13 @@ msgstr "" "etkinleştirin, örneğin config.sample.inc.php dosyasından " "başlayarak." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Güncellenmiş yapılandırma dosyasını yüklemek için phpMyAdmin'e yeniden " "oturum açın." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "Açıklama yok" @@ -7796,7 +7868,7 @@ msgstr "Açıklama yok" msgid "Slave configuration" msgstr "Slave yapılandırması" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Master sunucuyu değiştir veya yeniden yapılandır" @@ -7810,13 +7882,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Kullanıcı Adı" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "B.Noktası" @@ -7829,7 +7901,7 @@ msgid "Slave status" msgstr "Slave durumu" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Değişken" @@ -7845,38 +7917,38 @@ msgstr "" "Sadece slave'ler, bu listede --report-host=host_name seçeneğiyle görünen bu " "şekilde başlar." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Slave kopya etme kullanıcısı ekle" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Metin alanını kullan" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Herhangi anamakine" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Yerel" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Bu Anamakine" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Anamakine Tablosu kullan" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7892,7 +7964,7 @@ msgstr "Parola Üret" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7923,88 +7995,89 @@ msgstr "Olay %1$s oluşturuldu." msgid "One or more errors have occured while processing your request:" msgstr "İsteğiniz işlenirken bir ya da daha fazla hata meydana geldi:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Olay düzenle" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "İstek işlemede hata" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Ayrıntılar" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Olay adı" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Olay türü" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "%s'a değiştir" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Çalıştır" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Çalıştır; her" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Başlama" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "Bitiş" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "Tamamlamada koruma" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "Tanımlayıcı" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: 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" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Bir olay adı vermek zorundasınız" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "Her olay için geçerli aralık değeri vermek zorundasınız." -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "Olay için geçerli bir yürütme zamanı vermek zorundasınız." -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "Olay için geçerli bir tür vermek zorundasınız." -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 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:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Yeni" @@ -8037,7 +8110,7 @@ msgstr "" "gelişmiş 'mysqli' uzantısı kullanın." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Geçersiz yordam türü: \"%s\"" @@ -8056,69 +8129,69 @@ msgstr "Yordam %1$s değiştirildi." msgid "Routine %1$s has been created." msgstr "Yordam %1$s oluşturuldu." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Yordamı düzenle" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Yordam adı" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Parametreler" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Yön" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Uzunluk/Değerler" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Parametre ekle" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Son parametreyi kaldır" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Dönüş türü" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Dönüş uzunluğu/değerleri" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Dönüş seçenekleri" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Belirleyici" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Güvenlik türü" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "SQL veri erişimi" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Bir yordam adı vermek zorundasınız" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, 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:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -8126,36 +8199,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:1069 +#: libraries/rte/rte_routines.lib.php:1072 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:1079 +#: libraries/rte/rte_routines.lib.php:1082 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:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "Bir yordam tanımı vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "%s yordamı yürütme sonuçları" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Yordamı çalıştır" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Yordam parametreleri" @@ -8173,36 +8246,36 @@ msgstr "Tetikleyici %1$s değiştirildi." msgid "Trigger %1$s has been created." msgstr "Tetikleyici %1$s oluşturuldu." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Tetikleyiciyi düzenle" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Tetikleyici adı" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "Zaman" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Bir tetikleyici adı vermek zorundasınız" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Tetikleyici için geçerli bir zamanlama vermek zorundasınız" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Tetikleyici için geçerli bir olay vermek zorundasınız" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Geçerli bir tablo adı vermek zorundasınız" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Bir tetikleyici tanımı vermek zorundasınız." @@ -8286,7 +8359,7 @@ msgstr "Görüntülemek için olaylar yok." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8295,7 +8368,7 @@ msgstr "%s tablosu yok!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8303,7 +8376,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Lütfen %s tablosu için koordinatları yapılandırın" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8314,27 +8387,27 @@ msgstr "%s veritabanının şeması - Sayfa %s" msgid "This page does not contain any tables!" msgstr "Bu sayfa herhangi bir tablo içermiyor!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "ŞEMA HATASI: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Bağlantılı şema" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "İçerik tablosu" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Öznitelikler" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Ekstra" @@ -8442,7 +8515,7 @@ msgstr "Bilinmeyen dil: %1$s." msgid "Current Server" msgstr "Şu Anki Sunucu" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Kaynak veritabanı" @@ -8460,7 +8533,7 @@ msgstr "Uzak sunucu" msgid "Difference" msgstr "Farkı" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Hedef veritabanı" @@ -8479,7 +8552,7 @@ msgstr "%s sunucusu üzerinde SQL sorgusunu/sorgularını çalıştır" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Temizle" @@ -8488,11 +8561,11 @@ msgstr "Temizle" msgid "Columns" msgstr "Sütun" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 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" @@ -8588,7 +8661,7 @@ msgstr "" "SQL onaylayıcısı başlatılamadı. %sBelgede%s anlatıldığı gibi lütfen gerekli " "PHP uzantılarının kurulu olduğunu kontrol edin." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "%s izleme aktif edildi." @@ -8614,8 +8687,8 @@ msgstr "" "değer girin, bu biçimi kullanarak: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "İndeks" @@ -8665,13 +8738,13 @@ msgstr "Yok" msgid "As defined:" msgstr "Tanımlandığı gibi:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Birincil" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Tam metin" @@ -8684,17 +8757,17 @@ msgstr "ilk" msgid "after %s" msgstr "%s sonrasına" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "%s sütun ekle" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "En az bir sütun eklemek zorundasınız." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Depolama Motoru" @@ -8702,41 +8775,6 @@ msgstr "Depolama Motoru" msgid "PARTITION definition" msgstr "PARTITION tanımı" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "Tablo Arama" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "Sütunları seç (en az bir):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Arama koşulu ekle (\"where\" koşulu gövdesi):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Sayfa başına satır sayısı" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Görünüm düzeni:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Dış değerlere gözat" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "\"Örnekle sorgulama\" yap. (joker: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8890,11 +8928,11 @@ msgstr "" msgid "Manage your settings" msgstr "Ayarlarınızı yönetin" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "Yapılandırma kaydedildi" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8907,7 +8945,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Yapılandırma kaydedilemedi" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8936,7 +8974,7 @@ msgstr "Sunucu bağlantısı karşılaştırması" msgid "Appearance Settings" msgstr "Görünüm Ayarları" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "Daha fazla ayarlar" @@ -8956,9 +8994,9 @@ msgstr "Yazılım sürümü" msgid "Protocol version" msgstr "Protokol sürümü" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Kullanıcı" @@ -9095,126 +9133,126 @@ msgstr "" "Sunucu Suhosin ile çalışıyor. Lütfen olası sorunlar için %sbelgeden%s " "yararlanın." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Veritabanı yok" -#: navigation.php:222 +#: navigation.php:170 msgid "Filter databases by name" msgstr "Veritabanlarını adına göre süz" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "Tabloları adına göre süz" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "Tablo oluştur" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Lütfen bir veritabanı seçin" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Sol menüyü Göster/Gizle" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Konumu kaydet" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Bağlantı oluştur" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Yeniden yükle" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Yardım" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Yönlendirmeli bağlantılar" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Doğrudan bağlantılar" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Kılavuza ayarla" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Tümü Küçük/Büyük" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Küçüğü/büyüğü değiştir" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "İlgili satırları değiştir" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "PDF şeması için düzenlemeleri içe/dışa aktar" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "Sorgu Yarat" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Menüyü taşı" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Tümünü Gizle/Göster" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Bağlantılı olmayan Tabloları Gizle/Göster" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Tablo sayısı" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Bağlantıyı sil" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "Bağlantı işletici" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "Hariç" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "alt sorgu" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Yeniden şuna adlandır" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Yeni ad" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Topla" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Aktif seçenekler" @@ -9226,51 +9264,51 @@ msgstr "Sayfa oluşturuldu" msgid "Page creation failed" msgstr "Sayfa oluşturma başarısız" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Sayfa" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Seçili sayfadan içe aktar" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Seçili sayfaya aktar" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Yeni bir sayfa oluştur ve ona aktar" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Yeni sayfa adı: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Ölçeklemek için içe/dışa aktar" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "önerilir" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Hata: bağlantı zaten var." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Hata: Bağlantı eklenmedi." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY bağlantısı eklendi" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Dahili bağlantı eklendi" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Bağlantı silindi" @@ -9282,51 +9320,51 @@ msgstr "Tasarımcı düzenlemelerini kaydetme hatası." msgid "Modifications have been saved" msgstr "Değişiklikler kaydedildi" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Ayarlar kaydedilemiyor, gönderilmiş form hatalar içeriyor" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Yapılandırma içe aktarılamadı" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Bazı alanlar için yapılandırma doğru olmayan veri içeriyor." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Kalan ayarları içe aktarmak istiyor musunuz?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Kaydedilme: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Dosyadan içe aktar" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Tarayıcının depolamasından içe aktar" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Ayarlar tarayıcınızın yerel depolamasından içe aktarılacaktır." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "Kaydedilmiş ayarlarınız yok!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Bu özellik web tarayıcınız tarafından desteklenmez" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Şu anki yapılandırma ile birleştir" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9335,38 +9373,38 @@ msgstr "" "Config.inc.php dosyasını değiştirerek daha fazla ayar yapabilirsiniz, örn. " "%sKur programcığı%s kullanarak." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Tarayıcının depolamasına kaydet" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Ayarlar tarayıcının yerel depolamasına kaydedilecektir." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Mevcut ayarlar üzerine yazılacak!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Tüm ayarlarınızı sıfırlayabilir ve varsayılan değerlere geri " "yükleyebilirsiniz." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Dosyaları içe aktar" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Tümü" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tablosu bulunamadı veya %s içinde ayarlanmadı" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Dosya mevcut değil" @@ -9374,17 +9412,17 @@ msgstr "Dosya mevcut değil" msgid "Select binary log to view" msgstr "Görüntülemek için binari günlüğünü seçin" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Dosyalar" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Gösterilen Sorguları Kısalt" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Tüm Sorguları Göster" @@ -9400,7 +9438,7 @@ msgstr "Konum" msgid "Original position" msgstr "Orijinal konum" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Bilgi" @@ -9408,30 +9446,30 @@ msgstr "Bilgi" msgid "Character Sets and Collations" msgstr "Karakter Grupları ve Karşılaştırmalar" -#: server_databases.php:114 +#: server_databases.php:115 #, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "%1$d veritabanı başarılı olarak kaldırıldı." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Veritabanı istatistikleri" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Master kopya etme" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Slave kopya etme" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "İstatistikler etkin" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9443,156 +9481,156 @@ msgstr "" msgid "Storage Engines" msgstr "Depolama Motorları" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Veritabanlarının dökümünü (şemasını) göster" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Modüller" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Yukarı" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Eklenti" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Modül" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Kütüphane" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Sürüm" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Hazırlayan" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Lisans" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "etkisizleştirildi" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "GRANT hariç tüm yetkileri içerir." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Varolan tabloların yapısının değiştirilmesine izin verir." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Saklanan yordamların değiştirilmesine ve kaldırılmasına izin verir." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Yeni veritabanları ve tabloların oluşturulmasına izin verir." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Saklanan yordamların oluşturulmasına izin verir." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Yeni tabloların oluşturulmasına izin verir." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Geçici tablolar oluşturulmasına izin verir." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Kullanıcı hesaplarının oluşturulmasına, kaldırılmasına ve yeniden " "adlandırılmasına izin verir." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Yeni görünümlerin oluşturulmasına izin verir." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Veri silinmesine izin verir." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Veritabanları ve tabloların kaldırılmasına izin verir." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Tabloların kaldırılmasına izin verir." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Olay zamanlayıcısı için olayları ayarlamaya izin verir" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Saklanan yordamların yürütülmesine izin verir." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Verinin içe ve dışa aktarılmasına izin verir." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Yetki tablolarını yeniden yüklemeden yeni kullanıcıların ve yetkilerin " "eklenmesine izin verir." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "İndekslerin oluşturulmasına ve kaldırılmasına izin verir." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Verinin eklenmesine ve yerinin değiştirilmesine izin verir." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Şu anki işlem için tabloların kilitlenmesine izin verir." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "Kullanıcının saat başına açabileceği yeni bağlantı sayısını sınırlar." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Kullanıcının saat başına sunucuya gönderebileceği sorgu sayısını sınırlar." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9600,61 +9638,61 @@ msgstr "" "Kullanıcının saat başına çalıştırabileceği herhangi bir tabloyu veya " "veritabanını değiştiren komut sayısını sınırlar." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Kullanıcının eşzamanlı bağlantı sayısını sınırlar." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Tüm kullanıcıların işlemlerini görüntülemeye izin verir" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Bu MySQL sürümünde etkisi yoktur." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sunucu ayarlarının yeniden yüklenmesine ve sunucunun önbelleğinin " "temizlenmesine izin verir." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Kullanıcılara slave / master'ların nerede olduğunu sormasına izin verir." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Kopya edilen slave'ler için gereklidir." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Veri okunmasına izin verir." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Bütün veritabanı listesine erişim verir." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorgularının yapılmasına izin verir." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Sunucunun kapatılmasına izin ver." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9664,161 +9702,161 @@ msgstr "" "değişkenleri ayarlamak veya diğer kullanıcıların işlemlerini sonlandırmak " "gibi pek çok yönetimsel işlemler için gereklidir." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Tetikleyicileri oluşturmaya ve kaldırmaya izin verir" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Veri değiştirilmesine izin ver." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Yetkiniz yok." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "Yok" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Tabloya özgü yetkiler" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Not: MySQL yetki adları İngilizce olarak belirtilir" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Yönetim" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Genel yetkiler" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Veritabanına özgü yetkiler" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Kaynak sınırları" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Not: Bu seçeneklerin 0 (sıfır)'a ayarlanması sınırı kaldırır." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Oturum Açma Bilgisi" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Parolayı değiştirme" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "Kullanıcı bulunamadı." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "%s kullanıcısı zaten var!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Yeni bir kullanıcı eklediniz." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "%s için yetkileri güncellediniz." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "%s için yetkileri geri aldınız" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "%s için parola başarılı olarak değiştirildi." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "%s siliniyor" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Silmek için kullanıcı seçilmedi!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Yetkiler yeniden yükleniyor" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Seçili kullanıcılar başarılı olarak silindi." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Yetkiler başarılı olarak yüklendi." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Yetkileri düzenle" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Geri al" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "Tümünü dışa Aktar" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Herhangi" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "Tüm kullanıcılar için yetkiler" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, php-format msgid "Privileges for %s" msgstr "%s için yetkiler" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "Kullanıcılara genel bakış" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Onaylı" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Seçili kullanıcıları kaldır" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9831,48 +9869,48 @@ msgstr "" "sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " "önce %syetkileri yeniden yüklemeniz%s gerekir." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Seçili kullanıcı yetki tablosunda bulunamadı." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Sütuna özgü yetkiler" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Aşağıdaki veritabanına yetkileri ekle" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Aşağıdaki tabloya yetkileri ekle" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Otutum Açma Bilgisini değiştir / Kullanıcıyı kopyala" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... eski olanı sakla." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... eski olanı kullanıcı tablolarından sil." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9880,81 +9918,81 @@ msgstr "" "... eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden " "yükle." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Kullanıcı için veritabanı" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "Aynı isimle veritabanı oluştur ve tüm yetkileri ver" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" veritabanı üzerindeki tüm yetkileri ver" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr ""%s" veritabanına erişimi olan kullanıcılar" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "genel" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "Veritabanına özgü" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "joker" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "Kullanıcı eklendi." -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Bilinmeyen hata" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "Master %s sunucusuna bağlanılamıyor." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "Master günlük konumu okunamıyor. Master üzerinde mümkün yetki sorunu." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Master değiştirilemiyor" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "Master sunucu %s olarak başarılı bir şekilde değiştirildi" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" "Bu sunucu kopya etme işlemi sırasında master sunucu olarak yapılandırıldı." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Master durumunu göster" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Bağlı slave'leri göster" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9963,11 +10001,11 @@ msgstr "" "Bu sunucu, kopya etme işlemi sırasında master sunucu olarak yapılandırılmaz. " "Bunu yapılandırmak istiyor musunuz?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Master yapılandırması" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9982,19 +10020,19 @@ msgstr "" "kopya etmek için sadece belirli veritabanlarına izin verebilirsiniz. Lütfen " "kipi seçin:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Tüm veritabanlarını kopya et; Yoksay:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Tüm veritabanlarını yoksay; Kopya et:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Lütfen veritabanlarını seçin:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10002,7 +10040,7 @@ msgstr "" "Şimdi, aşağıdaki satırları my.cnf dosyanız içindeki [mysqld] bölümünün " "sonuna ekleyin ve ondan sonra lütfen MySQL sunucusunu yeniden başlatın." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10012,82 +10050,82 @@ msgstr "" "tıklayın. Ondan sonra bu sunucunun master olarak yapılandırıldığını " "gösteren, sizi uyaran bir mesaj görmelisiniz" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Slave SQL işlemi çalışmıyor!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Slave G/Ç işlemi çalışmıyor!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Sunucu kopya etme işlemi sırasında slave sunucu olarak yapılandırılır. Bunu " "istiyor musunuz:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Slave durum tablosuna bak" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Veritabanlarını master ile eşitle" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Slave'i kontrol et:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Tam başlat" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Tam durdur" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Slave'i sıfırla" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "Sadece SQL İşlemini başlat" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "Sadece SQL İşlemini durdur" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "Sadece G/Ç İşlemini başlat" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "Sadece G/Ç İşlemini durdur" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Hata yönetimi:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "Hataları atlamak master ve slave'i eşitlenmemeye sürükleyebilir!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Şu anki hatayı atla" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "İleri atla" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "hata." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10096,126 +10134,126 @@ msgstr "" "Bu sunucu, kopya etme işlemi sırasında slave sunucu olarak yapılandırılmaz. " "Bunu yapılandırmak istiyor musunuz?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "%s işlemi başarılı olarak sonlandırıldı." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s işlemini sonlandıramadı. Muhtemelen zaten kapatılmış." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Denetimci" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Sorgu önbelleği" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "İşlemler" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Geçici veri" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Gecikmiş eklemeler" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Anahtar önbelleği" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Birleştirmeler" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Sıralama" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "İşlem koordinatörü" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Tüm tabloları temizle (kapat)" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Açık tabloları göster" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Slave anamakineleri göster" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Slave durumunu göster" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Sorgu önbelleğini temizle" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Çalışma Süresi Bilgisi" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "Tüm durum değişkenleri" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "İzleme" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "Danışman" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "Yenileme oranı: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "Süzgeçler" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "İçerdiği kelime:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "Sadece uyarı değerlerini göster" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "Kategoriye göre süz..." -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "Biçimlendirilmemiş değerleri göster" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "İlgili bağlantılar:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "Çözümleyiciyi çalıştır" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "Talimatlar" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." @@ -10223,7 +10261,7 @@ msgstr "" "Danışman sistemi sunucu durumu değişkenlerini çözümleyerek sunucu " "değişkenlerinde öneriler sağlayabilir." -#: server_status.php:918 +#: server_status.php:917 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 " @@ -10232,7 +10270,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:920 +#: server_status.php:919 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 " @@ -10243,7 +10281,7 @@ msgstr "" "alacağınızdan emin olun. Yanlış ayarlama performansa çok olumsuz etki " "edebilir." -#: server_status.php:922 +#: server_status.php:921 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 " @@ -10254,31 +10292,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:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "Başlangıçtan bu yana sorular: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "İfadeler" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "#" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "Başlangıçtan bu yana ağ trafiği: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." @@ -10286,19 +10324,19 @@ msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında master ve " "slave olarak çalışır." -#: server_status.php:1078 +#: server_status.php:1077 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:1080 +#: server_status.php:1079 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:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10306,11 +10344,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:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Kopya etme durumu" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10318,35 +10356,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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Alınan" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Gönderilen" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "En fazla eşzamanlı bağlantı" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Başarısız deneme" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "İptal edilen" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Komut" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -10354,11 +10392,11 @@ msgstr "" "Bağlantıyı uygun bir şekilde kapatmadan sonlanmış istemcinin durdurulmuş " "bağlantılarının sayısıdır." -#: server_status.php:1321 +#: server_status.php:1320 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:1322 +#: server_status.php:1321 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 " @@ -10368,16 +10406,16 @@ msgstr "" "aşmış ve işlemdeki ifadeleri saklamak için geçici dosya kullanmış işlemlerin " "sayısıdır." -#: server_status.php:1323 +#: server_status.php:1322 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:1324 +#: server_status.php:1323 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:1325 +#: server_status.php:1324 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 " @@ -10389,11 +10427,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:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10401,7 +10439,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:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10409,7 +10447,7 @@ msgstr "" "INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır " "sayısı (muhtemelen kopya anahtar)." -#: server_status.php:1329 +#: server_status.php:1328 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10417,23 +10455,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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED satır yazımı sayısıdır." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Dahili COMMIT ifadesi sayısıdır." -#: server_status.php:1333 +#: server_status.php:1332 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:1334 +#: 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 " @@ -10443,7 +10481,7 @@ msgstr "" "motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez " "keşfedildiğini gösterir." -#: server_status.php:1335 +#: 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, " @@ -10453,7 +10491,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:1336 +#: server_status.php:1335 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." @@ -10462,7 +10500,7 @@ msgstr "" "sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi " "olduğu belirtisidir." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -10472,7 +10510,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:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10480,7 +10518,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:1339 +#: 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 " @@ -10493,7 +10531,7 @@ msgstr "" "fazla sorgulamalara sahipsiniz ya da anahtarları düzgün kullanılmayan " "birleştirmelere sahipsiniz." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10505,35 +10543,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:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "Dahili ROLLBACK ifadesi sayısıdır." -#: server_status.php:1342 +#: server_status.php:1341 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:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 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:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "Şu anki dolu sayfa sayısıdır." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Boş sayfa sayısıdır." -#: server_status.php:1348 +#: 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 " @@ -10543,7 +10581,7 @@ msgstr "" "okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya " "taşınamayan sayfalardır." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10555,11 +10593,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:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Sayfalardaki arabellek havuzunun toplam boyutudur." -#: server_status.php:1351 +#: 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." @@ -10567,7 +10605,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:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10575,11 +10613,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:1353 +#: server_status.php:1352 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:1354 +#: 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." @@ -10587,7 +10625,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:1355 +#: server_status.php:1354 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 " @@ -10601,55 +10639,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:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB arabellek havuzuna bitti yazma sayısıdır." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Şimdiye kadarki fsync() işlem sayısıdır." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Şu anki bekleyen fsync() işlem sayısıdır." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Şu anki bekleyen okuma sayısıdır." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Şu anki bekleyen yazma sayısıdır." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Toplam veri okuma sayısıdır." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Toplam veri yazma sayısıdır." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır." -#: server_status.php:1365 +#: server_status.php:1364 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:1366 +#: server_status.php:1365 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:1367 +#: server_status.php:1366 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." @@ -10657,35 +10695,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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Günlük yazma isteği sayısıdır." -#: server_status.php:1369 +#: server_status.php:1368 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:1370 +#: server_status.php:1369 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "Bekleyen günlük dosyası fsyncs sayısıdır." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Bekleyen günlük dosyası yazma sayısıdır." -#: server_status.php:1373 +#: server_status.php:1372 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:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Oluşturulmuş sayfa sayısıdır." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10693,52 +10731,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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Okunan sayfa sayısıdır." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Yazılmış sayfa sayısıdır." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Şu anki beklenen satır kilidi sayısıdır." -#: server_status.php:1379 +#: server_status.php:1378 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:1380 +#: server_status.php:1379 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:1381 +#: server_status.php:1380 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:1382 +#: server_status.php:1381 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:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tablolarından silinen satır sayısıdır." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tablolarına eklenen satır sayısıdır." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tablolarından okunan satır sayısıdır." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tablolarında güncellenen satır sayısıdır." -#: server_status.php:1387 +#: 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." @@ -10746,7 +10784,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:1388 +#: 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." @@ -10755,7 +10793,7 @@ msgstr "" "önbelleğinin ne kadarının kullanımda olmasını belirlemek için " "kullanabilirsiniz." -#: server_status.php:1389 +#: server_status.php:1388 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 " @@ -10764,15 +10802,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:1390 +#: server_status.php:1389 msgid "Percentage of used key cache (calculated value)" msgstr "Kullanılan anahtar önbelleği yüzdesidir (hesaplanmış değer)" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -10782,7 +10820,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:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" @@ -10790,21 +10828,21 @@ msgstr "" "Okuma isteklerine nazaran fiziksel okumaların oranı gibi eksik hesaplanan " "anahtar önbelleğidir (hesaplanmış değer)" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 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:1396 +#: server_status.php:1395 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:1397 +#: server_status.php:1396 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 " @@ -10815,7 +10853,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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10823,11 +10861,11 @@ msgstr "" "Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla " "bağlantı sayısı." -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10835,19 +10873,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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Açık olan dosya sayısıdır." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Açık olan tablo sayısıdır." -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10857,19 +10895,19 @@ msgstr "" "QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret " "edebilir." -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Sorgu önbelleği için boş bellek miktarıdır." -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Önbelleğe ulaşma sayısıdır." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Önbelleğe eklenen sorgu sayısıdır." -#: server_status.php:1408 +#: 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 " @@ -10881,7 +10919,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:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10889,19 +10927,19 @@ msgstr "" "Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type " "ayarından dolayı önbelleklenmedi)." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Önbellekte kayıtlı sorgu sayısıdır." -#: server_status.php:1411 +#: server_status.php:1410 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:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10909,11 +10947,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:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -10922,7 +10960,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:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10930,15 +10968,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:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10946,11 +10984,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:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10958,12 +10996,12 @@ msgstr "" "Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem " "sayısıdır." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -10973,23 +11011,23 @@ msgstr "" "değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı " "düşünmelisiniz." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Aralıklarla yapılmış sıralama sayısıdır." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Sıralanmış satır sayısıdır." -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -11001,7 +11039,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:1429 +#: server_status.php:1428 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 " @@ -11011,11 +11049,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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Şu anki açık bağlantı sayısıdır." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11027,47 +11065,47 @@ msgstr "" "(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer " "bir performans artışı vermez.)" -#: server_status.php:1432 +#: server_status.php:1431 msgid "Thread cache hit rate (calculated value)" msgstr "İşlem önbelleği tavan oranı (hesaplanmış değer)" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Hala faaliyette olan işlemler sayısıdır." -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "İzlemeyi başlat" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "Yönergeler/Ayarlama" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "Çizelgeleri düzenlemeyi/yeniden düzeltmeyi bitir" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "Çizelge ekle" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "Çizelgeleri düzenle/yeniden düzelt" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "Oranı yenile" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "Çizelge sütunları" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "Çizelge ayarlaması" -#: server_status.php:1627 +#: server_status.php:1626 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." @@ -11075,15 +11113,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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "Varsayılana sıfırla" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "İzleme Yönergeleri" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11097,7 +11135,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:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11109,11 +11147,11 @@ msgstr "" "günlükleme MySQL 5.1.6 ve sonrakiler tarafından desteklenir. Yinede hala " "sunucu çizelgeleme özelliklerini kullanabilirsiniz." -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "İzleyici kullanımı:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -11124,7 +11162,7 @@ msgstr "" "değiştirebilirsiniz veya her çizelgenin kendi dişli çark simgesini " "kullanarak herhangi bir çizelgeyi kaldırabilirsiniz." -#: server_status.php:1655 +#: server_status.php:1654 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 " @@ -11137,11 +11175,11 @@ msgstr "" "yükleyecek. Daha fazla çözümlemesi için herhangi bir meydana gelen SELECT " "ifadesine tıklayabilirsiniz." -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "Lütfen unutmayın:" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11154,194 +11192,194 @@ msgstr "" "etkisizleştirmek tavsiye edilir ve tablolarını bir defa boşaltmak daha fazla " "izlemeyi gerektirmez." -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "Hazır çizelge" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "Durum değişkeni(leri)" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "Dizi seç:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "Genellikle izlenen" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "veya değişken adını yazın:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "Ayırtedici değer olarak görüntüle" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "Böleni uygula" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "Veri değerlerine birimi ekle" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "Bu diziyi ekle" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "Diziyi temizle" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "Çizelgedeki Dizi:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "Günlük istatistikleri" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "Seçili zaman aralığı:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "Sadece SELECT,INSERT,UPDATE ve DELETE İfadeleri erişir" -#: server_status.php:1747 +#: server_status.php:1746 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:1752 +#: server_status.php:1751 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:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "Sonuçlar sorgu metnine göre gruplandırılır." -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "Sorgu çözümleyici" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d saniye" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d dakika" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Kaynağa bağlanamadı" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Hedefe bağlanamadı" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' veritabanı mevcut değil." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Yapı Eşitleme" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Veri Eşitleme" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "mevcut değil" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Yapı Farklılığı" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Veri Farklılığı" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Sekme(leri) ekle" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Sekme(leri)yi kaldır" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Sekme(leri)yi değiştir" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "İndeks(leri)i kaldır" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "İndeks(leri)i uygula" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Satır(ları)ı güncelle" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Satır(ları)ı ekle" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Hedef tablolardan önceki tüm sıraları silme istiyor musunuz?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Seçili Değişiklikleri Uygula" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Veritabanlarını Eşitle" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Seçili hedef tablolar kaynak tablolar ile eşitlendi." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Hedef veritabanı kaynak veritabanı ile eşitlendi" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "Yürütülmüş sorgular" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "Elle giriş" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "Şu anki bağlantı" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "Yapılandırma: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Soket" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11349,19 +11387,19 @@ msgstr "" "Hedef veritabanı kaynak veritabanı ile tamamen eşitlenecektir. Kaynak " "veritabanı değiştirilmeden aynen kalacaktır." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "Ayar değişkeni başarısız oldu" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Sunucu değişkenleri ve ayarları" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Oturum değeri" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Genel değer" @@ -11700,153 +11738,153 @@ msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir." msgid "Wrong data" msgstr "Yanlış veri" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Varsayılan gözatma sorgusu olarak \"%s\" yer imi kullanılıyor." -#: sql.php:404 +#: sql.php:425 msgid "Do you really want to execute following query?" msgstr "Aşağıdaki sorguya çalıştırmak istediğinize emin misiniz?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "PHP kodu olarak gösteriliyor" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "Oanylı SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL sonucu" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Üreten:" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Etiket" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "Tablo %1$s başarılı olarak değiştirldi" -#: tbl_alter.php:130 +#: tbl_alter.php:131 msgid "The columns have been moved successfully." msgstr "Sütunlar başarılı olarak taşındı." -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "Çubuk" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "Sütun" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "Çizgi" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "Şerit" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "Dilim" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "İstiflendi" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "Çizelge başlığı" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "X-Ekseni:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "Dizi:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "X-Ekseni etiketi:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "X Değeri" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "Y-Ekseni etiketi:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "Y Değeri" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "%s tablosu zaten var!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "Tablo %1$s oluşturuldu." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Tablonun dökümünü (şemasını) göster" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "GIS görselleştirmesini görüntüle" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "Genişlik" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "Yükseklik" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "Etiket sütunu" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- Yok --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "Uzaysal sütun" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "Yeniden Çiz" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "Dosyaya kaydet" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "Dosya adı" @@ -11862,30 +11900,30 @@ msgstr "İndeks'i PRIMARY olarak yeniden adlandıramazsınız!" msgid "No index parts defined!" msgstr "Tanımlı indeks kısımları yok!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "İndeks ekle" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "İndeksi düzenle" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "İndeks adı:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" "(\"PRIMARY\" sadece ve sadece bir birincil anahtarın adı olmalıdır!" ")" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "İndeks türü:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "İndekse %s sütun ekle" @@ -11908,151 +11946,151 @@ msgstr "%s tablosu %s üzerine taşındı." msgid "Table %s has been copied to %s." msgstr "%s tablosu %s üzerine kopyalandı." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Tablo adı boş!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Tablo sıralamasını şuna göre değiştir" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(birer birer)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Tabloyu şuna (veritabanı.tablo) taşı:" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Tablo seçenekleri" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Tabloyu yeniden şuna adlandır" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Tabloyu şuna (veritabanı.tablo) kopyala:" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Kopyalanmış tabloya geç" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Tablo bakımı" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Tabloyu birleştir" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "%s tablosu temizlendi" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "Tabloyu temizle (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "Tabloyu veya veriyi sil" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "Tabloyu boşalt (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Tabloyu sil (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "Bölüm bakımı" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "Bölüm %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Çözümle" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Seç" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Uyarla" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Yeniden Oluştur" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Onar" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Bölümlendirmeyi kaldır" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "İlgili bütünlük kontrolü:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "Tablolar gösteriliyor" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Alan kullanımı" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Etkili" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Satır İstatistikleri" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "sabit" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "değişken" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Satır uzunluğu" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Satır boyutu" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "Sonraki otoindeks" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" "%1$s üzerinde dış anahtar oluşturma hatası (veri türlerini kontrol edin)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "Dahili bağlantı" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -12060,103 +12098,103 @@ msgstr "" "FOREIGN KEY bağlantısının yerini tutan bir bağlantı varken dahili bağlantı " "mümkün değildir." -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "Dış anahtar kısıtlaması" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "Uzaysal" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 msgid "Distinct values" msgstr "Belirgin değerler" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "Birincil anahtar ekle" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "Benzersiz indeks ekle" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "UZAYSAL indeks ekle" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "FULLTEXT indeks ekle" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "Yok" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "Sütun %s kaldırıldı" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "%s üzerinde birincil anahtar eklendi" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "%s üzerinde bir indeks eklendi" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "Daha fazla eylem göster" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 msgid "Move columns" msgstr "Sütunları taşı" -#: tbl_structure.php:622 +#: tbl_structure.php:624 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:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "Düzenleme görünümü" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Bağlantı görünümü" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Tablo yapısı öner" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "Sütun ekle" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Tablonun Sonuna" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Tablonun Başına" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "%s Şunun Sonrasına" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr " %s sütunda indeks oluştur" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "bölüme ayrıldı" @@ -12309,66 +12347,38 @@ msgstr "Bu veri işleme ifadelerini izle:" msgid "Create version" msgstr "Sürüm oluştur" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "İki farklı sütun için \"örnekle sorgulama\" (joker: \"%\") yap" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "İlave arama kriteri" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "Bu sütunu her noktayı etiketlemek için kullan" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "Çizim için en fazla satır" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "Noktalara gözat/düzenle" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "Nasıl kullanılır" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "Odaklamayı sıfırla" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Daha fazla tema al!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Mevcut MIME türleri" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "İtalik olarak yazılmış MIME türleri ayrı bir dönüşüm işlevine sahip değildir" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Mevcut dönüşümler" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "Açıklama" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Burada bulunmak için yeterli izinlere sahip değilsiniz!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profil güncellendi." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "GÖRÜNÜM adı" diff --git a/po/tt.po b/po/tt.po index f015ca5c5d..a5a7e216fb 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:17+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: tatarish \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Barısın kürsät" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Bitneñ sanı:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "bälki, yä browserneñ iminlek caylawında täräzä-ara yañartu tıyılğan bulıp " "tora." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Äydä" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Tezeş adı" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Açıqlama" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Bu bäyä belän" @@ -105,90 +105,91 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%s biremlege beterelde." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Biremlek açıqlaması: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Tüşämä açıqlaması" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Alan iseme" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Buş" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Töpcay" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Bonı belän bäyläneş:" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Açıqlama" @@ -197,14 +198,14 @@ msgstr "Açıqlama" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Yuq" @@ -217,125 +218,125 @@ msgstr "Yuq" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Äye" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Biremlek eçtälegen (tözeleşen) çığaru" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Bu biremlektä ber genä dä tüşämä yuq." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Saylap Beter" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Saylanunı Töşer" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Biremlek iseme buş!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "\"%s\" biremlege \"%s\" itep ataldı" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been copied to %2$s" msgstr "\"%s\" biremlege \"%s\" itep ataldı" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:470 +#: db_operations.php:476 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Biremlekne bolay atap quy" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "%s biremlege beterelde." -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy msgid "Drop the database (DROP)" msgstr "Biremleklär yuq" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Biremlekne boña kübäyt" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Tözeleşen genä" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Tözeleşen dä, eçtälegen dä" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Eçtälegen genä" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Kübäytü aldınnan CREATE DATABASE östise" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "%s östäw" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "\"AUTO_INCREMENT\" bäyäsen östise" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Çikläwlär östise" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Kübäytelgän biremlekkä küçäse" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Tezü cayı" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -347,61 +348,61 @@ msgstr "" "Bäyläneştä torğan tüşämä belän eşläp bulmas, östämä eşli-alu sünek tora. Anı " "qabızu öçen, %sbonda çirtäse%s." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Bäyläneşlär sxeme" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Tüşämä" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Kerem" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Küläme" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "totıla" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Yasalışı" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Soñğı yañartılu" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Soñğı tikşerü" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -412,422 +413,423 @@ msgstr[0] "%s tüşämä" msgid "You have to choose at least one column to display" msgstr "You have to choose at least one Column to display" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Kübäytelgän tüşämägä küçäse" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Tezü" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Artıp" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Kimep" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Kürsät" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Şart" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Tıq" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Wä" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Sal" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Yä" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Üzgärt" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Add/Delete Criteria Row" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Add/Delete Field Columns" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Sorawnı Yañart" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Tüşämä qullanıp" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "%s biremlegenä SQL-soraw:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Sorawnı Yulla" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "İreşep Bulmadı" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "berärse bulsa" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "barısı da bulsa" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "tulı tezmä, tögäl kileş" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "regexp kileş" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" ezläw näticäse %s:" -#: db_search.php:239 +#: 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, 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:289 +#: db_search.php:292 msgid "Search in database" msgstr "Biremlektä ezläw" -#: db_search.php:292 +#: db_search.php:295 #, 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:297 +#: db_search.php:300 msgid "Find:" msgstr "Ezläw:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Süzlärne buşlıq bilgese belän ayırası (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Kiläse tüşämä eçendä:" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside table(s):" msgid "Inside column:" msgstr "Kiläse tüşämä eçendä:" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Bu biremlektä ber genä dä tüşämä yuq." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "belgesez" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" atlı tüşämä buşatıldı" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" atlı tüşämä beterelde" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Qaraş" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 #, fuzzy msgid "Replication" msgstr "Bäyläneşlär" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Sum" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Saylanğannı:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Saylap Beter" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Check overheaded" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Bastıru küreneşe" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Buşat" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Beter" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Tüşämä tikşerü" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Tüşämä tözätü" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Tüşämä centekläw" -#: db_structure.php:719 +#: db_structure.php:717 #, fuzzy msgid "Add prefix to table" msgstr "Biremleklär yuq" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 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:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 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:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Eçtälek Süzlege" -#: db_tracking.php:74 +#: db_tracking.php:75 #, fuzzy msgid "Tracked tables" msgstr "Tüşämä tikşerü" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Biremlek" -#: db_tracking.php:81 +#: db_tracking.php:82 #, fuzzy msgid "Last version" msgstr "Server söreme" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 #, fuzzy msgid "Created" msgstr "Yarat" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Torış" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Eş" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "" -#: db_tracking.php:135 +#: db_tracking.php:136 #, fuzzy msgid "Versions" msgstr "Farsíça" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 #, fuzzy msgid "Structure snapshot" msgstr "Tözeleşen genä" -#: db_tracking.php:183 +#: db_tracking.php:184 #, fuzzy msgid "Untracked tables" msgstr "Tüşämä tikşerü" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 #, fuzzy msgid "Track table" msgstr "Tüşämä tikşerü" -#: db_tracking.php:228 +#: db_tracking.php:229 #, fuzzy msgid "Database Log" msgstr "Biremlek" @@ -842,18 +844,18 @@ msgstr "Soraw töre" msgid "Selected export type has to be saved in file!" msgstr "" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Rename database to" msgid "Bad parameters!" msgstr "Biremlekne bolay atap quy" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" biremen saqlaw öçen buş ara citmi." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -861,12 +863,12 @@ msgstr "" "Serverdä %s digän birem bar inde, adın almaştırası, yä inde östän yazu " "tamğasın açası qala." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Eçtälege \"%s\" biremenä saqlandı." @@ -876,185 +878,185 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı." msgid "Invalid export type" msgstr "Çığaru ısulı" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a point" msgstr "%s alan östäw" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Yul ara bilgese" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Yaña qullanuçı östäw" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Yaña qullanuçı östäw" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add %s field(s)" msgid "Add a polygon" msgstr "%s alan östäw" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy msgid "Add geometry" msgstr "Yaña qullanuçı östäw" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Bitbilge kürsätü" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Tamğa beterelde." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Birem uqıp bulmadı" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "%s digän bitbilge yaratıldı" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Kire" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" cönläläre sünderelgän." @@ -1064,7 +1066,7 @@ msgstr "\"DROP DATABASE\" cönläläre sünderelgän." msgid "Do you really want to execute \"%s\"?" msgstr "Sin çınlap ta bonı eşlärgä teliseñme: " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1114,7 +1116,7 @@ msgstr "Tezeş" msgid "Edit Index" msgstr "Kiläse yazma üzgärtü" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %d column(s) to index" @@ -1135,16 +1137,16 @@ msgstr "Host adı buş!" msgid "The user name is empty!" msgstr "Atama buş!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Sersüzeñ buş!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Sersüzlär berbersenä kileşmi!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1167,25 +1169,26 @@ msgstr "Saylanğan qullanuçı beterü" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Tözätü" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Server Saylaw" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy msgid "Live query chart" msgstr "SQL-soraw" @@ -1196,24 +1199,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Tulayım" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1235,7 +1238,7 @@ msgstr "Server Saylaw" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Proseslar" @@ -1255,7 +1258,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy msgid "Query statistics" msgstr "Kerem Nöfüse" @@ -1305,14 +1308,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1374,32 +1377,32 @@ msgstr "" msgid "Bytes received" msgstr "Alındı" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Totaşular" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1415,11 +1418,11 @@ msgstr "%s tüşämä" msgid "Questions" msgstr "Farsíça" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Taşım" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1443,11 +1446,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Buş" @@ -1547,7 +1550,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:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1635,7 +1638,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Waqıt" @@ -1742,10 +1745,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Yökläw" @@ -1801,9 +1804,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "" @@ -1818,11 +1821,11 @@ msgstr "Cirle" msgid "Processing Request" msgstr "Proseslar" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Biremlek saylanmağan." @@ -1834,9 +1837,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1892,19 +1895,19 @@ msgstr "Tezeşlär" msgid "Show indexes" msgstr "Sırlı kürsät" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Yat tezeş tikşerüen sünderep" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Açıq" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1942,7 +1945,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1984,8 +1987,8 @@ msgstr "SQL-soraw" msgid "No rows selected" msgstr "Kertemnär sayladı" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Üzgärt" @@ -1993,18 +1996,18 @@ msgstr "Üzgärt" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Saqla" @@ -2018,7 +2021,7 @@ msgstr "SQL-soraw" msgid "Show search criteria" msgstr "SQL-soraw" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2070,12 +2073,12 @@ msgstr "Soraw qaytarmasın eşkärtü" msgid "Data point content" msgstr "Data pointer olılığı" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Qarama" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2097,7 +2100,7 @@ msgstr "" msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2191,7 +2194,7 @@ msgstr "Ürçet" msgid "Change Password" msgstr "Sersüz üzgärtü" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2305,27 +2308,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2333,37 +2336,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dek" @@ -2412,32 +2415,32 @@ msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Şmb" @@ -2571,16 +2574,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "sekund sayın" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "minut sayın" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "säğät sayın" @@ -2601,71 +2604,298 @@ msgstr "" msgid "Font size" msgstr "" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +msgid "Save edited data" +msgstr "Biremnär törgäge" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "Add/Delete Field Columns" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Başlawğa" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Uzğan" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Kiläse" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Azaq" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Şmb" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "Alannar sanı" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Dşm" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "yatqırıp" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "yatqırıp (başlıqlar almaşıp)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "bastırıp" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Tamğalanğan soraw cibärü" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Qullanası tezeş" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +#, fuzzy +msgid "Options" +msgstr "Eşkärtü" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Partial Texts" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Tulı Mätennär" + +#: libraries/DisplayResults.class.php:1344 +#, fuzzy +msgid "Relational key" +msgstr "Bäyläneşlär sxeme" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Bäyläneşlär sxeme" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Browser transformation" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +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 +msgid "Kill" +msgstr "Üter" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "Törle buluı bar. YBS 3.11 qarísı" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "sorawda" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Yazma sanı:" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "tulayım" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Soraw eşkärtü %01.4f sek aldı" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Soraw qaytarmasın eşkärtü" + +#: libraries/DisplayResults.class.php:4365 +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 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "PDF schema kürsätü" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +msgid "Create view" +msgstr "Server söreme" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Bäyläneş tabılmadı" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Törle buluı bar. YBS 3.11 qarísı" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "Yaña phpMyAdmin-täräzä açu" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +msgid "Javascript must be enabled past this point" +msgstr "" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Tezeşlär" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Qabatsız" @@ -2678,8 +2908,8 @@ msgstr "" msgid "Cardinality" msgstr "Qabatlanu sanı" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 #, fuzzy msgid "Comment" @@ -2701,131 +2931,131 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Biremleklär" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Tözeleş" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Östäw" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Eşkärtü" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Soraw" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Xoquqlar" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 #, fuzzy msgid "Events" msgstr "Cibärelde" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Qullanuçı" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Binar köndälek" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Üzgärmälär" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Bilgelämä" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Engine" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Xata" @@ -2851,7 +3081,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "Kertemnär sayladı" msgstr[1] "Kertemnär sayladı" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2946,16 +3176,108 @@ 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 +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 +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 +msgid "Value" +msgstr "Bäyä" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Ezläw" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Östäw" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Alannar saylísı (iñ kimendä ber):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Ezläw şartın östäw (\"WHERE\" eçtälege):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Bit sayın Kertem sanı" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Kürsätü tärtibe:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +msgid "Additional search criteria" +msgstr "SQL-soraw" + +#: 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 "\"Ürnäk buyınça soraw\" eşkärtü (almaştırma: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "\"Ürnäk buyınça soraw\" eşkärtü (almaştırma: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +msgid "How to use" +msgstr "PHP Söreme" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Awdar" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "%s digän tışlaw sürätläre urınlaşqan yul tabılmadı!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "bonı sayla" @@ -2974,7 +3296,7 @@ msgstr "%s digän tışlaw tabılmadı!" msgid "Theme path not found for theme %s!" msgstr "%s digän tışlaw urınlaşqan yul tabılmadı!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3272,20 +3594,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Totaşa almím: yaraqsız köyläwlär." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%s siña İsäñme di" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3301,58 +3623,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -msgid "Javascript must be enabled past this point" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Kereş" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Atama:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Sersüz:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Server Saylaw" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Kimendä %s sekund eşlämi tordıq, şuña kürä yañadan keräse" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL servergä totaşılıp bulmadı" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Atama/sersüzeñ yalğış buluına kürä ireşep bulmadı." @@ -3384,7 +3702,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Tüşämä" @@ -3396,13 +3714,13 @@ msgstr "Tüşämä" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Eçtälek" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Overhead" @@ -3429,248 +3747,218 @@ msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." msgid "Check Privileges" msgstr "Xoquqlar tikşerü" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Failed to read configuration file" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 msgid "" "The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your " "configuration file!" msgstr "" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Qullanma" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-soraw" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL qaytarışı: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL Centekläw" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "SQL Centeklämäskä" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP Kodısız" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-Kod yasa" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Yañart" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL Tikşermäskä" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL'nı Tikşer" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Engine" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Ykş" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y.%m.%d, %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s kön, %s säğät, %s minut ta %s sekund" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Başlawğa" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Uzğan" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Kiläse" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Azaq" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr ""%s" biremlegenä küç." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-server'neñ yökläw törgäge" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 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í" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Bastır" @@ -3702,8 +3990,8 @@ msgid "Closed" msgstr "Yabılmağan cäyä" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Sünek" @@ -3854,9 +4142,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Awdar" @@ -4069,10 +4357,6 @@ msgstr "Tüşämä tözeleşenä küzätü" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4131,7 +4415,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Biremgä saqlıysı" @@ -4141,7 +4425,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Tözeleş" @@ -4260,7 +4544,7 @@ msgid "MIME type" msgstr "MIME-törläre" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Bäyläneşlär" @@ -5813,9 +6097,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Sersüz" @@ -6091,30 +6375,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "Törle buluı bar. YBS 3.11 qarísı" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Sersüz üzgärtü" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Sersüzsez" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Qabatla" @@ -6139,13 +6417,13 @@ msgstr "Yaña biremlek yaratu" msgid "Create" msgstr "Yarat" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Xoquqsız" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 #, fuzzy msgid "Create table" msgstr "Yaña Bit yaratu" @@ -6153,9 +6431,9 @@ 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Adı" @@ -6344,25 +6622,25 @@ msgstr "" msgid "Encoding Conversion:" msgstr "MySQL belän totaştırğıç söreme" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format msgid "committed on %1$s by %2$s" msgstr "Server söreme" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format msgid "authored on %1$s by %2$s" msgstr "Server söreme" @@ -6479,205 +6757,37 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -msgid "Save edited data" -msgstr "Biremnär törgäge" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "Add/Delete Field Columns" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Şmb" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "Alannar sanı" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Dşm" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "yatqırıp" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "yatqırıp (başlıqlar almaşıp)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "bastırıp" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Tamğalanğan soraw cibärü" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Qullanası tezeş" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -#, fuzzy -msgid "Options" -msgstr "Eşkärtü" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Partial Texts" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Tulı Mätennär" - -#: libraries/display_tbl.lib.php:1278 -#, fuzzy -msgid "Relational key" -msgstr "Bäyläneşlär sxeme" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Bäyläneşlär sxeme" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Browser transformation" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Bu yazma salınğan buldı" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Üter" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "sorawda" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Yazma sanı:" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "tulayım" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Soraw eşkärtü %01.4f sek aldı" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Soraw qaytarmasın eşkärtü" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Bastıru küreneşe (bar mätennär belän)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "PDF schema kürsätü" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -msgid "Create view" -msgstr "Server söreme" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Bäyläneş tabılmadı" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Söreme turında" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Biremnär törgäge" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "InnoDB biremnäre öçen törgäk yulınıñ töp öleşe bu." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Eçtälek bireme" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Biremlektä arttıru adımı" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "Tüşämä alanı tulğaç, anı arttıruçı adımı bu." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Bufer pul olılığı" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -6685,79 +6795,79 @@ msgstr "" "InnoDB üz tüşämä öçen alxäter belän açqıçlar urnaştırğanda bu olılıqta " "bulğan bufer qullana." -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Bufer Pulı" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB Torışı" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Bufer Pul Totılğanlığı" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "bit" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Buş bit sanı" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Üzgärtelgän bit" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Eçtälekle bitlär" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Buşatası bit" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Eştä bit" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Berketelgän bit" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Bufer Pul Terelege" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Uquğa soraw" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Yazuğa soraw" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Uñışsız uqu" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Yazğanda kötterü" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Uñışsız uqu, % öçen" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "Yazğanda kötterü, % öçen" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Data pointer olılığı" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6765,11 +6875,11 @@ msgstr "" "MAX_ROWS köylämäse bäyälängän oçraqta, CREATE TABLE aşa MyISAM tüşämä " "qorğanda qullanası pointerneñ baytlı olılığı." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Üzennän tözälü ısulı" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -6777,11 +6887,11 @@ msgstr "" "Cimerelgän MyISAM tüşämä üzennän tözälü ısulı, serverne --myisam-recover " "köylämäse belän cibärgän çaqta kebek." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Tezü öçen waqıtlı birem olılığın çıläw" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6790,11 +6900,11 @@ msgstr "" "MyISAM açqıçın yañadan qorğanda (REPAIR TABLE, ALTER TABLE, yä LOAD DATA " "INFILE aşa), MySQL qullanırlıq waqıtlı birem olılığın çikläw bu." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Açqıç yasaw öçen waqıtlı birem olılığın çıläw" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6804,11 +6914,11 @@ msgstr "" "bilgelängän açqıç alxäterennän olıraq bulırğa tieş, şul açqıç alxäterläw " "ısulına qarap." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Tözätü cebe" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6816,11 +6926,11 @@ msgstr "" "Bu bäyä 1dän dä olıraq ikän, MyISAM tüşämä tezüle Tözätü eşe belän bergä " "açqıçlar qoru eşe dä cibäreler (açqıç sayın ber ayırım cep)." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Tezü bufer küläme" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6828,73 +6938,73 @@ msgstr "" "REPAIR TABLE aşa MyISAM-açqıç tözätkändä dä, CREATE INDEX yä ALTER TABLE aşa " "açqıç östägändä dä yasala torğan bufer bu." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 #, fuzzy msgid "Log cache size" msgstr "Tezü bufer küläme" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6902,49 +7012,49 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 #, fuzzy msgid "Log buffer size" msgstr "Tezü bufer küläme" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6952,20 +7062,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Bäyläneşlär" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -7025,15 +7135,15 @@ msgstr "Tüşämä eçtälegen çığaru" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 #, fuzzy msgid "Event" msgstr "Cibärelde" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7105,14 +7215,14 @@ msgstr "Barlıq MIME-törlär" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Host" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Ürçäw Zamanı" @@ -7314,21 +7424,12 @@ msgstr "Qaraş" msgid "Export contents" msgstr "Çığaru ısulı" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "Yaña phpMyAdmin-täräzä açu" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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ı." @@ -7424,13 +7525,13 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 #, fuzzy msgid "Table name" msgstr "tüşämä adı" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Alan iseme" @@ -7497,98 +7598,80 @@ msgstr "SQL, kileşterü ısulı" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funksí" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Binar" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Binar - üzgärtmäslek" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "web-server'neñ yökläw törgäge" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Östäw" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr ", şunnan soñ" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Yaña yazma kert tä" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Aldağı bitkä qaytu" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Tağın ber yazma östäw" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Bu bitkä kire qaytası" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Kiläse yazma üzgärtü" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Bäyä" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7605,36 +7688,36 @@ msgstr "Buş" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Cmğ" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Künder" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " 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:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Üzgäreşsez" @@ -7846,92 +7929,92 @@ msgstr "" msgid "This format has no options" msgstr "Bu tözeleşeneñ köyläneşe yuq" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "OK tügel" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Açıq" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Mömkinleklär Kürsätü" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF yaratu" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Buy Açıqlamasın Kürsätäse" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 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:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Tamğalanğan SQL-soraw" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-taríxı" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "Açıqlamasız" @@ -7939,7 +8022,7 @@ msgstr "Açıqlamasız" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7951,13 +8034,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "İreşü iseme" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 #, fuzzy msgid "Port" msgstr "Tezü" @@ -7971,7 +8054,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Üzgärmä" @@ -7985,38 +8068,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Bu mätennän" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Bar bulğan host" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Cirle" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Bu Sanaq" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Host Tüşämä eçennän" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8030,7 +8113,7 @@ msgstr "Sersüz Ürçetü" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -8062,101 +8145,102 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy msgid "Edit event" msgstr "Cibärelde" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proseslar" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Buldıq töre" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Buldıq töre" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Üzgärt" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Tamğalanğan soraw cibärü" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy msgctxt "Start of recurring event" msgid "Start" msgstr "Torış" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Azaq" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Tulayım östise" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8187,7 +8271,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -8208,117 +8292,117 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "Routine %1$s has been created." msgstr "\"%s\" atlı tüşämä beterelde" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Alan iseme" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Yasalışı" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Ozınlıq/Bäyä*" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Biremlekne bolay atap quy" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Ozınlıq/Bäyä*" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tüşämä köyläneşe" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Soraw töre" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, 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:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8337,43 +8421,43 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "Trigger %1$s has been created." msgstr "\"%s\" atlı tüşämä beterelde" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy msgid "Edit trigger" msgstr "Yaña qullanuçı östäw" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "server adı" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Waqıt" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Tüşämä adı yaraqsız" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8478,7 +8562,7 @@ msgstr "Tüşämä tikşerü" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8488,7 +8572,7 @@ msgstr "\"%s\" atlı tüşämä yuq äle!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8496,7 +8580,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8508,27 +8592,27 @@ msgstr "\"%s\" biremlek tözeleşe - %s. bit" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Bäyläneşlär sxeme" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Eçtälek isemlege" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Üzençälek" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Östämä" @@ -8648,7 +8732,7 @@ msgstr "Belgesez tel: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 #, fuzzy msgid "Source database" msgstr "Biremlektä ezläw: " @@ -8667,7 +8751,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 #, fuzzy msgid "Target database" msgstr "Biremlektä ezläw: " @@ -8687,7 +8771,7 @@ msgstr "%s digän serverdä SQL-soraw eşlätü" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 #, fuzzy msgid "Clear" @@ -8699,11 +8783,11 @@ msgstr "Täqwim" msgid "Columns" msgstr "Alan iseme" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" @@ -8787,7 +8871,7 @@ msgstr "" "SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında " "%squllanmada%s uqıp bula." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, php-format msgid "Tracking of %s is activated." msgstr "" @@ -8818,8 +8902,8 @@ msgstr "" "Bolayraq kertäse: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Tezeş" @@ -8873,13 +8957,13 @@ msgstr "Buş" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Töp" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Tulımäten" @@ -8893,20 +8977,20 @@ msgstr "" msgid "after %s" msgstr "%s artınnan" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, 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:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Kimendä berär alan kertäse." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Saqlaw Isulı" @@ -8914,45 +8998,6 @@ msgstr "Saqlaw Isulı" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Ezläw" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Alannar saylísı (iñ kimendä ber):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Ezläw şartın östäw (\"WHERE\" eçtälege):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Bit sayın Kertem sanı" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Kürsätü tärtibe:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "\"Ürnäk buyınça soraw\" eşkärtü (almaştırma: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9122,13 +9167,13 @@ msgstr "" msgid "Manage your settings" msgstr "Bäyläneşlär buyınça töp mömkinleklär" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Üzgärtülär saqlandı" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9141,7 +9186,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9172,7 +9217,7 @@ msgstr "MySQL-totaşunıñ tezü cayı" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -9198,9 +9243,9 @@ msgstr "Server söreme" msgid "Protocol version" msgstr "Protokol söreme" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Qullanuçı" @@ -9328,148 +9373,148 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Biremleklär yuq" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "tüşämä adı" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "tüşämä adı" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy msgctxt "short form" msgid "Create table" msgstr "Yaña Bit yaratu" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Berär biremlek saylísı" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 #, fuzzy msgid "Create relation" msgstr "Server söreme" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "Traditional Chinese" msgid "Toggle relation lines" msgstr "Ğädäti Çinçä" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Sorawnı Yulla" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 #, fuzzy msgid "Hide/Show all" msgstr "Barısın kürsät" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 #, fuzzy msgid "Number of tables" msgstr "Alannar sanı" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy msgid "Relation operator" msgstr "Bäyläneşkä küzätü" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Export" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "sorawda" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy msgid "Rename to" msgstr "Tüşämä adın üzgärtü" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "İreşü iseme" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Yarat" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9484,62 +9529,62 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "bit" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Biremdän alu" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Kertemnär sayladı" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yaña tezeş yaratu" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "İreşü iseme" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 #, fuzzy msgid "Internal relation added" msgstr "Eçke bäyläneş" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 #, fuzzy msgid "Relation deleted" msgstr "Bäyläneşkä küzätü" @@ -9552,91 +9597,91 @@ msgstr "" msgid "Modifications have been saved" msgstr "Üzgärtülär saqlandı" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Biremdän alu" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Biremdän alu" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Barısı" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "%s atlı tüşämä yuq, yä ki \"%s\" tezmäsenä kermi" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9646,18 +9691,18 @@ msgstr "\"%s\" atlı tüşämä yuq äle!" msgid "Select binary log to view" msgstr "Qaraw öçen binar köndälek saylaw" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 #, fuzzy msgid "Files" msgstr "Alan" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Sorawnı Qısqartıp Kürsätäse" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Tulı Sorawlar Kürsät" @@ -9673,7 +9718,7 @@ msgstr "Urın" msgid "Original position" msgstr "Tärtip buyınça urın" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Beleşmä" @@ -9681,31 +9726,31 @@ msgstr "Beleşmä" msgid "Character Sets and Collations" msgstr "Bilgelämä & Tezü cayı" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "\"%s\" biremlegen beterü uñışlı uzdı." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Biremlek nöfüsläre" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Nöfüsne Cibärü" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9717,213 +9762,213 @@ msgstr "" msgid "Storage Engines" msgstr "Saqlaw Isulı" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Biremleklärneñ eçtälegen (tözeleşen) çığaru" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Başlawğa" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 #, fuzzy msgid "Version" msgstr "Farsíça" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Sünek" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "GRANT'tan basqa bar xoquqlar da bar." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Biredä bulğan tüşämä tözeleşen üzgärtü xoquqı." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Yaña biremlek/tüşämä yasaw xoquqı." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Saqlanğan funksílar qorırğa birä." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Yaña tüşämä yasaw xoquqı." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Waqıtlı tüşämä yasaw xoquqı." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Qullanuçı xísabın qoru/salu/ataw eşen qılırğa birä." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Yaña qaraş qorırğa birä." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Eçtälek beterü xoquqı." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Biremlek/tüşämä beterü xoquqı." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Tüşämä beterü xoquqı." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Eçke funksílar eşlätterergä birä." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tüşämä." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Açqıçlarnı qoru/beterü xoquqı." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Eçtälek östäw/almaştıru xoquqı." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 #, fuzzy msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Eçtälekne uqu xoquqı." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorawların eşläterlek itä." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Serverne tuqtatu xoquqı." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9933,173 +9978,173 @@ msgstr "" "Required for most administrative operations like setting global variables or " "killing threads of other users." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Açqıçlarnı qoru/beterü xoquqı." -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Eçtälek üzgärtü xoquqı." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Xoquqlar yuq." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Buş" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Berär tüşämä öçen xoquqlar" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Beläse: MySQL'da xoquq adı İnglizçä kertelä!" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "İdärä" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Töp xoquq" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Berär biremlekkä qağılışlı xoquqlar" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Resurs çikläwläre" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Beläse: 0 (nül) kertelgän çaqta çikläwe beterelä." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Kereş Turında" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Sersüzen üzgärtäse tügel" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Qullanuçı yuq." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" atlı qullanuçı bar inde!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Yana qullanuçı östälände." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" öçen sezsüz üzgärtü uñışlı uzdı." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "\"%s\" Beterü" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Beteräse qullanuçılar saylanmağan!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Bu xoquqlarnı yöklä" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Xoquqlar Üzgärtü" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Töşer" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Export" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Törle" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Xoquqlar" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Xoquqlar" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Qullanuçılar tezmäse" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Xoquq" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Saylanğan qullanuçı beterü" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Qullanuçı xoquqların awdarıp beteräse." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10112,142 +10157,142 @@ msgstr "" "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Berär bağana öçen xoquqlar" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Kiläse biremlek öçen xoquqlar östäw" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Kiläse tüşämä öçen xoquqlar östäw" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Qullanuçı biremlege" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "ğömümi" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "berär biremlekkä qağılışlı" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "almaşbilge" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "\"%s\" atlı Qaraş beterelgän buldı" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10256,272 +10301,272 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 #, fuzzy msgid "Please select databases:" msgstr "Berär biremlek saylísı" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full start" msgstr "Tulımäten" -#: server_replication.php:353 +#: server_replication.php:354 #, fuzzy msgid "Full stop" msgstr "Tulımäten" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Tözeleşen genä" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Tözeleşen genä" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "%s cebe uñışlı üterelgän buldı." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin %s ceben üterä almadı. Bälki ul yabılğan bulğan da inde." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Eşkärtkeç" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Soraw alxätere" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Ceplär" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Çaqlı birem" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Kiçerelgän östäw" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Tezeş alxätere" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Bäylär" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Tezü" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Eş-ara idäräçese" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Tüşämälärne yabıp beteräse" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Açıq tüşämä tezmäse" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Soraw alxäteren awdar" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Eşläw Torışı" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Yañart" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Alan" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Sersüzen üzgärtäse tügel" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Açıq tüşämä tezmäse" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Açıq tüşämä tezmäse" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Bäyläneşlär" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Soraw töre" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "Funksí" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10529,118 +10574,118 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Cömlä" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 #, fuzzy msgid "Replication status" msgstr "Bäyläneşlär" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Alındı" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Cibärelde" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Özderelde" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Ämer" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10648,78 +10693,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10727,7 +10772,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10735,43 +10780,43 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 #, fuzzy msgid "The number of pages currently dirty." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Buş bitlär sanı." -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10779,33 +10824,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10814,92 +10859,92 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 #, fuzzy msgid "The current number of pending reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:1360 +#: server_status.php:1359 #, fuzzy msgid "The current number of pending writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 #, fuzzy msgid "The total number of data reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:1363 +#: server_status.php:1362 #, fuzzy msgid "The total number of data writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 #, fuzzy msgid "The number of log write requests." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:1369 +#: server_status.php:1368 #, 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:1370 +#: server_status.php:1369 #, 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:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10908,161 +10953,161 @@ msgstr "" "values are counted in pages; the page size allows them to be easily " "converted to bytes." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Uqılğan bit sanı bu." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Yazılğan bit sanı bu." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, 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:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 #, 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:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Açıq toruçı birem sanı." -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Açıq toruçı tüşämä sanı." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "Alxätergä turı kilü sanı bu." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -11070,99 +11115,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11170,18 +11215,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Biredä açıq bulğan totaşu sanı." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11189,71 +11234,71 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Key cache" msgid "Thread cache hit rate (calculated value)" msgstr "Tezeş alxätere" -#: server_status.php:1433 +#: server_status.php:1432 #, fuzzy msgid "The number of threads that are not sleeping." msgstr "Açıq toruçı birem sanı." -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Şmb" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s alan östäw" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Yañart" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Add/Delete Field Columns" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11262,7 +11307,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11270,18 +11315,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11289,11 +11334,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11301,231 +11346,231 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Biremlekne bolay atap quy" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Tüşämä Saylaw" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Tüşämä adı yaraqsız" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy msgid "Add this series" msgstr "Yaña qullanuçı östäw" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy msgid "Series in Chart:" msgstr "SQL-soraw" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy msgid "Log statistics" msgstr "Kerem Nöfüse" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Tüşämä Saylaw" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Soraw töre" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "sekund sayın" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "totıla" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 #, fuzzy msgid "Structure Difference" msgstr "Tözeleşen genä" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL-soraw" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Totaşular" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Server üzgärmäläre & köyläneşe" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Sessi bäyäse" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Töp bäyä" @@ -11818,180 +11863,180 @@ msgstr "" msgid "Wrong data" msgstr "Biremleklär yuq" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Sin çınlap ta bonı eşlärgä teliseñme: " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL'nı Tikşer" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL qaytarışı" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Ürçätkeç:" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` atlı tüşäw tezeşläre belän nidider tiskärlek bar" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Yarlıq" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, fuzzy, php-format msgid "Table %1$s has been altered successfully" msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Alan iseme" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Engine" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Yomğaq başlığı" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy msgid "Series:" msgstr "SQL-soraw" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Bäyä" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Bäyä" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "%s atlı tüşämä bar inde!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, fuzzy, php-format msgid "Table %1$s has been created." msgstr "\"%s\" atlı tüşämä beterelde" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Tüşämä eçtälegen (tözeleşen) çığaru" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Add/Delete Field Columns" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Tulayım" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Biremgä saqlıysı" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy msgid "File name" msgstr "tüşämä adı" @@ -12008,30 +12053,30 @@ msgstr "Açqıçnı \"PRIMARY\" itep atap bulmí!" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Print view" msgid "Edit index" msgstr "Bastıru küreneşe" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Tezeş adı :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(Töp açqıçnıñ ğına adı \"PRIMARY\" bulırğa tieş!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Tezeş töre :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Açqıçqa tağın  %s alan östise" @@ -12054,277 +12099,277 @@ msgstr "\"%s\" atlı tüşämä \"%s\" kebek ataldı." msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Tüşämä adı kertelmi qaldı!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Tüşämä eçtälegen bolay tezäse" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(sıñar)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Boña küçerü (biremlek.tüşämä):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Tüşämä köyläneşe" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Tüşämä adın üzgärtü" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Boña kübäyt (biremlek.tüşämä):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Kübäytelgän tüşämägä küçäse" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Tüşämä eşkärtü" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Tüşämä kisäklären berläşterü" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "\"%s\" atlı tüşämä awdarıldı" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Tüşäwne awdar (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Tüşämä eçtälegen çığaru" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy msgid "Delete the table (DROP)" msgstr "Biremleklär yuq" -#: tbl_operations.php:766 +#: tbl_operations.php:772 #, fuzzy msgid "Partition maintenance" msgstr "Tüşämä eşkärtü" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 #, fuzzy msgid "Check" msgstr "Çexçä" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 #, fuzzy msgid "Repair" msgstr "Tüşämä tözätü" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Bäyläneşlärne döreslekkä tikşerü:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Tüşämälär kürsätäse" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Totılğan Alan" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Uñışlı" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Kerem Nöfüse" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "üzgärüçän" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Kerem ozınlığı" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Kerem olılığı" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Eçke bäyläneş" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy msgid "Distinct values" msgstr "Browse foreign values" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Buş" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "\"%s\" atlı tüşämä beterelde" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "\"%s\" öçen töp açqıç qorıldı" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "\"%s\" öçen ber açqıç qorıldı" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "PHP turında" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add %s field(s)" msgid "Move columns" msgstr "%s alan östäw" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Bastıru küreneşe" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Bäyläneşkä küzätü" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Tüşämä tözeleşenä küzätü" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add %s field(s)" msgid "Add column" msgstr "%s alan östäw" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Tüşämä azağına" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Tüşämä Başına" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "%s artınnan" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12480,74 +12525,40 @@ msgstr "" msgid "Create version" msgstr "Server söreme" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "\"Ürnäk buyınça soraw\" eşkärtü (almaştırma: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -msgid "Additional search criteria" -msgstr "SQL-soraw" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -msgid "How to use" -msgstr "PHP Söreme" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Awdar" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Barlıq MIME-törlär" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "MIME-types printed in italics do not have a seperate transformation function" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Açıqlama" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Bonda bulu öçen, xoquqlarıñ citmi!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/ug.po b/po/ug.po index 2dc5717051..e6f5df4080 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:16+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uyghur \n" @@ -17,21 +17,21 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "ھەممىسىنى كۆرسىتىش" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "بەت نومۇرى:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,58 +40,58 @@ msgstr "" "كۆزنەكنى يىڭىلاشقا ئامالسىز،سىز بەلكەم باش كۆزنەكنى تاقىۋەتكەن بۇلىشىڭىز " "ياكى تور كۆرەۈچىڭىزنىڭ بىخەتەرلىك تەڭشىكى تسقۇنلۇق قىلغان بۇلىشى مۇمكىن." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "ئىجرا قىلىش" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "قىممەت ئىسمى" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "ئىزاھات" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "مۇشۇ قىممەتنى ئىشلىتىش" @@ -107,88 +107,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "ساندان ئىزاھاتى: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "جەدۋەل ئىزاھى" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "سۆزلەم" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "بوش" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "ئەندىز" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "ئۇلانما" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "ئىزاھلار" @@ -197,14 +198,14 @@ msgstr "ئىزاھلار" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "يوق" @@ -217,122 +218,122 @@ msgstr "يوق" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "بولدى" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "ساندان قالدۇقىنى كۆرسىتىش" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "سانداندا جەدۋەل يوق" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "ھەممىنى تاللاش" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "تاللاشنى قالدۇرۇش" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "ساندان ئىسمىنى بوش قويماڭ!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "ساندان ئىسمى %s غا ئۆزگەرتىلدى %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "ساندان %s غا كۆچۈرۈلدى %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "ساندان %s ئۆچۈرۈلدى." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "كۆچۈرۈلگەن ساندان" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "كۆچۈرۈلگەن ساندان" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "تۈزىلىشىنىلا" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "تۈزۈلىشى ۋە ئۇچۇر" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "ئۇچۇرنىلا" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "ئاندىنقى سانداننى كۆپەيتىپ ساندان قۇرۇش" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "قوشۇلغىنى %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قوشۇش" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "مەجبۇرى قوشۇش" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "تاسقاش" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -341,61 +342,61 @@ msgstr "" "ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " "%sبۇ يەرنى كۆرۈڭ%s." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Display PDF schema" msgid "Edit or export relational schema" msgstr "PDF تىزىىسىنى كۆرسىتىش" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "جەدۋەل" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "سەپ سانى" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "ھەجىم" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "ئىشلىتىلمەكتە" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "قۇرۇش" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "ئاخىرقى يېڭلىنىش" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "ئاخىرقى تەكشۈرۈش" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -405,117 +406,117 @@ msgstr[0] "%s جەدۋەل" msgid "You have to choose at least one column to display" msgstr "بۇنى بىجىرىش ئۈچۈن مەزمۇن تاللانغان بولۇشى كېرەك" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "تۈرلەش" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "ئارتىش" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "كېمىيىش" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "كۆرسىتىش" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "شەرت" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "قىستۇرۇش" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "ۋە" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "ئۆچۈرۈش" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "ياكى" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "ئۆزگەرتىش" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "رەت قوشۇش\\ئۆچۈرۈش" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "يېڭلاش" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "جەدۋەللەرنى ئىشلىتىش" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL ئىجرا بولۋاتقان ساندان %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "تاپشۇرۇش" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "رەت قىلىندى" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "سۆزلەردىن ئەڭ ئازدىن بىرى" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "بارلىق سۆزلەر" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "ئېنىق ماسلىق" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "مۇنتىزىم ئىپادە" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"%s\" نىڭ ئىزلەش نەتىجىسى %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -523,286 +524,287 @@ msgid "%1$s match inside table %2$s" msgid_plural "%1$s matches inside table %2$s" msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "جەمئىي: %s ئوخشاشلىق" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "سانداندىن ئىزدەش" -#: db_search.php:292 +#: db_search.php:295 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "ئىزدەشكە تىگىشلىك خەت ياكى قىقىممىتى(دەرىجىسى:«%»" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "تاپقىنى:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "ھەر بىر تاق سۆزنى (\" \") بەلگىسى ئارقىلىق ئايرىڭ." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "تۆۋەندىكى جەدۋەل(لەر): " -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "ئىچىدىكى سۆزلەم:" -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "سانداندا جەدۋەل يوق" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "%s جەدۋەل تازىلاندى" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "%s جەدىۋەل ئۆچۈرۈلدى" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "ئاكتىپ ئىزلاش" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "كۆچۈرۈش" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "جەمئىي" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندىزە موتۇرى" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "تاللانغىنى:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "ھەممىنى تاللاش" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "مەزمۇن بارلارنى تاللاش" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "چىقىرىش" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "بېسىپ كۆرسىتىش" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "تازىلاش" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "ئۆچۈرۈش" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "جەدۋەل تەكشۈرۈش" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "جەدۋەلنى ئەلالاش" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "جەدۋەلنى ئوڭشاش" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "جەدۋەل تەھلىلى" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Repair table" msgid "Replace table prefix" msgstr "جەدۋەلنى ئوڭشاش" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "مەلۇمات لۇغىتى" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "ئىزلانغان جەدۋەل" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "ساندان" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "ېيڭى نەشىر" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "قۇرۇش" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "يېڭلاش" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "ھالەت" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "ئامال" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "پائال" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "پائالسىز" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "نەشىر" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "ئىزلاش خاتىرىسى" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "تۈزۈلمە رەسىمى" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "ئىزلانمىغان جەدۋەللەر" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "جەدۋەل ئىزلاش" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "ساندان خاتىرىسى" @@ -816,18 +818,18 @@ msgstr "چىقىرىش" msgid "Selected export type has to be saved in file!" msgstr "چىقارماقچى بولغان ھۆججەت تۈرىنى تاللاڭ!" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Routines" msgid "Bad parameters!" msgstr "دائىملىق" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "ھۆججەتنى ساقلاشقا يىتەرلىك بوشلۇق يوق %s。" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -835,12 +837,12 @@ msgstr "" "%s بۇ ھۆججەت مۇلازىمىتېردا باركەن، ھۆججەت ئىسمىنى ئۆزگەرتىڭ ياكى قاپلاپ " "كۆچۈرۈش تۈرىنى تالالڭ." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "بۇ %s ھۆججەتنى مۇلازىمىتېردا ساقلاش ھوقۇقىڭىز يېتەرسىز." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "%s ھۆججىتىدە ساقلاندى." @@ -851,100 +853,100 @@ msgstr "%s ھۆججىتىدە ساقلاندى." msgid "Invalid export type" msgstr "چىقىرىش" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Routines" msgid "Add a point" msgstr "دائىملىق" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "مەجبۇرى قوشۇش" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add constraints" msgid "Add geometry" msgstr "مەجبۇرى قوشۇش" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -953,82 +955,82 @@ msgstr "" "سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "خەتكۈچنى كۆرسىتىش" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "خەتكۈچ ئۆچۈرۈلدى" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "ھۆججەتنى ئوقۇيالمىدى" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "قىستۇرمىلار كىرگۈزىشكە ئامالسىز، قاچىلانمىنى تەكشۈرۈپ بىقىڭ!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "قۇرۇلغان خەتكۈچ %s" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "%d كىرگۈزىش غەلبىىك بولدى" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "قايتىش" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin دەستەك توركۆرگۈچلەردە ياخشى ئىشلەيدۇ." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكلەنگەن." @@ -1038,7 +1040,7 @@ msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكل msgid "Do you really want to execute \"%s\"?" msgstr "راستىنلا ئجرا قىلىمسىز" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "ساندان تولۇق ئۆچۈرۈلدى!" @@ -1088,7 +1090,7 @@ msgstr "تېزىسلار" msgid "Edit Index" msgstr "قىستۇرۇش" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add/Delete columns" msgid "Add %d column(s) to index" @@ -1109,16 +1111,16 @@ msgstr "مۇلازىمىتېر ئىسمى بوشكەن!" msgid "The user name is empty!" msgstr "قوللانغۇچى ئىسمى بوشكەن!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "پارول بوشكەن!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "كىرگۈزگەن پارولار ئوخشاش ئەمەس!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Add %s" msgid "Add user" @@ -1139,25 +1141,26 @@ msgstr "" msgid "Close" msgstr "" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "تەھىرلەش" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "مۇلازىمىتېر تاللاش" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy #| msgid "SQL query" msgid "Live query chart" @@ -1169,24 +1172,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "يىغىندىسى" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1208,7 +1211,7 @@ msgstr "مۇلازىمىتېر تاللاش" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "" @@ -1226,7 +1229,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "" @@ -1275,14 +1278,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KiB" @@ -1340,32 +1343,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "بايت" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1383,11 +1386,11 @@ msgstr "%s جەدۋەل" msgid "Questions" msgstr "نەشىر" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1411,11 +1414,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "يوق" @@ -1514,7 +1517,7 @@ msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" msgid "Current settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1605,7 +1608,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "ۋاقىت" @@ -1713,10 +1716,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "كىرگۈزۈش" @@ -1776,9 +1779,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "بىكار قىلىش" @@ -1790,11 +1793,11 @@ msgstr "" msgid "Processing Request" msgstr "" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1806,9 +1809,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "" @@ -1862,15 +1865,15 @@ msgstr "تېزىسلار" msgid "Show indexes" msgstr "تېزىسلار" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 msgid "Foreign key check:" msgstr "" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 msgid "(Enabled)" msgstr "" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1908,7 +1911,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1950,8 +1953,8 @@ msgstr "SQL سورىقى" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "ئۆزگەرتتىش" @@ -1959,18 +1962,18 @@ msgstr "ئۆزگەرتتىش" msgid "Query execution time" msgstr "" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "" @@ -1984,7 +1987,7 @@ msgstr "" msgid "Show search criteria" msgstr "SQL سورىقى" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2036,12 +2039,12 @@ msgstr "SQL سورىقى" msgid "Data point content" msgstr "سانلىق مەلۇمات قوللانمىسىنىڭ چوڭ كىچىكلىكى" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2064,7 +2067,7 @@ msgid "Please select the primary key or a unique key" msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" @@ -2155,7 +2158,7 @@ msgstr "ھاسىللاش" msgid "Change Password" msgstr "پارولنى ئۆزگەرتىش" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "تېخىمۇ كۆپ" @@ -2253,63 +2256,63 @@ msgid "December" msgstr "12-ئاي" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "1-ئاي" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "2-ئاي" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "3-ئاي" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "4-ئاي" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "5-ئاي" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "6-ئاي" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "چىللە" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "تومۇز" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "مىزان" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "ئوغۇز" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "ئوغلاق" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "كۆنەك" @@ -2350,32 +2353,32 @@ msgid "Sun" msgstr "يەكشەنبە" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "دۈشەنبە" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "سەيشەنبە" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "چارشەنبە" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "پەيشەنبە" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "جۈمە" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "شەنبە" @@ -2491,16 +2494,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "" @@ -2521,72 +2524,292 @@ msgstr "" msgid "Font size" msgstr "خەتنىڭ چوڭ-كىچىكلىكى" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete columns" +msgid "Restore column order" +msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "باشلا" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "ئالدىنقىسى" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "كىيىنكى ئاي" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "ئاخىرقىسى" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of columns" +msgid "Number of rows" +msgstr "سۆزلەم سانى" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "More" +msgid "Mode" +msgstr "تېخىمۇ كۆپ" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial import" +msgid "Partial texts" +msgstr "بۆلۈپ كىرگۈزىش" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"ئېنىقسىزلىك بولۇشى مۇمكىن. [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a] غا قاراڭ." + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "ئۇمۇمىي" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "بېسىپ چىقىرش كۈرۈلمىسى" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Table comments" +msgid "Display chart" +msgstr "جەدۋەل ئىزاھى" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +#| msgid "Create version" +msgid "Create view" +msgstr "نەشىرنى قۇىماق" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "ئۇلىنىشنى تاپالمىدى" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن " "ئېشىپ كەتتى." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "سز يۈكلىگەن ھۆججەت HTML نىڭ MAX_FILE_SIZE چېكىدىن ئېشىپ كەتتى." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "ۋاقىتلىق ھۆججەت ساقلاش مۇندەرىجىسى تىپىلمىدى." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "تېزىسلار" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "بىردىنبىر" @@ -2599,8 +2822,8 @@ msgstr "ئىخچام" msgid "Cardinality" msgstr "تۈپ سان" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "ئىزاھات" @@ -2621,128 +2844,128 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "ساندان" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "مۇلازىمىتېر" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "تۈزۈلىشى" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "قىستۇرۇش" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "ئىشلەملەر" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "ئىز قۇغلاش" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "سانلىق مەلۇمات ئامبىرى قۇرۇق" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "تەكشۈرۈش" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "ھۇقۇقى" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "دائىملىق" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "ھادىسە" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "لايىھەلىگۈچ" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "خاتالىق" @@ -2764,7 +2987,7 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "%1$d قۇر قوشۇلدى." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2859,16 +3082,102 @@ 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 +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 +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 +msgid "Value" +msgstr "" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "ئىزدەش" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "قىستۇرۇش" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "SQL query" +msgid "Additional search criteria" +msgstr "SQL سورىقى" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +msgid "Reset zoom" +msgstr "" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "ئالدىن كۆرگىنى بولمايدۇ." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "ئېلىش" @@ -2887,7 +3196,7 @@ msgstr "تېما %s تېپىلمىدى!" msgid "Theme path not found for theme %s!" msgstr "ماۋزۇ %s تېپىلمىدى." -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3184,20 +3493,20 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "ئۇلىنالمىدى: ئۈنۈمسىز تەڭشەك." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%s خۇش كەلدىڭىز" -#: libraries/auth/config.auth.lib.php:103 +#: 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." msgstr "" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3209,60 +3518,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "كىرىش" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "مۇلازىمىتېر:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "ئابۇنىت ئىسمى:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "شىفىر" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "مۇلازىمىتېر تاللاش" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "پارولسىز كىرىش چەكلەنگەن (پارولسىز كىرىش ئىقازىتىنى كۆرۈڭ)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى." -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "كىرگۈزگەن ئىسلەتكۈچى ئىسمى\\پارول خاتا، زايارەت رەت قىلىندى." @@ -3296,7 +3599,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "" @@ -3308,13 +3611,13 @@ msgstr "" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "سانلىق مەلۇمات" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "ئېغىر يۈك" @@ -3339,32 +3642,24 @@ msgstr "" msgid "Check Privileges" msgstr "" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Failed to read configuration file" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3374,217 +3669,195 @@ msgid "" "configuration file!" msgstr "$cfg['PmaAbsoluteUri'] نى تەڭشەڭ !تەڭشەك ھۆججىتى ئىچىدىكى" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى ئۈنۈمسىز:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "ئەڭ چوڭ:%s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "قوللانما" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL سورىقى" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL جاۋابى: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL ئىزاھى" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "SQL ئىزاھىىدىن ئاتلاش" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP كودى يوق" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP كودى قۇرۇش" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "يېڭلاش" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL دەلىللەشتىن ئاتلاش" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL دەلىللەش" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "ئىچكى بىرلىشىش" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "ئاساسىي مەزمۇن" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "يەكشەنبە" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%يىل %ئاي %كۈن %سائەت:%مىنۇت" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s كۈن, %s سائەت, %s مىنىۇ ۋە %s سېكوند" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "دائىملىق" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "باشلا" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "ئالدىنقىسى" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "كىيىنكى ئاي" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "ئاخىرقىسى" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "ساندان "%s" .غا ئۆتۈش" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "بىر چىكىپ تاللاڭ" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "يازدۇر" @@ -3614,8 +3887,8 @@ msgid "Closed" msgstr "" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "تاقالدى" @@ -3760,9 +4033,9 @@ msgstr "" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "" @@ -3966,10 +4239,6 @@ msgstr "ئۆزئىچىگە ئالغان جەدېۋەلنىڭ تىمىسى" msgid "Show binary contents as HEX by default" msgstr "" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4024,7 +4293,7 @@ msgstr "" msgid "Maximum execution time" msgstr "" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "ھۆججەتنى باشقا ساقلاش" @@ -4033,7 +4302,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "فورماتلاش" @@ -4142,7 +4411,7 @@ msgid "MIME type" msgstr "MIMEشەكلى" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "مۇناسىۋىتى" @@ -5626,9 +5895,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "پارول" @@ -5911,32 +6180,24 @@ msgstr "" msgid "Details..." msgstr "تەپسىلاتلار..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"ئېنىقسىزلىك بولۇشى مۇمكىن. [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a] غا قاراڭ." - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "پارولنى ئۆزگەرتىش" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "پارول يوق" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "قايتا كىرگۈزىش" @@ -5959,22 +6220,22 @@ msgstr "ساندان قۇرۇش" msgid "Create" msgstr "قۇرۇش" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "ھوقۇقسىز" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "ئىسمى" @@ -6156,26 +6417,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version" msgid "committed on %1$s by %2$s" msgstr "نەشىرنى قۇىماق" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version" msgid "authored on %1$s by %2$s" @@ -6295,395 +6556,238 @@ msgstr "" msgid "Language" msgstr "تىلى" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete columns" -msgid "Restore column order" -msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of columns" -msgid "Number of rows" -msgstr "سۆزلەم سانى" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "More" -msgid "Mode" -msgstr "تېخىمۇ كۆپ" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial import" -msgid "Partial texts" -msgstr "بۆلۈپ كىرگۈزىش" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "ئۇمۇمىي" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "بېسىپ چىقىرش كۈرۈلمىسى" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Table comments" -msgid "Display chart" -msgstr "جەدۋەل ئىزاھى" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -#| msgid "Create version" -msgid "Create view" -msgstr "نەشىرنى قۇىماق" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "ئۇلىنىشنى تاپالمىدى" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "بەت سانى" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "ئاق(قۇرۇق)بەت" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "كىرەكسىز(مەينەت)بەت" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "قۇرۇق ئەمەس بەت" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "يىڭىلايدىغان بەت" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "يۈك بەت" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "قۇلۇپلانغان بەت" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "ئۇقۇش تەلىپى" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "يېزىش تەلىپى" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "يېزىشنى كۈتۈۋاتقان سانى" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "سانلىق مەلۇمات قوللانمىسىنىڭ چوڭ كىچىكلىكى" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "ئاپتۇماتىك ئەسلىگە كەلتۈرۈش شەكلى" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "ئەسلىگە كەلتۈرۈش يۇلى" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6691,48 +6795,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "سانلىق مەلۇمات ھۆججىتىنىڭ ئېشىش چوڭ-كىچىكلىكى" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6740,20 +6844,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "مۇناسىۋىتى" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6812,14 +6916,14 @@ msgstr "ئايلاندۇرۇپ ساقلاش جەدىۋېلىدىكى سانلى #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6887,14 +6991,14 @@ msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "ئاساسىي ماشىنا" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "قۇرۇلغان ۋاقتى" @@ -7089,21 +7193,12 @@ msgstr "قاراش" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7199,12 +7294,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "" @@ -7273,93 +7368,75 @@ msgstr "SQLئۆز ئىچىگە ئالغان شەكلى" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "قىستۇرۇش" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "كېيىن" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7374,36 +7451,36 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fr" msgid "From" msgstr "جۈمە" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "راستىنلا ئجرا قىلىمسىز" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "" @@ -7613,90 +7690,90 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "" @@ -7704,7 +7781,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7716,13 +7793,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "ئېغىز" @@ -7735,7 +7812,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "" @@ -7749,38 +7826,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7794,7 +7871,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7827,97 +7904,98 @@ msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Add constraints" msgid "Edit event" msgstr "مەجبۇرى قوشۇش" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." msgid "Details" msgstr "تەپسىلاتلار..." -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Keyname" msgid "Event name" msgstr "قىممەت ئىسمى" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "ئۆزگەرتتىش" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "ئاخىرقىسى" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7948,7 +8026,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7970,116 +8048,116 @@ msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" msgid "Routine %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "دائىملىق" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "دائىملىق" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "قۇرۇش" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "تۈرگە قايتىش" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Action" msgid "Return options" msgstr "ئامال" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Return type" msgid "Security type" msgstr "تۈرگە قايتىش" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8101,44 +8179,44 @@ msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" msgid "Trigger %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Routines" msgid "Edit trigger" msgstr "دائىملىق" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "server name" msgid "Trigger name" msgstr "مۇلازىمىتىر ئىسمى" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "ۋاقىت" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8241,7 +8319,7 @@ msgstr "ئىزلانغان جەدۋەل" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8250,7 +8328,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8258,7 +8336,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8271,27 +8349,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "File %s does not contain any key id" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "" @@ -8405,7 +8483,7 @@ msgstr "" msgid "Current Server" msgstr "مۇلازىمىتېر" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8423,7 +8501,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -8442,7 +8520,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8451,11 +8529,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8537,7 +8615,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8558,8 +8636,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "" @@ -8605,13 +8683,13 @@ msgstr "" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "" @@ -8624,17 +8702,17 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8642,43 +8720,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "ئىزدەش" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8788,13 +8829,13 @@ msgstr "" msgid "Manage your settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "ئۆزگەرتىشلەر ساقلاندى" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8807,7 +8848,7 @@ msgstr "" msgid "Could not save configuration" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8838,7 +8879,7 @@ msgstr "PBMS ئۇلىنالمىدى:" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -8864,9 +8905,9 @@ msgstr "مۇلازىمىتىر نۇسخىسى" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "" @@ -8983,144 +9024,144 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "تاپشۇرۇش" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr ".باغلانمىلار ئۆچۈرۈلدى" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "چىقىرىش" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "Query" msgid "subquery" msgstr "تەكشۈرۈش" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy #| msgid "Rename database to" msgid "Rename to" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "Keyname" msgid "New name" msgstr "قىممەت ئىسمى" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "قۇرۇش" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Action" msgid "Active options" @@ -9134,55 +9175,55 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "بەت سانى" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "Keyname" msgid "New page name: " msgstr "قىممەت ئىسمى" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "!خاتالىق:بۇناسىۋەت ئاللىقاچان مەۋجۈت" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "!خاتالىق:مۇناسىۋەت قۇشۇلمىغان" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "سىرتقى مۇناسىۋەتلىك ئۇلانما قۇشۇلدى" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr ".ئىچكى ئۇلىنىش مۇاسىۋىتى قۇشۇلدى" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr ".باغلانمىلار ئۆچۈرۈلدى" @@ -9194,89 +9235,89 @@ msgstr "ساقلاشتا خاتالىق كۆرۈلدى." msgid "Modifications have been saved" msgstr "ئۆزگەرتىشلەر ساقلاندى" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Could not import configuration" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "" @@ -9284,17 +9325,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -9310,7 +9351,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "" @@ -9318,31 +9359,31 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "ساندان %s ئۆچۈرۈلدى." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9352,376 +9393,376 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "باشلا" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "تاقالدى" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "چىقىرىش" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "ھۇقۇقى" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "ھۇقۇقى" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9730,140 +9771,140 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9872,261 +9913,261 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "تۈزىلىشىنىلا" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "تۈزىلىشىنىلا" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "يېڭلاش" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "مۇناسىۋىتى" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query" msgid "Run analyzer" msgstr "تەكشۈرۈش" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10134,115 +10175,115 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "بۇيرۇق" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10250,78 +10291,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10329,7 +10370,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10337,42 +10378,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10380,33 +10421,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10415,244 +10456,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "كىرگۈزگەن ھۆججەت شەكلى" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10660,99 +10701,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10760,18 +10801,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10779,68 +10820,68 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Routines" msgid "Add chart" msgstr "دائىملىق" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "يېڭلاش" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10849,7 +10890,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10857,18 +10898,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10876,11 +10917,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10888,228 +10929,228 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select All" msgid "Select series:" msgstr "ھەممىنى تاللاش" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Routines" msgid "Add this series" msgstr "دائىملىق" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "ھەممىنى تاللاش" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query" msgid "Query analyzer" msgstr "تەكشۈرۈش" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "سېكنۇت" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "مىنۇت" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy #| msgid "Select All" msgid "Executed queries" msgstr "ھەممىنى تاللاش" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -11395,175 +11436,175 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "راستىنلا ئجرا قىلىمسىز" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "ساندان %s ئۆچۈرۈلدى." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "3-ئاي" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "سۆزلەم" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Inline" msgctxt "Chart type" msgid "Spline" msgstr "ئىچكى بىرلىشىش" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PiB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "ئىخچام" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "دوكلات تېمىسى" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete columns" msgid "Label column" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "ھۆججەتنى باشقا ساقلاش" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Keyname" msgid "File name" @@ -11581,30 +11622,30 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Print view" msgid "Edit index" msgstr "بېسىپ كۆرسىتىش" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11627,264 +11668,264 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy #| msgid "Drop the database (DROP)" msgid "Delete the table (DROP)" msgstr "كۆچۈرۈلگەن ساندان" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show dimension of tables" msgid "Showing tables" msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Use this value" msgid "Distinct values" msgstr "مۇشۇ قىممەتنى ئىشلىتىش" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add/Delete columns" msgid "Move columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "بېسىپ كۆرسىتىش" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12040,67 +12081,37 @@ msgstr "" msgid "Create version" msgstr "نەشىرنى قۇىماق" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "SQL query" -msgid "Additional search criteria" -msgstr "SQL سورىقى" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -msgid "Reset zoom" -msgstr "" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "تېخىمۇ كۆپ تېمىغا ئىرىشىش !" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/uk.po b/po/uk.po index 87f259096c..b347998fdb 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: ukrainian \n" @@ -15,21 +15,21 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Показати все" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Номер сторінки:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -39,58 +39,58 @@ msgstr "" "вікно, або налаштування безпеки Вашого оглядача блокують між-віконні " "оновлення." -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "Вперед" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Ім'я ключа" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Опис" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Використовувати це значення" @@ -108,88 +108,89 @@ msgstr "" msgid "Database %1$s has been created." msgstr "Базу даних %1$s створено." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Коментар бази даних: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Коментарі таблиці" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "Стовпчик" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Нуль" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "По замовчуванню" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Лінки до" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Коментарі" @@ -198,14 +199,14 @@ msgstr "Коментарі" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Ні" @@ -218,122 +219,122 @@ msgstr "Ні" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Так" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Переглянути дамп (схему) БД" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "В БД не виявлено таблиць." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Відмітити все" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Зняти всі відмітки" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Ім'я бази даних порожнє!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "Базу даних %s перейменовано в %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Базу даних %s скопійовано в %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Перейменувати базу даних в" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "Видалити базу даних" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "Базу даних %s знищено." -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "Знищити базу даних (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Копіювати базу даних в" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Лише структуру" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Структуру і дані" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Лише дані" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Виконайте CREATE DATABASE перед копіюванням" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "Додати %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "Додати AUTO_INCREMENT значення" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Додати constraints" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Перейти до скопійованої бази даних" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Порівняння" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -342,59 +343,59 @@ msgstr "" "Сховище конфігурації phpMyAdmin деактивовано. Для того, щоб довідатись чому, " "натисніть %sтут%s." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "Редагувати або експортувати схему зв'язків" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Таблиця" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Рядки" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Розмір" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "використовується" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Створення" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Останнє оновлення" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Перевірено" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -406,117 +407,117 @@ msgstr[2] "%s таблиць" msgid "You have to choose at least one column to display" msgstr "Необхідно вибрати принаймі один Стовпчик для показу" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "Перемкнутись на %sвізуальний конструктор%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Посортувати" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Зростаючий" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Спадаючий" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Показати" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Критерій" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Вставити" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Та" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Видалити" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Або" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Змінити" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "Додати/Прибрати рядки критеріїв" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "Додати/Прибрати колонки" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Доповнити запит" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Використовувати таблиці" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "SQL-запит до БД %s:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "Виконати запит" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Доступ заборонено" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "принаймі одне з слів" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "всі слова" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "точну фразу" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "як регулярний вираз" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "Результати пошуку для \"%s\" %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -526,30 +527,30 @@ msgstr[0] "%s співпадіння у таблиці %s" msgstr[1] "%s співпадіння у таблиці %s" msgstr[2] "%s співпадінь у таблиці %s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "Видалити співпадіння для таблиці %s ?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" @@ -557,63 +558,63 @@ msgstr[0] "Всього: %s співпадіння" msgstr[1] "Всього: %s співпадань" msgstr[2] "Всього: %s співпадань" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Шукати в базі даних" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Слова чи значення, які потрібно знайти (шаблон: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Знайти:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Слова розділені пробілом (\" \")." -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "Всередині таблиць:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "Всередині стовпчика:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "В БД не виявлено таблиць." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "невідоме" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "Таблицю %s було очищено" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "Вигляд %s знищено" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "Таблицю %s було знищено" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Трекінг є активним." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Трекінг не активний." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -622,187 +623,188 @@ msgstr "" "Вигляд має щонайменше цю кількість рядків. Будь-ласка звернітся до " "%sдокументації%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Реплікація" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Всього" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s механізм зберігання за замовчуванням на цьому MySQL сервері." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "З відміченими:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Відмітити все" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Перевірити чи мають таблиці накладні витрати" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Версія для друку" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Очистити" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Знищити" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Перевірити таблицю" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Оптимізувати таблицю" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Ремонтувати таблицю" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Аналіз таблиці" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "Додати префікс до таблиці" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "Замінити префікс таблиці" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "Копіювати таблицю з префіксом" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Словник даних" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Відслідковувані таблиці" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "БД" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Остання версія" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Створено" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Оновлено" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Статус" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Дія" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Видалити дані спостереження для цієї таблиці" # активна -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "активний" # не активна -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "не активний" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Версії" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Звіт трекінгу (відстеження)" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Знімок структури" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Невідслідковувані таблиці" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Відслідковувати таблицю" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Журнал бази даних" @@ -814,16 +816,16 @@ msgstr "Невірний тип!" msgid "Selected export type has to be saved in file!" msgstr "Обранний тип експорту збережений в файл!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "Невірні параметри!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "Бракує місця для збереження файлу %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -831,12 +833,12 @@ msgstr "" "Файл %s існує на сервері, прошу змінити назву файлу, або відмітити опцію " "заміни існуючих файлів." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "Веб-сервер не має привілеїв для збереження файлу %s." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Dump збережено у файл %s." @@ -845,87 +847,87 @@ msgstr "Dump збережено у файл %s." msgid "Invalid export type" msgstr "Невірний тип експорту" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "Значення для стовпчика \"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "Використовуйте OpenStreetMaps як базовий пласт" # Ідентифікатор просторової системи координат -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "Геометрія" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "Точка" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "Точка %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "Додати точку" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 msgid "Linestring" msgstr "Linestring" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "Зовнішнє кільце" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "Внутрішнє кільце" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 msgid "Add a linestring" msgstr "Додати linestring" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "Додати внутрішнє кільце" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "Полігон" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "Додати полігон" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 msgid "Add geometry" msgstr "Додати геометрію (geometry)" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "Вивід" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" @@ -933,7 +935,7 @@ msgstr "" "Оберіть \"ГеометріюЗТексту\" (\"GeomFromText\") із \"Функції\" стовпчика та " "вставте після рядка в поле \"Значення\"" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -943,21 +945,21 @@ msgstr "" "зверніться до %sдокументації%s для знаходження шляхів вирішення цієї " "проблеми." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Показані закладки" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Закладку було видалено." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Неможливо прочитати файл" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -966,7 +968,7 @@ msgstr "" "Ви намагаєтесь завантажитит файл з непідтрумуваною компресією (%s). " "Підтримка якої не здійснюється або вимкнена у вашій конфігурації." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -976,28 +978,28 @@ msgstr "" "файлу перевищив допустимий максимум для вашої PHP конфігурації. Дивіться " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "Неможливо конвертувати кодування файлів без бібліотеки кодування" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Неможливо завантажити імпортовані плагіни, будь ласка перевірте ваше " "інсталювання!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створена" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Імпорт завершився успішно, %d запитів виконано." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1005,7 +1007,7 @@ msgstr "" "Досягнуто часове обмеження віконання скрипту, якщо Ви бажаєте закінчити " "імпорт, необхідно повторно відправити той самий файл." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1014,23 +1016,23 @@ msgstr "" "phpMyAdmin не зможе закінчити цей імпорт якщо Ви на збільшите час виконання " "PHP скриптів." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Назад" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin є більш зручним в браузері з підтримкою фреймів." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Оператори \"DROP DATABASE\" заборонені." @@ -1040,7 +1042,7 @@ msgstr "Оператори \"DROP DATABASE\" заборонені." msgid "Do you really want to execute \"%s\"?" msgstr "Ви насправді хочете " -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Ви збираєтесь здійснити ЗНИЩЕННЯ БД!" @@ -1080,7 +1082,7 @@ msgstr "Додати Індекс" msgid "Edit Index" msgstr "Редагувати Індекс" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "Додати %d стовпчик(ів) до індексу" @@ -1100,16 +1102,16 @@ msgstr "Порожнє ім'я хоста!" msgid "The user name is empty!" msgstr "Порожнє і'мя користувача!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Порожній пароль!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Паролі не однакові!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "Додати користувача" @@ -1126,23 +1128,24 @@ msgstr "Видалення відмічених користувачів" msgid "Close" msgstr "Закрити" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Редагувати" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "Графік трафіку в реальному часі" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "Графік підкл./процесів в реальному часі" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "Графік запиту в реальному часі" @@ -1152,24 +1155,24 @@ msgstr "Статичні дані" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Разом" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "Інше" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1189,7 +1192,7 @@ msgstr "Трафік серверу (в KiB)" msgid "Connections since last refresh" msgstr "З'єднань на час останнього оновлення" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Процесів" @@ -1207,7 +1210,7 @@ msgstr "Questions на час останнього оновлення" msgid "Questions (executed statements by the server)" msgstr "Questions (виконані оператори сервером)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "Статистика запиту" @@ -1252,14 +1255,14 @@ msgid "System swap" msgstr "SWAP системи" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "КБ" @@ -1311,32 +1314,32 @@ msgstr "Байтів надіслано" msgid "Bytes received" msgstr "Байтів отримано" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "З'єднань" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Б" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1350,11 +1353,11 @@ msgstr "%d таблиця(таблиць)" msgid "Questions" msgstr "Questions" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Трафік" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "Налаштування" @@ -1374,11 +1377,11 @@ msgstr "Додати графік до сітки" msgid "Please add at least one variable to the series" msgstr "Будь ласка додайте щонайменше одну змінну до ряду" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Жодного" @@ -1478,7 +1481,7 @@ msgstr "Змінити налаштування" msgid "Current settings" msgstr "Поточні налаштування" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "Заголовок діаграми" @@ -1567,7 +1570,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Час" @@ -1670,10 +1673,10 @@ msgstr "" "Неможливо побудувати сітку даних з імпортованою конфігурацією. Відновлення " "конфігурації за замовчуванням..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Імпорт" @@ -1725,9 +1728,9 @@ msgstr "Використана змінна / формула" msgid "Test" msgstr "Тест" -#: 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 +#: 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 msgid "Cancel" msgstr "Скасувати" @@ -1739,11 +1742,11 @@ msgstr "Завантаження" msgid "Processing Request" msgstr "Обробка запиту" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "Помилка при обробці запиту" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Жодної бази даних не вибрано." @@ -1755,9 +1758,9 @@ msgstr "Видалення стовпчика" msgid "Adding Primary Key" msgstr "Додавання Головного Ключа" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1797,19 +1800,19 @@ msgstr "Сховати індекси" msgid "Show indexes" msgstr "Показати індекси" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Відключити перевірки зовнішніх ключів" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "дозволено" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1839,7 +1842,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET редактор" @@ -1879,8 +1882,8 @@ msgstr "Показати блок запиту" msgid "No rows selected" msgstr "Рядків не вибрано" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Змінити" @@ -1888,18 +1891,18 @@ msgstr "Змінити" msgid "Query execution time" msgstr "Час виконання запиту" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Зберегти" @@ -1911,7 +1914,7 @@ msgstr "Сховати критерії пошуку" msgid "Show search criteria" msgstr "Показати критерії пошуку" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 msgid "Zoom Search" msgstr "Збільшити Пошук" @@ -1961,12 +1964,12 @@ msgstr "Результати запиту" msgid "Data point content" msgstr "Зміст" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Ігнорувати" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "Копіювати" @@ -1986,7 +1989,7 @@ msgstr "Обрати зовнішній ключ" msgid "Please select the primary key or a unique key" msgstr "Будь ласка, оберіть первинний ключ або унікальний ключ" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "Виберіть колонку для відображення" @@ -2083,7 +2086,7 @@ msgstr "Згенерувати" msgid "Change Password" msgstr "Змінити пароль" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "Більше" @@ -2174,63 +2177,63 @@ msgid "December" msgstr "Грудень" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Гру" @@ -2268,32 +2271,32 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Сб" @@ -2413,16 +2416,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "за секунду" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "за хвилину" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "за годину" @@ -2445,19 +2448,221 @@ msgstr "" msgid "Font size" msgstr "Розмір шрифту" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "Почати" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "Попередній" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "Вперед" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Кінець" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows:" +msgid "Number of rows" +msgstr "Число рядків:" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "More" +msgid "Mode" +msgstr "Більше" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "горизонтальному" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "горизонтальному (повернуті заголовки)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "вертикальному" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute every" +msgid "Headers every %s rows" +msgstr "Виконати кожні" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Часткові тексти" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Повні тексти" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational schema" +msgid "Relational display column" +msgstr "Схема зв'язків" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Показувати двійковий вміст як HEX" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Перетворення МІМЕ-типу бровзером" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Рядок видалено" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Вбити" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "по запиту" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Показано записи" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "всього" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Запит виконувався %01.4f сек" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "Показати PDF схему" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +#| msgid "Create User" +msgid "Create view" +msgstr "Створити користувача" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Лінк не знайдено" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "Надто багато помилок, деякі не відобразились." -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "Файл не був завантаженим файлом." -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Завантажений файл перевищує директиву upload_max_filesize в php.ini." -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2465,27 +2670,27 @@ msgstr "" "Завантажений файл перевищує MAX_FILE_SIZE директиву, яка була вказана в HTML " "формі." -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Завантажуваний файл був завантажений лише частково." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Відсутня тимчасова директорія." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Неможливо записати файл на диск." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Завантаження зупинено розширенням." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Невідома помилка при завантаженні файлу." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2493,26 +2698,41 @@ msgstr "" "Помилка прі переміщенні файлу, дивись [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "Помилка при переміщенні файлу." -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "Неможливо прочитати (перемістити) завантажений файл." -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "З цього моменту Cookies повинні бути дозволені." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "З цього моменту Cookies повинні бути дозволені." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Індекси" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Унікальне" @@ -2525,8 +2745,8 @@ msgstr "Запакований" msgid "Cardinality" msgstr "Кількість елементів" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Коментар" @@ -2549,128 +2769,128 @@ msgstr "" "Схоже що індекси %1$s та %2$s ідентичні, тому один із них може бути " "вилученим." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Бази Даних" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Сервер" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Структура" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Вставити" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Операцій" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Запит згідно прикладу" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Привілеї" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "Користувачі" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Синхронізувати" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Бінарний журнал" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Змінні" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Кодування" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "Плагіни" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Помилка" @@ -2698,7 +2918,7 @@ msgstr[0] "%1$d рядок вставлено." msgstr[1] "%1$d рядків вставлено." msgstr[2] "%1$d рядків вставлено." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "Помилка при створенні PDF:" @@ -2792,16 +3012,108 @@ 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 +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 +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 +msgid "Value" +msgstr "Значення" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Шукати" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Вставити" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Вибрати поля (щонайменше одне):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Додати умови пошуку (тіло для умови \"where\"):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "записів на сторінці" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Порядок перегляду:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Additional search criteria" +msgstr "Сховати критерії пошуку" + +#: 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 "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Перевстановити" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "Не знайдено правильного шляху до зображення для теми %s!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Намає доступного перегляду." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "прийняти його" @@ -2820,7 +3132,7 @@ msgstr "Тема %s не знайдена!" msgid "Theme path not found for theme %s!" msgstr "Шлях теми не знайдений для теми %s!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "Тема" @@ -3119,13 +3431,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "З'єднання неможливе: невірні налаштування." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "Ласкаво просимо до %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3134,7 +3446,7 @@ msgstr "" "Ви, напевно, не створили файл конфігурації. Для його створення Ви можете " "використати %1$ssetup script%2$s." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3150,60 +3462,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "Не вдалося використати Blowfish із Mcrypt!" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "З цього моменту Cookies повинні бути дозволені." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Вхід в систему" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Ви можете ввести ім'я хоста / IP-адресу та порт через пробіл." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Сервер:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Ім'я користувача:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Пароль:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Вибір сервера" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "З цього моменту Cookies повинні бути дозволені." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Авторизація без паролю заборонена в настройках (див. AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Відсутня діяльність протягом %s секунд; будь ласка, увійдіть знову" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "Не можу зареєструватися на MySQL сервері" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Невірний логін/пароль. Доступ не дозволено." @@ -3236,7 +3542,7 @@ msgstr "загальні" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Таблиць" @@ -3248,13 +3554,13 @@ msgstr "Таблиць" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Дані" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Надмірні видатки" @@ -3279,19 +3585,11 @@ msgstr "Перевірити права для бази даних "%s" msgid "Check Privileges" msgstr "Перевірити права" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "можливе використання" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "виявлено цифровий ключ" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "Неможливо прочитати конфігураційний файл." -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." @@ -3299,12 +3597,12 @@ msgstr "" "Як правило, це означає, що в ньому є синтаксичні помилки, будь ласка, " "перевірте будь-які помилки що показано нижче." -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "Неможливо завантажити стандартну функціональність із: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3316,208 +3614,192 @@ msgstr "" "Змінна $cfg['PmaAbsoluteUri'] ПОВИННА бути встановлена у Вашому " "конфігураційному файлі!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "Не вірний індекс сервера: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Не вірна назва хоста для сервера %1$s. Будь ласка перевірте Вашу " "конфігурацію." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "Невірний метод аутентифікації встановленний в налаштуваннях:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "Вам необхідно оновити до %s %s або пізнішої." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "можливе використання" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "виявлено цифровий ключ" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Документація" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL-запит" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "Відповідь MySQL: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "Не вдалося пид'єднатися до SQL валідатора!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Тлумачити SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Не тлумачити SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "без PHP коду" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "Створити PHP код" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Оновити" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "Не перевіряти SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "Перевірити SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "Рядкове редагування цього запиту" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "в рядок" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Профілювання" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Нд" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y р., %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s днів, %s годин, %s хвилин і %s секунд" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "Пропущено параметр:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "Почати" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "Попередній" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "Вперед" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Кінець" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "Перейти до бази даних "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "На функціональність %s впливає відома помилка, див. %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "Клікніть, щоб змінити" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "Переглянути Ваш комп'ютер:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Виберіть з каталога веб-сервера для завантаження файлів %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Встановлений Вами каталог для завантаження файлів недоступний" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "Немає файлів для завантаження" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "Виконати" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Друк" @@ -3547,8 +3829,8 @@ msgid "Closed" msgstr "Закрито" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "заблоковано" @@ -3690,9 +3972,9 @@ msgstr "Відновити значення за замовчуванням" msgid "Allow users to customize this value" msgstr "Дозволити користувачам налаштовувати це значення" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Перевстановити" @@ -3916,10 +4198,6 @@ msgstr "Запропонувати структуру таблиці" msgid "Show binary contents as HEX by default" msgstr "Показувати двійковий вміст як HEX по замовчуванню" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Показувати двійковий вміст як HEX" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "Показати список бази даних у вигляді списку, а не випадаючого меню" @@ -3976,7 +4254,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Максимальний час виконання" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Зберегти як файл" @@ -3985,7 +4263,7 @@ msgid "Character set of the file" msgstr "Кодування файлу" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Формат" @@ -4089,7 +4367,7 @@ msgid "MIME type" msgstr "MIME type" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Зв'язки" @@ -5618,9 +5896,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Пароль" @@ -5887,30 +6165,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Змінити пароль" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Без паролю" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Підтвердження" @@ -5933,22 +6205,22 @@ msgstr "Створити нову БД" msgid "Create" msgstr "Створити" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Без привілеїв" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Назва" @@ -6103,26 +6375,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "General relation features" msgid "committed on %1$s by %2$s" msgstr "Загальні можливості" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "General relation features" msgid "authored on %1$s by %2$s" @@ -6238,400 +6510,238 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of rows" -msgstr "Число рядків:" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "More" -msgid "Mode" -msgstr "Більше" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "горизонтальному" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "горизонтальному (повернуті заголовки)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "вертикальному" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute every" -msgid "Headers every %s rows" -msgstr "Виконати кожні" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Часткові тексти" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Повні тексти" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational schema" -msgid "Relational display column" -msgstr "Схема зв'язків" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Перетворення МІМЕ-типу бровзером" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Рядок видалено" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Вбити" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "по запиту" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Показано записи" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "всього" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Запит виконувався %01.4f сек" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "Показати PDF схему" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -#| msgid "Create User" -msgid "Create view" -msgstr "Створити користувача" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Лінк не знайдено" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "Статус InnoDB" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6639,48 +6749,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6688,20 +6798,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Зв'язки" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6760,14 +6870,14 @@ msgstr "Дамп даних таблиці" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Подія" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "Визначення" @@ -6833,14 +6943,14 @@ msgstr "Доступні MIME-types" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Хост" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Час створення" @@ -7036,21 +7146,12 @@ msgstr "" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." @@ -7147,12 +7248,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Назви колонок" @@ -7217,95 +7318,77 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Функція" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Приховати" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Двійковий" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Двійкові дані - не редагуються" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "каталог веб-сервера для завантаження файлів (upload directory)" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Вставити" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "і потім" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Вставити як новий рядок" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Повернутись" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Вставити новий запис" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Значення" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7322,36 +7405,36 @@ msgstr "Немає" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fr" msgid "From" msgstr "Пт" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Виконати" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Ви насправді хочете " -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Змін немає" @@ -7563,96 +7646,96 @@ msgstr "" msgid "This format has no options" msgstr "Цей формат не має опцій" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "не OK" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "дозволено" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Загальні можливості" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Показати можливості" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "Створити PDF-файл" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Показувати коментарі стовпців" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Перетворення МІМЕ-типу бровзером" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "За інформацією як поновити Вашу таблицю Column_comments прошу дивитись у " "Документації" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Закладка на SQL-запит" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL історія" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Швидкі кроки до встановлення розширених властивостей:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Створити необхідні таблиці за допомогою examples/create_tables.sql." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "Створити phpMyAdmin користувача та дати йому доступ до цих таблиць" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "без опису" @@ -7660,7 +7743,7 @@ msgstr "без опису" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Змінити або переконфігурувати головний сервер" @@ -7672,13 +7755,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Ім'я користувача" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7691,7 +7774,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Змінна" @@ -7705,38 +7788,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Довільний користувач" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Використовувати текстове поле" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Довільний хост" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Локальний" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Цей хост" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Використовувати Таблицю Хостів" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7750,7 +7833,7 @@ msgstr "Згенерувати пароль" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7782,90 +7865,91 @@ msgid "One or more errors have occured while processing your request:" msgstr "" "Одна або декілька помилок виникли під час обробки вашого запиту:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "Редагувати подію" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "Помилка при обробці запиту" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "Деталі" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "Назва події" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Тип події" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "Змінити на %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "Виконати у" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "Виконати кожні" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "Старт" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Кінець" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "По завершенні збереження" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "Ви повинні вказати назву події" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "Новий" @@ -7894,7 +7978,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Неправильний тип порядку: \"%s\"" @@ -7913,88 +7997,88 @@ msgstr "Порядок %1$s було змінено." msgid "Routine %1$s has been created." msgstr "Порядок %1$s створено." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "Редагувати порядок" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "Назва порядку" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "Параметри" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "Напрямок" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Довжина/Значення" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "Додати параметр" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "Видалити останній параметр" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Тип повернення" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "Повернути довжину/значення" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "Опції повернення" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "Детермінований" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "Тип безпеки" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 #, fuzzy msgid "SQL data access" msgstr "доступ SQL даних" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "Ви повинні вказати назву порядку" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Неправильний напрямок \"%s\" задали для параметру." -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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" @@ -8002,18 +8086,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "Результати виконання порядку %s" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "Виконати порядок" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "Параметри порядку" @@ -8031,38 +8115,38 @@ msgstr "Тригер %1$s було змінено." msgid "Trigger %1$s has been created." msgstr "Тригер %1$s було створено." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "Редагувати тригер" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "Назва тригера" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Час" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "Ви маєте вказати назву тригера" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "Ви маєте вказати валідні терміни для тригеру" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "Ви маєте вказати валідну подію для тригеру" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "Ви маєте вказати валідну назву таблиці" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "Ви маєте вказати визначення тригеру." @@ -8146,7 +8230,7 @@ msgstr "Немає подій." #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8155,7 +8239,7 @@ msgstr "Таблиця %s не існує!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8163,7 +8247,7 @@ msgid "Please configure the coordinates for table %s" msgstr "Прошу сконфігурувати координати для таблиці %s" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8174,27 +8258,27 @@ msgstr "Схема бази даних %s - Сторінка %s" msgid "This page does not contain any tables!" msgstr "Ця сторінка не містить жодної таблиці!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "SCHEMA ERROR: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Схема зв'язків" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Зміст" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Атрибути" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Додатково" @@ -8304,7 +8388,7 @@ msgstr "Невідома мова: %1$s." msgid "Current Server" msgstr "Поточний Сервер" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8322,7 +8406,7 @@ msgstr "Віддалений сервер" msgid "Difference" msgstr "Відмінність" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Цільова база даних" @@ -8341,7 +8425,7 @@ msgstr "Запустіть SQL запит/запити на сервері %s" msgid "Run SQL query/queries on database %s" msgstr "Виконати SQL запит/запити у базі даних %s" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Очистити" @@ -8350,11 +8434,11 @@ msgstr "Очистити" msgid "Columns" msgstr "Колонки" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Закладка на даний SQL запит" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Надати всім користувачам доступ до цієї закладки" @@ -8451,7 +8535,7 @@ msgstr "" "Не можу запустити перевірку SQL. Прошу проконтролювати чи інстальовані " "необхідні PHP extensions як описано в %sдокументації%s." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8478,8 +8562,8 @@ msgstr "" "зворотніх слешів чи лапок, у такому форматі: a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Індекс" @@ -8533,13 +8617,13 @@ msgstr "Немає" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Первинний" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "ПовнТекст" @@ -8553,19 +8637,19 @@ msgstr "" msgid "after %s" msgstr "Після %s" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "Додати %s стовпчик(ів)" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Необхідно вибрати принаймі один Стовпчик для показу" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8573,45 +8657,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Шукати" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Вибрати поля (щонайменше одне):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Додати умови пошуку (тіло для умови \"where\"):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "записів на сторінці" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Порядок перегляду:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8760,13 +8805,13 @@ msgstr "" msgid "Manage your settings" msgstr "Загальні можливості" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Модифікації було збережено" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8777,7 +8822,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8808,7 +8853,7 @@ msgstr "Конфігурація сервера" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -8834,9 +8879,9 @@ msgstr "Версія сервера" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Користувач" @@ -8961,137 +9006,137 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "БД відсутні" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Alter table order by" msgid "Filter databases by name" msgstr "Змінити порядок таблиці" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Alter table order by" msgid "Filter tables by name" msgstr "Змінити порядок таблиці" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create a page" msgctxt "short form" msgid "Create table" msgstr "Створити нову сторінку" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Прошу вибрати БД" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Зберегти позицію" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Створити зв'язок" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Перезавантажити" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Допомога" -#: pmd_general.php:105 +#: pmd_general.php:107 #, fuzzy msgid "Angular links" msgstr "Кутове посилання" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Пряме посилання" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Прив'язати до сітки" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Маленькі/Великі Всі" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Переключити маленькі/великі" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "Змінити лінії зв'язків" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "Імпортувати/Експортувати координати для PDF схеми" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Виконати запит" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Посунути меню" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Сховати/Показати все" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Сховати/Показати Таблиці які не мають зв'язків" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Число таблиць" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Видалити зв'язок" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation view" msgid "Relation operator" msgstr "Перегляд залежностей" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "За винятком" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "підзапит" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "Перейменувати у" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "Нове ім'я" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "Загальний" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "Активовані опції" @@ -9103,51 +9148,51 @@ msgstr "Сторінка була створена" msgid "Page creation failed" msgstr "Створення сторінки обламалось" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "Сторінка" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "Імпорт з вибраної сторінки" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "Експорт у вибрану сторінку" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "Створити нову сторінку та експортувати в неї" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "Нова назва сторінки: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Експорт/Імпорт у масштабі" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "рекомендовано" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Помилка: зв'язок вже існує." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Помилка: Зв'язок не доданий." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "FOREIGN KEY зв'язок доданий" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Внутрішній зв'язок доданий" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Зв'язок видалений" @@ -9159,51 +9204,51 @@ msgstr "Помилка збереження координат Дизайнер msgid "Modifications have been saved" msgstr "Модифікації було збережено" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "Неможливо зберегти налаштування, відправлена форма містить помилки" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "Не вдається імпортувати конфігурацію" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "Конфігурація містить некоректні дані для деяких полів." -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "Ви хочете імпортувати параметри які залишились?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "Збережено у: @DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "Імпорт з файлу" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "Імпортувати з браузера" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "Налаштування будуть імпортовані з локальних даних браузера." -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "У вас немає збережених налаштувань!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "Ця властивість не підтримується вашим веб-браузером" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "Злити з поточною конфігурацією" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9212,38 +9257,38 @@ msgstr "" "Ви можете встановити більше налаштувань змінюючи файл config.inc.php, " "наприклад використовуючи %sSetup script%s." -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "Зберегти у браузері" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "Налаштування будуть збережені у вашому браузері." -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "Існуючі налаштування будуть перезаписані!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" "Ви можете скинути всі ваші налаштування і відновити їх до значень по " "замовчуванню." -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Імпорт файлів" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Все" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "Таблицю %s не знайдено або не визначено у %s" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "Файл не існує" @@ -9251,17 +9296,17 @@ msgstr "Файл не існує" msgid "Select binary log to view" msgstr "Вибрати двійковий журнал для перегляду" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Файли" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Обрізати показані запити" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Показати повні запити" @@ -9277,7 +9322,7 @@ msgstr "Позиція" msgid "Original position" msgstr "Початкова позиція" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Інформація" @@ -9285,7 +9330,7 @@ msgstr "Інформація" msgid "Character Sets and Collations" msgstr "Набори символів та схеми" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." @@ -9294,24 +9339,24 @@ msgstr[0] "%s баз даних успішно знищено." msgstr[1] "%s баз даних успішно знищено." msgstr[2] "%s баз даних успішно знищено." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Статистика баз даних" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Головна реплікація" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Похідна реплікація" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Дозволити статистику" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9323,158 +9368,158 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Переглянути дамп (схему) баз даних" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "Модулі" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Початок" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "Плагін" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "Модуль" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "Бібліотека" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Версія" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "Автор" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "Ліцензія" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "відключено" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "Містить всі права за винятком GRANT." -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Дозволяє змінювати структуру наявних таблиць." -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Дозволяє зміну та видалення збережених процедур." -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Дозволяє створювати нові бази даних і таблиці." -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Дозволяє створення збережених процедур." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Дозволяє створювати нові таблиці." -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Дозволяє створювати тимчасові таблиці." -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Дозволяє створення, видалення та перейменування облікових записів " "користувачів." -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Дозволяє видалення даних." -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Дозволяє видалення баз даних та таблиць." -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Дозволяє знищувати таблиці." -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Дозволяє встановлювати події у планувальник подій" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Дозволяє виконання збережених процедур." -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Дозволити імпорт даних з файлів, та експорт у файли." -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозволити додавання користувачів та прав без перезавантаження таблиці прав." -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Дозволити створення та знищення індексів." -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Дозволити вставку та заміну даних." -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Дозволити блокування таблиць для біжучих потоків." -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Обмежити кількість нових під'єднань, які користувач може створювати протягом " "години." -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Обмежити кількість запитів, які користувач може надіслати серверу протягом " "години." -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -9482,58 +9527,58 @@ msgstr "" "Обмежити кількість команд, що вносять зміни до будь-якої таблиці чи бази " "даних, які користувач може виконати протягом години." -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "Обмежити кількість одночасних підключень, які користувач може мати." -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Дозволяє перегляд процесів усіх користувачів" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "Неефективно для цієї версії MySQL." -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дозволити перезавантаження установок та очищення кешу сервера." -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "Надати користувачу право запитувати де є slaves / masters." -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Необхідно для реплікації slaves." -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Дозволити читання даних." -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Надає доступ до повного списку баз даних." -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозволяє виконувати SHOW CREATE VIEW запити." -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Дозволити вимкнення сервера." -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9543,172 +9588,172 @@ msgstr "" "під'єднань; обов'язково для більшості адміністративних операцій таких як " "встановлення глобальних змінних чи припинення процесів інших користувачів." -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "Дозволяє створення та видалення тригерів" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Дозволити зміну даних." -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Немає прав." -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Немає" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Права, які стосуються таблиці" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "Примітка: назви прав MySQL задаються по-англійськи" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Адміністрування" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Глобальні права" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Права, які стосуються бази даних" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Обмеження ресурсів" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "Примітка: Встановлення цієї опції у 0 (нуль) знімає обмеження." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Інформація авторизації" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Не змінювати пароль" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Не знайдено користувача." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "Користувач %s вже існує!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Ви додали нового користувача." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "Ви оновили права для %s." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "Ви відмінили права для %s" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "Пароль для %s успішно змінено." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "Видалення %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Не вибрано користувачів для видалення!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Перезавантаження прав" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Вибраних користувачів успішно видалено." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Права успішно перезавантажено." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Редагування прав" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Відмінити" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Експорт" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Довільний" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Привілеї" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привілеї" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Огляд користувачів" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Видалити вибраних користувачів" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Відмінити всі активні права користувачів та усунути їх після цього." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Усунути бази даних, які мають такі ж назви як імена користувачів." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9721,50 +9766,50 @@ msgstr "" "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Вказаного користувача не знайдено в таблиці прав." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Права, які стосуються колонок таблиці" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Додати права для цієї бази даних" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Додати права для цієї таблиці" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Змінити реєстраційні дані / Копіювати користувача" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Створити нового користувача з такими ж правами і ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... залишити старого." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... знищити старого з таблиці користувачів." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... анулювати всі активні права старого користувача, знищивши його після " "того." -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9772,94 +9817,94 @@ msgstr "" " ... знищити старого з таблиці користувачів та перевантажити права після " "того." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "Користувачі, котрі мають доступ до "%s"" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "глобальний" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "специфічний для бази даних" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "шаблон" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "The row has been deleted" msgid "User has been added." msgstr "Рядок видалено" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "Права успішно перезавантажено." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9868,269 +9913,269 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "Лише структуру" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "Лише структуру" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "Процес %s припинено." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin не може припинити процес %s. Він вже напевно був зупинений." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "Інформація про роботу сервера" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Оновити" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Не змінювати пароль" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show tables" msgid "Show only alert values" msgstr "Показати таблиці" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show tables" msgid "Show unformatted values" msgstr "Показати таблиці" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Зв'язки" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Тип запиту" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Administration" msgid "Instructions" msgstr "Адміністратор" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10138,116 +10183,116 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Параметр" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "Отримано" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Відправлено" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Невдалих спроб" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Перервано" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Команда" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10255,78 +10300,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10334,7 +10379,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10342,42 +10387,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10385,33 +10430,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10420,244 +10465,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Character set of the file:" msgid "Percentage of used key cache (calculated value)" msgstr "Кодування файлу:" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10665,99 +10710,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10765,18 +10810,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10784,69 +10829,69 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Трекінг не активний." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add into comments" msgid "Add chart" msgstr "Додати коментар" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Оновити" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Column names" msgid "Chart columns" msgstr "Назви колонок" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10855,7 +10900,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10863,18 +10908,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10882,11 +10927,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10894,93 +10939,93 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "Видалити базу даних" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Вибрати таблиці" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Неправильна назва таблиці" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new User" msgid "Add this series" msgstr "Додати нового користувача" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Row Statistics" msgid "Log statistics" msgstr "Статистика рядка" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Вибрати таблиці" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Тип запиту" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -10989,7 +11034,7 @@ msgstr[0] "Секунда" msgstr[1] "Секунда" msgstr[2] "Секунда" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -10998,132 +11043,132 @@ msgstr[0] "Хвилина" msgstr[1] "Хвилина" msgstr[2] "Хвилина" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy #| msgid "Execute" msgid "Executed queries" msgstr "Виконати" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "З'єднань" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Змінні сервера та налаштування" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Значення сесії" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Загальне значення" @@ -11411,177 +11456,177 @@ msgstr "" msgid "Wrong data" msgstr "БД відсутні" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Ви насправді хочете " -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Перевірити SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL result" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Згенеровано" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Мітка" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Вибраних користувачів успішно видалено." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Бер" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "Стовпчик" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Імпорт файлів" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Значення" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Значення" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Переглянути дамп (схему) таблиці" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add into comments" msgid "Label column" msgstr "Додати коментар" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Разом" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Зберегти як файл" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "User name" msgid "File name" @@ -11599,30 +11644,30 @@ msgstr "Неможливо перейменувати індекс в PRIMARY!" msgid "No index parts defined!" msgstr "Не визначено частини індекса!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Режим редагування" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Назва індекса :" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" повинно бути іменем лише первинного ключа!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Тип індекса :" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "Додати до індексу %s колоноку(и)" @@ -11645,274 +11690,274 @@ msgstr "Таблицю %s було перенесено в %s." msgid "Table %s has been copied to %s." msgstr "Таблицю %s було скопійовано в %s." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Порожня назва таблиці!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Змінити порядок таблиці" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(окремо)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Перенести таблицю в (база даних.таблиця):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Налаштування таблиці" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Перейменувати таблицю в" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Скопіювати таблицю в (база даних.таблиця):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Перейти до скопійованої таблиці" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Обслговування таблиці" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "Було очищено кеш таблиці %s" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Очистити кеш таблиці (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" msgstr "Дамп даних таблиці" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "Видалити таюлицю (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Перевір цілісність даних на рівні посилань:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Показати таблиці" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Простір, що використовується" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Ефективність" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Статистика рядка" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "динамічний" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Довжина рядка" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Розмір рядка" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "General relation features" msgid "Internal relation" msgstr "Загальні можливості" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Session value" msgid "Distinct values" msgstr "Значення сесії" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Немає" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Таблицю %s було знищено" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "Було додано первинний ключ до %s" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "Було додано індекс для %s" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show PHP information" msgid "Show more actions" msgstr "Показати інформацію про PHP" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add columns" msgid "Move columns" msgstr "Додати колонки" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Версія для друку" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Перегляд залежностей" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Запропонувати структуру таблиці" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add into comments" msgid "Add column" msgstr "Додати коментар" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "У кінці таблиці" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "На початку таблиці" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "Після %s" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "Створити індекс на %s колонках" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12070,73 +12115,39 @@ msgstr "" msgid "Create version" msgstr "" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Additional search criteria" -msgstr "Сховати критерії пошуку" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Перевстановити" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Доступні MIME-types" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "MIME-types подані курсивом не мають окремих функцій перетворення" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Доступні перетворення" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Опис" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ви для цього маєте недостатньо прав!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Профіль було поновлено." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/ur.po b/po/ur.po index c0430cecd7..b233dceffc 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Urdu \n" @@ -17,21 +17,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "تمام دکھائیں" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "صفحہ نمبر:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -40,58 +40,58 @@ msgstr "" "مطلوبہ براؤزر دریچہ تازہ نہیں کیا جاسکتا۔ ہوسکتا ہے کہ آپ نے اصل دریچہ بند " "کیا ہو یا آپ کے سلامتی ترتیبات پار دریچہ تازہ کاری میں رکاوٹ بن رہے ہوں۔" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "جائیں" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "کلید نام" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "وضاحت" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "یہ قدر استعمال کریں" @@ -110,90 +110,91 @@ msgstr "" msgid "Database %1$s has been created." msgstr "کوائفیہ $1%s بن گئی ہے۔" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "کوائفیہ تبصرہ: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "جدول تبصرے" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Command" msgid "Column" msgstr "کالم" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "خالی" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "طے شدہ" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "ربط بطرف" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "تبصرہ" @@ -202,14 +203,14 @@ msgstr "تبصرہ" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "نہیں" @@ -222,122 +223,122 @@ msgstr "نہیں" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "ہاں" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "کوائفیہ کی ڈمپ (شجرہ) منظر کریں" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "کوائفیہ میں کوئی جدول نہیں مِلا۔" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "تمام منتخب کریں" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "تمام انتخاب ختم کریں" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "کوائفیہ نام خالی ہے!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "کوائفیہ %s() نام %s میں تبدیل ہوچکا ہے" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "کوائفیہ %s نام %s میں نقل کیا جاچکا ہے" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "کوائفیہ نام بدلیں" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "کوائفیہ ہٹائیں" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔" -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "کوائفیہ چھوڑیں (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "کوائفیہ نقل کریں بطرف" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "صرف ساخت" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "ساخت اور کوائف" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "کوائف صرف" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "CREATE DATABASE نقل سے قبل" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "اضافہ کریں %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT قدر اضافہ کریں" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "پابندیاں لگائیں" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "نقل شدہ کوائفیہ پر جائیں" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "ترتیب" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " @@ -346,60 +347,60 @@ msgstr "" "phpMyAdmin کی تشکیل زخیرہبند کر دی گئی ہے۔ اس بارے میں جاننے کے لیے %share%s " "کلک کریں۔" -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "جدول" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "صفیں" # db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "ناپ" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "استعمال میں ہے" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "بنائیں" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "آخری دفعہ کی تازہ کاری" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "آخری دفعہ کی پڑتال" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -410,118 +411,118 @@ msgstr[1] "%s جداول" msgid "You have to choose at least one column to display" msgstr "آپ کو دکھانے کے لیے کم از کم ایک کالم چننا ہو گا" -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" msgstr "بصری تعمیر کنندہ" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "چھانٹیں" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "صعودی" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "نزولی" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "دکھائیں" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "کسوٹی" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Ins" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "اور" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Del" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "یا" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "ترمیم" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "کسوٹی صفیں اضافہ/حذف کریں" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "کالم اضافہ/حذف کریں" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "طلب تازہ کریں" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "جداول استعمال کریں" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "کوائفیہ کے لیے %s SQL طلب" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "طلب بھیجیں" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "‏‏رسائی نہیں دی گئی" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "کم از کم لفظوں میں سے ایک" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "تمام الفاظ" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "بعین فقرہ" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "بطور باقاعدہ اظہار" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "تلاش نتائج برائے \"%s\" %s" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -530,97 +531,97 @@ msgid_plural "%1$s matches inside table %2$s" msgstr[0] "%sجدول کے ساتھ مشابہ%s" msgstr[1] "%sجدول کے ساتھ مشابہات%s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "اس جدول کے مشابہات حذف %s کریں؟" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "تمام: %s مشابہ" msgstr[1] "تمام: %s مشابہات" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "کوائفیہ میں تلاش کریں" -#: db_search.php:292 +#: db_search.php:295 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "الفاظ یا قدروں کی تلاش برائے (wildcard: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "ڈھونڈیں:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "الفاظ ایک خالی حرف سے جدا جدا ہیں (\" \")." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "جدول میں:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "کالم میں:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "کوائیفیہ میں کوئی جدول نہیں ملا" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "جدول %s خالی ہوچکا ہے" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "جدول نقل %s چھوڑا جاچکا ہے۔" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "جدول %s چھوڑا جاچکا ہے" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "کھوج فعال ہے۔" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "کھوج غیر فعال ہے۔" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -628,189 +629,190 @@ msgid "" msgstr "" "اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "چربہ کاری" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "مجموعہ" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%sاس MySQL سرور میں طے شدہ ذخیرہ انجن ہے۔" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "مع منتخب:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "تمام پڑتال کریں" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "اوور ہیڈ جداول کی پڑتال کریں" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "برآمد" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "چھپائی منظر" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "خالی" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "چھوڑیں" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "جدول پڑتال کریں" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "جدول احسن کریں" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "جدول مرمت کریں" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "جدول تجزیہ کریں" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "کوائف لغت" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "کھوج شدہ جداول" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "کوائفیہ" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "آخری نسخہ" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "بنایا" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "تازہ کی گئی" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "حالت" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "عمل" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "فعال" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "فعال نہیں ہے" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "نسخے" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "کھوج رپورٹ" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "ساخت تصویر" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "بغیر کھوج جداول" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "جدول کھوج" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "کوائفیہ لاگ" @@ -824,18 +826,18 @@ msgstr "برآمد" msgid "Selected export type has to be saved in file!" msgstr "منتخب برآمد قسم اس مسل میں محفوظ ہو!" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Remove database" msgid "Bad parameters!" msgstr "کوائفیہ ہٹائیں" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "مسل %s محفوظ کرنے کے لیے ناکافی جگہ ہے۔" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -843,12 +845,12 @@ msgstr "" "مسل %s اس سرور میں پہلے سے موجود ہے، مسل نام تبدیل کریں یا بر تحریر اختیار " "پڑتال کریں۔" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "اس مسل %s کو محفوظ کرنے کے لیے ویب سرور کے پاس اجازت نہیں ہے۔" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔" @@ -859,103 +861,103 @@ msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔" msgid "Invalid export type" msgstr "برآمد قسم" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Value for the column \"%s\"" msgstr "کالم کی قدریں\"%s\"" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add a point" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "سطریں کے آخر میں" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add constraints" msgid "Add a linestring" msgstr "پابندیاں لگائیں" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 msgid "Add an inner ring" msgstr "" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add a polygon" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add a New User" msgid "Add geometry" msgstr "نیا صارف اضافہ کریں" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "ماحصل" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -964,21 +966,21 @@ msgstr "" "آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے " "%sdocumentation%s دیکھیں۔" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "نشانی دکھاتے ہوئے" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "نشانی حذف ہوچکا ہے۔" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "مسل قابل مطالعہ نہیں ہے" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -987,7 +989,7 @@ msgstr "" "آپ نے غیر معاون سکڑاؤ (%s) کے ساتھ مسل لوڈ کرنے کی کوشش کی ہے۔ ممکن ہے کہ یہ " "معاونت لاگو نہیں ہے یا تشکیل میں نااہل کیا گیا ہے۔" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -997,26 +999,26 @@ msgstr "" "سائز مقررہ حد سے تجاوز کرگئی ہو جو آپ کے PHP تشکیل میں ہے۔ دیکھیں[a@./" "Documentation.html#faq1_16@Documentation]عمومی سوالات 1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "درآمد پلگ ان لوڈ نہیں ہوسکے، اپنی تنصیب کا پڑتال کریں!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "نشانی %s بنایا گیا" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "درآمد کامیابی سے مکمل ہوا, %d طلب چلائے۔" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1024,7 +1026,7 @@ msgstr "" "سکرپٹ وقت ختم ہوا، اگر آپ درآمد مکمل کرنا چاہتے ہیں تو اسی مسل کو دوبارہ " "بھیجیں اور درآمد دوبارہ شروع ہوگا۔" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1032,23 +1034,23 @@ msgstr "" "بہرحال آخری دفعہ کوائف صرفی نہیں ہوا، اس کا مطلب ہے کہ phpMyAdmin اس درآمد " "کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "واپس" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin ایک فریم صلاحیت والے براؤزر کے ساتھ زیادہ موزوں ہے۔" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔" @@ -1058,7 +1060,7 @@ msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔" msgid "Do you really want to execute \"%s\"?" msgstr "کیا آپ واقعی چاہتے ہیں" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!" @@ -1106,7 +1108,7 @@ msgstr "اشاریے" msgid "Edit Index" msgstr "تدوین موڈ" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add/Delete Field Columns" msgid "Add %d column(s) to index" @@ -1127,16 +1129,16 @@ msgstr "ہوسٹ نام خالی ہے!" msgid "The user name is empty!" msgstr "صارف کا نام خالی ہے" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "پاس ورڈ خالی ہے" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "پاس ورڈ ایک جیسے نہیں ہیں" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Add %s" msgid "Add user" @@ -1155,25 +1157,26 @@ msgstr "منتخب صارفین ہٹائے جارہے ہیں" msgid "Close" msgstr "بند کریں" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "تدوین" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "سرور انتخاب" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy #| msgid "Hide query box" msgid "Live query chart" @@ -1185,24 +1188,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "میزان" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1224,7 +1227,7 @@ msgstr "سرور انتخاب" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "" @@ -1244,7 +1247,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "طلب شماریات" @@ -1293,14 +1296,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "میگا بائٹ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "کلو بائٹ" @@ -1356,32 +1359,32 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "بائٹ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "گیگا بائٹ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "ٹیرا بائٹ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "پیٹا بائٹ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "ایگزا بائٹ" @@ -1399,11 +1402,11 @@ msgstr "%s جدول" msgid "Questions" msgstr "نسخے" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1427,11 +1430,11 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "" @@ -1530,7 +1533,7 @@ msgstr "جنرل ریلیشن فیچرز" msgid "Current settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Default" msgid "Chart Title" @@ -1622,7 +1625,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "وقت" @@ -1732,10 +1735,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "درآمد" @@ -1793,9 +1796,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "منسوخ کریں" @@ -1807,11 +1810,11 @@ msgstr "لوڈ کررہا ہے" msgid "Processing Request" msgstr "فرمایش عمل کرتے ہوئے" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "فرمایش عمل کرتے ہوئے نقص ہے" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "" @@ -1823,9 +1826,9 @@ msgstr "کالم چھوڑا جارہا ہے" msgid "Adding Primary Key" msgstr "بنیادی کلید شامل کررہا ہے" -#: 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 +#: 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 msgid "OK" msgstr "ٹھیک ہے" @@ -1871,19 +1874,19 @@ msgstr "اشاریے" msgid "Show indexes" msgstr "گرِڈ دکھائیں" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "فارن کلید پڑتال غیر فعال کریں" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enable Ajax" msgid "(Enabled)" msgstr "AJAX فعال کریں" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1921,7 +1924,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1965,8 +1968,8 @@ msgstr "طلب خانہ دکھائیں" msgid "No rows selected" msgstr "" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "" @@ -1976,18 +1979,18 @@ msgstr "" msgid "Query execution time" msgstr "چلنے کی حد اوقات" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "" @@ -1999,7 +2002,7 @@ msgstr "تلاش کسوٹی چھپائیں" msgid "Show search criteria" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2049,12 +2052,12 @@ msgstr "طلب نتائج" msgid "Data point content" msgstr "" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "نظر انداز کریں" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2076,7 +2079,7 @@ msgstr "فارن کلید منتخب کریں" msgid "Please select the primary key or a unique key" msgstr "ایک بنیادی یا منفرد کلید منتخب کریں" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "کالم دکھانے کے لیے انتخاب کریں" @@ -2167,7 +2170,7 @@ msgstr "بنائیں" msgid "Change Password" msgstr "پاس ورڈ تبدیل کریں" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "مزید" @@ -2264,63 +2267,63 @@ msgid "December" msgstr "دسمبر" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "جنوری" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "فروری" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "مارچ" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "اپریل" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "مئی" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "جون" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "جولائی" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "اگست" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "ستمبر" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "اکتوبر" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "نومبر" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "دسمبر" @@ -2361,32 +2364,32 @@ msgid "Sun" msgstr "اتوار" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "پیر" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "منگل" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "بدھ" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "جمعرات" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "جمعہ" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "ہفتہ" @@ -2502,16 +2505,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "" @@ -2532,46 +2535,251 @@ msgstr "" msgid "Font size" msgstr "فانٹ سائز" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +#| msgid "Save directory" +msgid "Save edited data" +msgstr "پوشہ محفوظ کریں" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "فیلڈ کالمز شامل یا ختم کریں" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "شروع" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "پچھلا" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "اگلا" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "اختتام" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Startup" +msgid "Start row" +msgstr "ابتدائیہ" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of inserted rows" +msgid "Number of rows" +msgstr "داخل شدہ صفوں کی تعداد" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "More" +msgid "Mode" +msgstr "مزید" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "ثنائی مشمولات بطور HEX دکھائیں" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Table comments" +msgid "Display chart" +msgstr "ٹیبل کمنٹس" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +#| msgid "Created" +msgid "Create view" +msgstr "تخلیق کیا گیا" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "اپ لوڈ مسل نے php.ini میں موجود upload_max_filesize ہدایات سے تجاوز کی۔" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "اپ لوڈ مسل نے HTML فارم میں مخصوص MAX_FILE_SIZE ہدایات سے تجاوز کی۔" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "اپ لوڈ کی گئی مسل صرف جزوی اپ لوڈ ہوا ہے۔" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "ایک عارضی پوشہ موجود نہیں ہے۔" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "ڈسک پر مسل تحریر ناکام ہوا۔" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "مسل قسم کی وجہ سے اپ لوڈ روکا گیا۔" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "اپ لوڈ مسل میں نامعلوم نقص ہے۔" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2579,26 +2787,41 @@ msgstr "" "اپ لوڈ مسل کو بڑھاتے ہوئے نقص ہے, دیکھیں [a@./Documentation." "html#faq1_11@Documentation]عمومی سوالات 1.11[/a]" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "اس جگہ کوکی لازمی اہل ہوں۔" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "اس جگہ کوکی لازمی اہل ہوں۔" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "اشاریے" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "منفرد" @@ -2611,8 +2834,8 @@ msgstr "باندھنا" msgid "Cardinality" msgstr "درجہ تعلق داری" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "تبصرہ" @@ -2635,128 +2858,128 @@ msgstr "" "اشاریے %1$s اور %2$s مساوی نظر آتے ہیں اور ان میں ایک ممکنہ طور پر ہٹا دیا " "جائے گا۔" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "کوائفیے" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "سرور" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "ساخت" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "داخل کریں" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "عملیات" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "نقص" @@ -2781,7 +3004,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d صف داخل ہوئی۔" msgstr[1] "%1$d صفیں داخل ہوئیں۔" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "" @@ -2876,16 +3099,108 @@ 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 +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 +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 +msgid "Value" +msgstr "" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "تلاش" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "داخل کریں" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "" + +#: libraries/TableSearch.class.php:813 +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 "دکھانے کے لیے صفوں کی زیادہ سے زیادہ تعداد" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Additional search criteria" +msgstr "تلاش کسوٹی چھپائیں" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +#| msgid "Control user" +msgid "How to use" +msgstr "صارف کو کنٹرول کریں" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "دوبارہ سیٹ کریں" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "اس خیالیہ %s کے لیے درست راہ نہیں ملا!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "کوئی پیش منظر دستیاب نہیں ہے۔" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "اسے لیں" @@ -2904,7 +3219,7 @@ msgstr "خیالیہ %s نیہں ملا!" msgid "Theme path not found for theme %s!" msgstr "خیالیہ راہ اس خیالیہ %s کے لیے نہیں ملا!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3203,13 +3518,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "جڑ نہیں سکتا: غلط ترتیبات۔" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "%s میں خوش آمدید" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3218,7 +3533,7 @@ msgstr "" "آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو " "استعمال کرتے ہوئے بنانا چاہتے ہیں۔" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3233,60 +3548,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "اس جگہ کوکی لازمی اہل ہوں۔" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "لاگ ان" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "آپ ہوسٹ نام یا IP پتا اور دہانہ وقفوں سے جدا کرکے داخل کرسکتے ہیں۔" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "سرور:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "صارف نام:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "پاس ورڈ:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "سرور انتخاب" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "اس جگہ کوکی لازمی اہل ہوں۔" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "پاس ورڈ کے بغیر لاگ ان تشکیل میں ممنوع ہے (دیکھیں AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s سیکنڈ میں کوئی سرگرمی نہیں ہوئی، دوبارہ لاگ ان کریں۔" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL سرور میں لاگ ان نہیں کرسکتا" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "غلط صارف نام/پاس ورڈ۔ ‏‏رسائی نہیں دی گئی۔" @@ -3318,7 +3627,7 @@ msgstr "حصہ دارانہ" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "جداول" @@ -3330,13 +3639,13 @@ msgstr "جداول" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "کوائف" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "مجموعی" @@ -3361,32 +3670,24 @@ msgstr "کوائفیہ استحقاق کی پڑتال کریں "%s"." msgid "Check Privileges" msgstr "استحقاق پڑتال کریں" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Configuration file" msgid "Failed to read configuration file" msgstr "تشکیلی مسل" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "طے شدہ تشکیلات کو لوڈ نہیں کرسکا: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3398,214 +3699,192 @@ msgstr "" "$cfg['PmaAbsoluteUri'] ہدایات آپ کے تشکیل مسل میں لازمی موجود " "ہوں!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "غلط سرور اشاریہ: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکیل کا جائزہ لیں۔" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "غلط توثیقی طریقہ تشکیل میں دیا گیا ہے:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "آپ اس سے درجہ فزوں کریں %s %s یا بعد۔" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "زیادہ سے زیادہ: %s%s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "دستاویزات" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "انگریزی" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "انگریزی" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "انگریزی" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL طلب" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL نے کہا:" -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "SQL جواز دہندہ سے جڑت ناکام ہوا!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL کی تفصیل بتائیں" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "SQL وضاحت کو چھوڑیں" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP کوڈ کے بغیر" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP کوڈ بنائیں" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "تازہ کریں" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL توثیق چھوڑیں" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL کی توثیق کریں" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "اس طلب کی ان لائن تدوین" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "ان لائن" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "تفصیلات" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "اتوار" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y پر %I:%M %p" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s دن, %s گھنٹے, %s منٹ اور%s سیکنڈ" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "شروع" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "پچھلا" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "اگلا" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "اختتام" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "کوائفیہ میں جائیں "%s"." -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھیں %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "انتخاب کے لیے کلک کریں" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "اپنے کمپیوٹر کو براؤز کریں:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "چھاپیں" @@ -3635,8 +3914,8 @@ msgid "Closed" msgstr "بند ہوا" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "غیر فعال" @@ -3777,9 +4056,9 @@ msgstr "طے شدہ قدر بحال کریں" msgid "Allow users to customize this value" msgstr "صارفین کو اس قدر کے مخصوص کرنے کی اجازت دیں" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "دوبارہ سیٹ کریں" @@ -4002,10 +4281,6 @@ msgstr "جدول عنوان شامل کریں" msgid "Show binary contents as HEX by default" msgstr "ثنائی مشمولات کو بطور HEX طے شدہ دکھائیں" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "ثنائی مشمولات بطور HEX دکھائیں" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "کوائفیہ فہرست کو ڈراپ ڈاؤن کی بجائے لڑی میں دکھائیں" @@ -4059,7 +4334,7 @@ msgstr "" msgid "Maximum execution time" msgstr "چلنے کی حد اوقات" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "بطور مسل محفوظ کریں" @@ -4068,7 +4343,7 @@ msgid "Character set of the file" msgstr "مسل کے لیے حروف کی سیٹ" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "وضع" @@ -4172,7 +4447,7 @@ msgid "MIME type" msgstr "MIME قسم" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "تعلقات" @@ -5731,9 +6006,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "" @@ -6006,30 +6281,24 @@ msgstr "" msgid "Details..." msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "" @@ -6052,22 +6321,22 @@ msgstr "جدول بنائیں" msgid "Create" msgstr "" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "" @@ -6228,26 +6497,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "General relation features" msgid "committed on %1$s by %2$s" msgstr "جنرل ریلیشن فیچرز" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "General relation features" msgid "authored on %1$s by %2$s" @@ -6359,397 +6628,238 @@ msgstr "" msgid "Language" msgstr "" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -#| msgid "Save directory" -msgid "Save edited data" -msgstr "پوشہ محفوظ کریں" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "فیلڈ کالمز شامل یا ختم کریں" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Startup" -msgid "Start row" -msgstr "ابتدائیہ" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of inserted rows" -msgid "Number of rows" -msgstr "داخل شدہ صفوں کی تعداد" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "More" -msgid "Mode" -msgstr "مزید" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Table comments" -msgid "Display chart" -msgstr "ٹیبل کمنٹس" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -#| msgid "Created" -msgid "Create view" -msgstr "تخلیق کیا گیا" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." msgstr "" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6757,48 +6867,48 @@ msgid "" "that can be stored in the database." msgstr "" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6806,20 +6916,20 @@ msgid "" "number." msgstr "" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Replication" msgid "Related Links" msgstr "لپیٹنا" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -6866,14 +6976,14 @@ msgstr "" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6937,14 +7047,14 @@ msgstr "" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "" @@ -7137,23 +7247,14 @@ msgstr "ویو" msgid "Export contents" msgstr "" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "" - #: libraries/gis_visualization.lib.php:135 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." msgstr "چارٹ سے متعلق کوئی کوائف نہیں ملا۔" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7251,12 +7352,12 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "" @@ -7323,93 +7424,75 @@ msgstr "" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "داخل کریں" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "اور پھر" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7424,36 +7507,36 @@ msgstr "" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fr" msgid "From" msgstr "جمعہ" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "کیا آپ واقعی چاہتے ہیں" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "" @@ -7663,94 +7746,94 @@ msgstr "" msgid "This format has no options" msgstr "" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "ٹھیک ہے" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "جنرل ریلیشن فیچرز" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "بہتر جوڑ" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "" @@ -7758,7 +7841,7 @@ msgstr "" msgid "Slave configuration" msgstr "" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "" @@ -7770,13 +7853,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "" @@ -7789,7 +7872,7 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "" @@ -7803,38 +7886,38 @@ msgid "" "this list." msgstr "" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7848,7 +7931,7 @@ msgstr "" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7881,100 +7964,101 @@ msgstr "کوائفیہ $1%s بن گئی ہے۔" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Add a New User" msgid "Edit event" msgstr "نیا صارف اضافہ کریں" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "فرمایش عمل کرتے ہوئے نقص ہے" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Page number:" msgid "Event name" msgstr "صفحہ نمبر" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "ابتدائیہ" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "اختتام" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "داخل کرنا مکمل ہوا" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8005,7 +8089,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -8027,117 +8111,117 @@ msgstr "Table %s has been dropped" msgid "Routine %1$s has been created." msgstr "کوائفیہ $1%s بن گئی ہے۔" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "تدوین موڈ" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Comments" msgid "Routine name" msgstr "آراء-رائے" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "بنائیں" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "کوائفیہ ہٹائیں" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Action" msgid "Return options" msgstr "عمل" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "سلامتی" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "" @@ -8157,44 +8241,44 @@ msgstr "Table %s has been dropped" msgid "Trigger %1$s has been created." msgstr "کوائفیہ $1%s بن گئی ہے۔" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a New User" msgid "Edit trigger" msgstr "نیا صارف اضافہ کریں" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Page number:" msgid "Trigger name" msgstr "صفحہ نمبر" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "وقت" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "غلط جدول نام" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8299,7 +8383,7 @@ msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8308,7 +8392,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8316,7 +8400,7 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8327,27 +8411,27 @@ msgstr "" msgid "This page does not contain any tables!" msgstr "" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "" @@ -8461,7 +8545,7 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "" @@ -8479,7 +8563,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "" @@ -8498,7 +8582,7 @@ msgstr "" msgid "Run SQL query/queries on database %s" msgstr "" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "" @@ -8509,11 +8593,11 @@ msgstr "" msgid "Columns" msgstr "آراء-رائے" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "" @@ -8595,7 +8679,7 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking of %s is activated." @@ -8616,8 +8700,8 @@ msgid "" msgstr "" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "" @@ -8663,13 +8747,13 @@ msgstr "" msgid "As defined:" msgstr "" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "" @@ -8682,19 +8766,19 @@ msgstr "" msgid "after %s" msgstr "" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "آپ کو کم از کم ایک کالم چننا ہو گا ڈسپے کیلئے۔" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "" @@ -8702,43 +8786,6 @@ msgstr "" msgid "PARTITION definition" msgstr "" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "تلاش" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8848,13 +8895,13 @@ msgstr "" msgid "Manage your settings" msgstr "جنرل ریلیشن فیچرز" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "تبدیلیاں محفوظ ہو چکی ہیں" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8865,7 +8912,7 @@ msgstr "" msgid "Could not save configuration" msgstr "" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8896,7 +8943,7 @@ msgstr "سرور کی تشکیل" msgid "Appearance Settings" msgstr "" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "General relation features" msgid "More settings" @@ -8922,9 +8969,9 @@ msgstr "آخری نسخہ" msgid "Protocol version" msgstr "" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "" @@ -9041,144 +9088,144 @@ msgid "" "issues." msgstr "" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Invalid table name" msgid "Filter databases by name" msgstr "غلط جدول نام" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "Invalid table name" msgid "Filter tables by name" msgstr "غلط جدول نام" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "Submit Query" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "ریلیشن حذف ہو گیا" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "برآمد" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "Submit Query" msgid "subquery" msgstr "Submit Query" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy #| msgid "Rename database to" msgid "Rename to" msgstr "ڈیٹا بیس کا نام بدلیں" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "Page number:" msgid "New name" msgstr "صفحہ نمبر" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Created" msgid "Aggregate" msgstr "تخلیق کیا گیا" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Action" msgid "Active options" @@ -9192,55 +9239,55 @@ msgstr "" msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "Page number:" msgid "Page" msgstr "صفحہ نمبر" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "Page number:" msgid "New page name: " msgstr "صفحہ نمبر" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "غلطی : ریلیشن پہلے سے موجود ہے" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "غلطی:ریلیشن شامل نہیں ہوا" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "اندرونی ریلیشن شامل ہو گیا" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "ریلیشن حذف ہو گیا" @@ -9252,87 +9299,87 @@ msgstr "" msgid "Modifications have been saved" msgstr "تبدیلیاں محفوظ ہو چکی ہیں" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "" @@ -9340,17 +9387,17 @@ msgstr "" msgid "Select binary log to view" msgstr "" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "" @@ -9366,7 +9413,7 @@ msgstr "" msgid "Original position" msgstr "" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "" @@ -9374,7 +9421,7 @@ msgstr "" msgid "Character Sets and Collations" msgstr "" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "Database %s has been dropped." msgid "%1$d database has been dropped successfully." @@ -9382,24 +9429,24 @@ msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "کوائفیہ %s چھوڑ دیا گیا ہے۔" msgstr[1] "کوائفیہ %s چھوڑ دیا گیا ہے۔" -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9409,376 +9456,376 @@ msgstr "" msgid "Storage Engines" msgstr "" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "شروع" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "غیر فعال" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "برآمد" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Check Privileges" msgid "Privileges for all users" msgstr "استحقاق پڑتال کریں" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Check Privileges" msgid "Privileges for %s" msgstr "استحقاق پڑتال کریں" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9787,140 +9834,140 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "جدول نقل %s چھوڑا جاچکا ہے۔" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9929,265 +9976,265 @@ msgid "" "replicated. Please select the mode:" msgstr "" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " "master" msgstr "" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "Structure only" msgid "Start SQL Thread only" msgstr "سٹرکچر صرف" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "Structure only" msgid "Start IO Thread only" msgstr "سٹرکچر صرف" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "تازہ کریں" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show logo in left frame" msgid "Show only alert values" msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show logo in left frame" msgid "Show unformatted values" msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Replication" msgid "Related links:" msgstr "لپیٹنا" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Gather errors" msgid "Run analyzer" msgstr "نقائص اکھٹی کریں" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10195,116 +10242,116 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "ابتدائیہ صفحہ کی تخصیص کریں" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "" -#: server_status.php:1107 +#: server_status.php:1106 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:1113 +#: server_status.php:1112 msgid "Received" msgstr "" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "حکم" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1322 +#: server_status.php:1321 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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 +10359,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1334 +#: 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 "" -#: server_status.php:1335 +#: 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." msgstr "" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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:1338 +#: server_status.php:1337 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:1339 +#: 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 " @@ -10391,7 +10438,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1340 +#: server_status.php:1339 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 +10446,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "" -#: server_status.php:1348 +#: 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 "" -#: server_status.php:1349 +#: server_status.php:1348 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 +10489,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1351 +#: 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 "" -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1354 +#: 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 "" -#: server_status.php:1355 +#: server_status.php:1354 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,244 +10524,244 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "" -#: server_status.php:1375 +#: server_status.php:1374 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:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1387 +#: 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 "" -#: server_status.php:1388 +#: 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." msgstr "" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "درآمد مسل کی وضع" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1392 +#: 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 "" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1408 +#: 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 " @@ -10722,99 +10769,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1413 +#: server_status.php:1412 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:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1415 +#: 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 "" -#: server_status.php:1416 +#: server_status.php:1415 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:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1423 +#: server_status.php:1422 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:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10822,18 +10869,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1429 +#: server_status.php:1428 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:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10841,72 +10888,72 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "کھوج غیر فعال ہے۔" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Startup" msgid "Start Monitor" msgstr "ابتدائیہ" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add chart" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "تازہ کریں" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "طے شدہ قدر بحال کریں" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10915,7 +10962,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10923,18 +10970,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10942,11 +10989,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -10954,95 +11001,95 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "کوائفیہ ہٹائیں" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "SQL queries" msgid "Select series:" msgstr "SQL طلب" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "غلط جدول نام" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a New User" msgid "Add this series" msgstr "نیا صارف اضافہ کریں" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL طلب" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Query statistics" msgid "Log statistics" msgstr "طلب شماریات" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select All" msgid "Selected time range:" msgstr "سارا منتخب کریں" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Gather errors" msgid "Query analyzer" msgstr "نقائص اکھٹی کریں" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Second" msgid "%d second" @@ -11050,7 +11097,7 @@ msgid_plural "%d seconds" msgstr[0] "سیکنڈ" msgstr[1] "سیکنڈ" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" @@ -11058,129 +11105,129 @@ msgid_plural "%d minutes" msgstr[0] "منٹ" msgstr[1] "منٹ" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL طلب" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "" @@ -11468,177 +11515,177 @@ msgstr "" msgid "Wrong data" msgstr "کوائف" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "کیا آپ واقعی چاہتے ہیں" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔" -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "مارچ" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Command" msgctxt "Chart type" msgid "Column" msgstr "کالم" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Inline" msgctxt "Chart type" msgid "Spline" msgstr "ان لائن" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "پیٹا بائٹ" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Default" msgid "Chart title" msgstr "ڈیفالٹ" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL طلب" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "سرور انتخاب دکھائیں" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "میزان" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "بطور مسل محفوظ کریں" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Page number:" msgid "File name" @@ -11656,30 +11703,30 @@ msgstr "" msgid "No index parts defined!" msgstr "" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "تدوین موڈ" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "" @@ -11702,267 +11749,267 @@ msgstr "" msgid "Table %s has been copied to %s." msgstr "" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" msgstr "اس ٹیبل کیلئے ٹریکنگ ڈیٹا حذف کریں " -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy #| msgid "Copy database to" msgid "Delete the table (DROP)" msgstr "ڈیٹا بیس کاپی کریں" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Count tables" msgid "Showing tables" msgstr "حداول کی گنتی کریں" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Use this value" msgid "Distinct values" msgstr "یہ قدر استعمال کریں" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "Table %s has been dropped" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Move columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "چھپائی منظر" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add column" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "" @@ -12121,73 +12168,37 @@ msgstr "" msgid "Create version" msgstr "" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Additional search criteria" -msgstr "تلاش کسوٹی چھپائیں" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -#, fuzzy -#| msgid "Maximum number of rows to display" -msgid "Maximum rows to plot" -msgstr "دکھانے کے لیے صفوں کی زیادہ سے زیادہ تعداد" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -#| msgid "Control user" -msgid "How to use" -msgstr "صارف کو کنٹرول کریں" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "دوبارہ سیٹ کریں" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "" diff --git a/po/uz.po b/po/uz.po index 6791407dea..0b10ae0dac 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-17 15:09+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: uzbek_cyrillic \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Барчасини кўрсатиш" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Саҳифа рақами:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,58 +37,58 @@ msgstr "" "Браузернинг нишондаги ойнасини янгилаб бўлмади. Эҳтимол, бош ойна ёпилган " "ёки браузер хавфсизлик юзасидан ойналараро янгилашни блокировка қилмоқда" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "OK" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Индекс номи" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Тавсифи" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Ушбу қийматни ишлатиш" @@ -104,90 +104,91 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s маълумотлар базаси тузилди." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Маълумотлар базасига изоҳ: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Жадвал изоҳи" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Майдон номлари" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Андоза" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Алоқалар" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Изоҳлар" @@ -196,14 +197,14 @@ msgstr "Изоҳлар" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Йўқ" @@ -216,126 +217,126 @@ msgstr "Йўқ" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ҳа" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Маълумотлар базаси дампини (схемасини) намойиш этиш" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Барчасини белгилаш" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Белгилашни бекор қилиш" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Маълумотлар базаси номи бўш!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "`\"%s\"` маълумотлар базасининг номи `\"%s\"` деб ўзгартирилди." -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха кўчирилди." -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:470 +#: db_operations.php:476 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "\"%s\" маълумотлар омбори ўчирилди." -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Ушбу базага ўтиш" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Фақат тузилиши" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Тузилиши ва маълумотлари" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Фақат маълумотлар" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Нусха кўчиришдан олдин маълумотлар базаси тузинг (CREATE DATABASE)" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "\"%s\" қўшиш" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT қўшиш" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Чекловлар қўшиш" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Нусха олинган маълумотлар базасига ўтиш" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Таққослаш" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -347,61 +348,61 @@ msgstr "" "Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. " "Сабабларини аниқлаш учун %sбу ерга%s босинг." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Алоқалар схемаси" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Жадвал" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Қаторларсони" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Ҳажми" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "ишлатилмоқда" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Тузиш" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Охирги янгиланиш" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Охирги текширув" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -413,122 +414,122 @@ msgstr[1] "Жадваллар сони: \"%s\"" msgid "You have to choose at least one column to display" msgstr "Сўровни бажариш учун, майдон/майдонлар танланган бўлиши керак." -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Нусха олинган жадвалга ўтиш" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Сортировка қилиш" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "Ўсиш тартибида" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Камайиш тартибида" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Кўрсатиш" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Критерий" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Қўйиш" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Ва" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "Ўчириш" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Ёки" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "Ўзгаририш" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Қатор қўшиш/ўчириш" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Устун қўшиш/ўчириш" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "Сўровни янгилаш" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Жадвалларни ишлатиш" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "\"%s\" маълумотлар базасига SQL-сўров:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "сўровни бажариш" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Рухсат берилмади" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "сўзлардан бири" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "барча сўзлар" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "аниқ мослик" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "мунтазам ибора" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"\"%s\"\" учун қидирув натижалари \"%s\":" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -536,31 +537,31 @@ msgid_plural "%1$s matches inside table %2$s" msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -568,71 +569,71 @@ msgid_plural "Total: %s matches" msgstr[0] "Жами: \"%s\" ўхшашлик" msgstr[1] "Жами: \"%s\" ўхшашлик" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Маълумотлар базасида қидириш" -#: db_search.php:292 +#: db_search.php:295 #, fuzzy #| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" msgid "Words or values to search for (wildcard: \"%\"):" msgstr "Қидириш учун сўз(лар) ёки қиймат(лар) (ўрнига қўйиш белгиси: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "Излаш:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "Сўзлар бўш жой (\" \") ёрдамида бўлинган." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Қуйидаги жадвал(лар)да қидириш:" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" msgstr "Қуйидаги майдон(лар)да қидириш: " -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "номаълум" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" жадвали тозаланди" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "\"%s\" намойиши ўчирилди" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" жадвали ўчирилди" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Кузатиш фаол." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Кузатиш фаол эмас." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -641,191 +642,192 @@ msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Репликация (захира нусха кўчириш)" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Жами" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури." -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Белгиланганларни:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Барчасини белгилаш" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Чоп этиш версияси" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Тозалаш" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "Ўчириш" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Жадвални текшириш" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Жадвални оптималлаштириш" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Жадвални тиклаш" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Жадвал таҳлили" -#: db_structure.php:719 +#: db_structure.php:717 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "Ушбу жадвалга ўтиш" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table prefix" msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Маълумотлар луғати" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Кузатилган жадваллар" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Маълумотлар базаси" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Охирги версия" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Тузилди" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Янгиланди" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Ҳолат" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Амал" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "фаол" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "фаол эмас" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Версиялар" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Кузатиш ҳисоботи" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Тузилма расми" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Кузатилмаган жадваллар" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Жадвални кузатиш" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "База лог файлини" @@ -839,18 +841,18 @@ msgstr "Сўров тури" msgid "Selected export type has to be saved in file!" msgstr "Белгиланган экспорт тури файлга сақланиши шарт!" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Apply index(s)" msgid "Bad parameters!" msgstr "Индекс(лар)ни сақлаш" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" файлини сақлаш учун дискда етарли жой мавжуд эмас." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -858,12 +860,12 @@ msgstr "" "\"%s\" файли серверда мавжуд, унинг номини ўзгартиринг ёки қайта ёзиш " "параметрини ёқинг." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "\"%s\" файлини веб-серверга сақлаш учун ҳуқуқлар етарли эмас." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Дамп \"%s\" файлида сақланди." @@ -874,104 +876,104 @@ msgstr "Дамп \"%s\" файлида сақланди." msgid "Invalid export type" msgstr "Жадвалларни экспорт қилиш" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Apply index(s)" msgid "Add a point" msgstr "Индекс(лар)ни сақлаш" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Қаторлар бўлувчиси" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add column(s)" msgid "Add a polygon" msgstr "Устун(лар) қўшиш" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add a new server" msgid "Add geometry" msgstr "Янги фойдаланувчи қўшиш" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -980,21 +982,21 @@ msgstr "" "Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари " "%sдокументацияда%s келтирилган." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Хатчўпларни кўрсатиш" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Хатчўп ўчирилди." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Файлни ўқиб бўлмади!!" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -1004,7 +1006,7 @@ msgstr "" "эмас, шунинг учун ушбу файлни импорт қилиб бўлмайди. Агар дастур мавжуд " "бўлса, демак у конфигурация вақтида ўчириб қўйилган." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -1015,28 +1017,28 @@ msgstr "" "қийматдан катта. Қаранг: [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Импорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/" "export каталогини текширинг." -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" хатчўпи тузилди" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Импорт муваффақиятли тугатилди, бажарилган сўровлар сони: %d." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1045,7 +1047,7 @@ msgstr "" "ўша файлни танлаган ҳолда уни қайта ишга туширинг ва жараён узилган жойдан " "бошлаб давом этади." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1054,24 +1056,24 @@ msgstr "" "Одатда, бу ҳол, php-сценарийлар учун ажратилган вақт оширилмагунча " "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Орқага" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin ишлаши учун фреймлар билан ишлай оладиган браузер керак." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган." @@ -1081,7 +1083,7 @@ msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) msgid "Do you really want to execute \"%s\"?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!" @@ -1131,7 +1133,7 @@ msgstr "Индекс(лар)ни сақлаш" msgid "Edit Index" msgstr "Таҳрирлаш усули" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %d column(s) to index" @@ -1152,16 +1154,16 @@ msgstr "Хост номи бўш!" msgid "The user name is empty!" msgstr "Фойдаланувчи номи белгиланмаган!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Парол белгиланмаган!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Киритилган пароллар бир хил эмас!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1184,25 +1186,26 @@ msgstr "Белгиланган фойдаланувчиларни ўчириш" msgid "Close" msgstr "Ёпиш" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Таҳрирлаш" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Серверни танланг" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -1214,24 +1217,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Жами" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1253,7 +1256,7 @@ msgstr "Серверни танланг" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Жараёнлар" @@ -1273,7 +1276,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -1324,14 +1327,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "КБ" @@ -1393,32 +1396,32 @@ msgstr "" msgid "Bytes received" msgstr "Қабул қилинди" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Уланишлар" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Байт" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "ЭБ" @@ -1435,11 +1438,11 @@ msgstr "Жадваллар сони: \"%s\"" msgid "Questions" msgstr "Версиялар" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "settings" msgid "Settings" @@ -1465,11 +1468,11 @@ msgstr "Тўрга боғлаб қўйиш" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Йўқ" @@ -1569,7 +1572,7 @@ msgstr "Бошқа созланишлар" msgid "Current settings" msgstr "танловлар" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1663,7 +1666,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Вақт" @@ -1773,10 +1776,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1836,9 +1839,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "Бекор қилиш" @@ -1854,11 +1857,11 @@ msgstr "Юклаш" msgid "Processing Request" msgstr "Жараёнлар" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Биронта ҳам маълумотлар базаси танланмаган." @@ -1870,9 +1873,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1928,19 +1931,19 @@ msgstr "Индекс(лар)ни сақлаш" msgid "Show indexes" msgstr "Тўрни кўрсатиш" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Ташқи калитларни текширишни ўчириш" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Фаоллаштирилган" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1980,7 +1983,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -2025,8 +2028,8 @@ msgstr "SQL сўровлари қутиси" msgid "No rows selected" msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "Ўзгартириш" @@ -2036,18 +2039,18 @@ msgstr "Ўзгартириш" msgid "Query execution time" msgstr "Максимум бажарилиш вақти" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "%d сони тўғри қатор рақами эмас!" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Сақлаш" @@ -2063,7 +2066,7 @@ msgstr "SQL сўровлари қутиси" msgid "Show search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2115,12 +2118,12 @@ msgstr "Сўров натижаларини ишлатиш" msgid "Data point content" msgstr "Маълумотлар файли кўрсатгичи ҳажми" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "Эътибор бермаслик" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2142,7 +2145,7 @@ msgstr "Ташқи калитни танланг" msgid "Please select the primary key or a unique key" msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2239,7 +2242,7 @@ msgstr "Генерация қилиш" msgid "Change Password" msgstr "Паролни ўзгартириш" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2359,27 +2362,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2387,37 +2390,37 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Дек" @@ -2466,32 +2469,32 @@ msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Шан" @@ -2628,16 +2631,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "секундига" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "минутига" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "соатига" @@ -2658,21 +2661,237 @@ msgstr "" msgid "Font size" msgstr "Шрифт ўлчами" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +#| msgid "Save directory" +msgid "Save edited data" +msgstr "Сақлаш директорияси" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Restore column order" +msgstr "CHAR майдонидаги устунлар сони" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Боши" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Орқага" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Кейинги" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Охири" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Бошлаш" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "Майдонлар сони " + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Душ" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "горизонтал" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "горизонтал (айлантирилган сарлавҳалар)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "вертикал" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Белгиланган сўровни бажариш" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Индекс бўйича сортировка қилиш" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Параметрлар" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Маълумотларни қисқартириб кўрсатиш" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Маълумотларни кенгайтирилган ҳолда кўрсатиш" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Алоқадор калит" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational display field" +msgid "Relational display column" +msgstr "Алоқадор майдон қиймати" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Иккилик маълумотларни кўрсатиш" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "BLOB туридаги маълумотларни кўрсатиш" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "Ўгириш" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Ёзув ўчирилди" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Тугатиш" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]\"FAQ " +"3.11\"[/a]га қаранг" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "сўров бўйича" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Ёзувларни кўрсатиш" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "жами" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "Сўров %01.4f секунд вақт олди" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "Сўров натижаларини ишлатиш" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Чоп этиш версияси (тўла)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "PDF-схемани кўрсатиш" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +#| msgid "Create version" +msgid "Create view" +msgstr "Версиясини тузиш" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Алоқа топилмади" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган " "\"upload_max_filesize\" директиваси қийматидан катта!" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2680,27 +2899,27 @@ msgstr "" "Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" " "директиваси қийматидан катта!" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Юкланаётган файл фақатгина қисман юкланди." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Файлни дискка ёзишдахатолик юз берди." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2708,26 +2927,41 @@ msgstr "" "Юкланган файл жойини ўзгартиришда хатолик, [a@./Documentation." "html#faq1_11@Documentation]\"FAQ 1.11\"[/a]га қаранг" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "phpMyAdmin дастурини янги ойнада очиш" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Индекслар" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Уникал" @@ -2740,8 +2974,8 @@ msgstr "Қисилган" msgid "Cardinality" msgstr "Элементлар сони" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Изоҳ" @@ -2762,130 +2996,130 @@ msgid "" "removed." msgstr "%1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин." -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Маълумотлар базалари" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Сервер" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Тузилиши" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Қўйиш" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Операциялар" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Кузатиш" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Жадвал - бўш!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Маълумотлар базаси бўш!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "Сўров" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Привилегиялар" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Муолажалар" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Ҳодисалар" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Дизайнер" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Фойдаланувчи" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Синхронизация қилиш" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Иккилик журнал" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "Ўзгарувчилар" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Кодировкалар" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Жадвал турлари" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Хатолик" @@ -2913,7 +3147,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d та қаторлар қўйилди." msgstr[1] "%1$d та қаторлар қўйилди." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -3013,16 +3247,112 @@ 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 +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 +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 +msgid "Value" +msgstr "Қиймати" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Қидириш" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Қўйиш" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Майдонни танланг (камида битта):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Қидириш шартини кўшиш (яъни \"where\" жумласи):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Саҳифадаги қаторлар сони" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Сортировка:" + +#: libraries/TableSearch.class.php:813 +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 "Кўрсатиладиган қаторларнинг максимал сони" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Ташқи қийматларни кўриб чиқиш" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "SQL Query box" +msgid "Additional search criteria" +msgstr "SQL сўровлари қутиси" + +#: 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 "\"Намунадаги сўровни бажариш\" (ўрнига қўйиш белгиси: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "\"Намунадаги сўровни бажариш\" (ўрнига қўйиш белгиси: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +#| msgid "Control user" +msgid "How to use" +msgstr "Назорат фойдаланувчиси" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Тозалаш" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "\"%s\" мавзуси расмларига тўғри йўл топилмади!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Олдиндан кўриш мумкин эмас." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "Тадбиқ қилиш" @@ -3041,7 +3371,7 @@ msgstr "\"%s\" мавзуси топилмади!" msgid "Theme path not found for theme %s!" msgstr "\"%s\" мавзуси файлларига йўл топилмади!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3340,13 +3670,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Уланиб бўлмади: нотўғри созланган." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "\"%s\" дастурига хуш келибсиз" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3355,7 +3685,7 @@ msgstr "" "Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш " "сценарийсидан%2$s фойдаланишингиз мумкин." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3370,42 +3700,36 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Авторизация" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Сиз хост/IP адрес ва бўш жой қолдириб портни киритишингиз мумкин." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Фойдаланувчи:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Парол:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Серверни танланг" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3413,7 +3737,7 @@ msgstr "" "Паролсиз аутентификация конфигурация томонидан ўчирилган (қаранг " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" @@ -3421,13 +3745,13 @@ msgstr "" "\"%s\" сония давомида фаоллик кузатилмади, илтимос, қайта авторизациядан " "ўтинг" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL серверига уланиб бўлмади" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Киритилган маълумотлар нотўғри. Кириш мумкин эмас." @@ -3461,7 +3785,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Жадваллар" @@ -3473,13 +3797,13 @@ msgstr "Жадваллар" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Маълумотлар" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Фрагментланган" @@ -3510,33 +3834,25 @@ msgstr "\"%s\" маълумотлар базасининг привилегия msgid "Check Privileges" msgstr "Привилегияларни текшириш" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to read configuration file" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "\"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади." -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3548,227 +3864,205 @@ msgstr "" "$cfg[\"PmaAbsoluteUrl\"] директиваси конфигурацион файлда " "созланиши ШАРТ!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Сервер рақами нотўғри: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" " %1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион " "файлида белгиланган созлашларни тўғирланг." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Максимал ҳажми: \"%s\"%s\"" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Документация" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL сўрови" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL жавоби: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL-серверга уланиб бўлмади" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "Сўров таҳлили" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Таҳлил керак эмас" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP-код олиб ташлаш" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Янгилаш" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL синтаксиси текширувини олиб ташлаш" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL тўғрилигини текшириш" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Жадвал турлари" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Профиллаштириш" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Якш" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y й., %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Муолажалар" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Боши" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Орқага" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Кейинги" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Охири" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "\"%s\" маълумотлар базасига ўтиш" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" " \"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил " "маълумот учун қаранг \"%s\"" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Танлаш учун сичқонча тугмасини босинг" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Юклаш каталогидан" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Кўрсатилган каталокка юклаб бўлмади" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Чоп этиш" @@ -3800,8 +4094,8 @@ msgid "Closed" msgstr "Ёпиш" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Фаолсизлантирилган" @@ -3953,9 +4247,9 @@ msgstr "Асл қийматларни тиклаш" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Тозалаш" @@ -4191,10 +4485,6 @@ msgstr "Жадвал тузилиши таҳлили" msgid "Show binary contents as HEX by default" msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4261,7 +4551,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Максимум бажарилиш вақти" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Файл каби сақлаш" @@ -4270,7 +4560,7 @@ msgid "Character set of the file" msgstr "Файл кодировкаси" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Формат" @@ -4388,7 +4678,7 @@ msgid "MIME type" msgstr "MIME тури" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Алоқалар" @@ -6090,9 +6380,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Парол" @@ -6398,14 +6688,6 @@ msgstr "" msgid "Details..." msgstr "Тафсилотлар..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]\"FAQ " -"3.11\"[/a]га қаранг" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6414,18 +6696,18 @@ msgstr "" "кўрсатилган фойдаланувчи ёрдамида уланиб бўлмади." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Паролни ўзгартириш" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Парол йўқ" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Тасдиқлаш" @@ -6450,22 +6732,22 @@ msgstr "Янги маълумотлар базаси тузиш" msgid "Create" msgstr "Тузиш" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Привилегиялар йўқ" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Номи" @@ -6666,26 +6948,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Кодировкалаш функцияси" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -6820,195 +7102,27 @@ msgstr "" msgid "Language" msgstr "Тил" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -#| msgid "Save directory" -msgid "Save edited data" -msgstr "Сақлаш директорияси" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Restore column order" -msgstr "CHAR майдонидаги устунлар сони" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Бошлаш" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "Майдонлар сони " - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Душ" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "горизонтал" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "горизонтал (айлантирилган сарлавҳалар)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "вертикал" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Белгиланган сўровни бажариш" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Индекс бўйича сортировка қилиш" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Параметрлар" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Маълумотларни қисқартириб кўрсатиш" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Маълумотларни кенгайтирилган ҳолда кўрсатиш" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Алоқадор калит" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational display field" -msgid "Relational display column" -msgstr "Алоқадор майдон қиймати" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Иккилик маълумотларни кўрсатиш" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "BLOB туридаги маълумотларни кўрсатиш" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "Ўгириш" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Ёзув ўчирилди" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Тугатиш" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "сўров бўйича" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Ёзувларни кўрсатиш" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "жами" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "Сўров %01.4f секунд вақт олди" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "Сўров натижаларини ишлатиш" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Чоп этиш версияси (тўла)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "PDF-схемани кўрсатиш" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -#| msgid "Create version" -msgid "Create view" -msgstr "Версиясини тузиш" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Алоқа топилмади" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Версия ҳақида маълумот" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Маълумотлар учун уй каталог" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "InnoDB маълумотлар файллари сақланадиган каталог йўлининг умумий қисми" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Маълумотлар файли" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Автоматик ошириб бориш" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -7016,11 +7130,11 @@ msgstr "" "Жадвалда жой тугаганда маълумотлар файли ҳажмини автоматик ошириш " "(мегабайтларда)." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Буфер пули ҳажми" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -7028,79 +7142,79 @@ msgstr "" "Маълумотларни ва жадвал индексларини кешлашда InnoDB ишлатадиган хотира " "буфери ҳажми" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Буфер пули" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB аҳволи" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Ишлатилиш" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "саҳифалар сони" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Бўш саҳифалар сони" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Кир саҳифалар" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Маълумотлар мавжуд саҳифалар" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Тозалаш керак бўлган саҳифалар сони" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Банд саҳифалар" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Блокировка қилинган саҳифалар сони" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Фаоллик" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "Ўқишга рухсат сўраш" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Ёзишга бўлган сўровлар сони" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Буферни ўқишда қолдиришлар мавжуд" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Буфернинг тозаланиши кутилмоқда" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Буферни ўқишда % қолдиришлар мавжуд" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "% буфернинг тозаланиши кутилмоқда" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Маълумотлар файли кўрсатгичи ҳажми" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -7109,11 +7223,11 @@ msgstr "" "туридаги жадвал тузишда (CREATE TABLE) ишлатиладиган маълумотлар файли " "кўрсатгичи ҳажми (байтларда)." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Автоматик тиклаш режими" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -7121,11 +7235,11 @@ msgstr "" "Жадвал бузилганда автоматик тиклаш режими. Сервер ишга туширилганда, --" "myisam-recover параметри орқали белгиланади." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Вақтинчалик индекс файлларининг максимал ҳажми" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -7136,11 +7250,11 @@ msgstr "" "ҳажми. Агар файл ҳажми берилган қийматдан ошса, унда индекс кеши ёрдамида " "индекс тузилади (бундай алгоритм секинроқ лекин барқарорроқ ишлайди)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Индексни тузишда ишлатиладиган вақтинчалик файл ҳажми" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -7150,11 +7264,11 @@ msgstr "" "вақтинчалик файл ҳажми бу ерда кўрсатилган ҳажмдан катта бўлса, индексни " "кешлашнинг секинроқ лекин барқарорроқ усулига афзаллик берилади." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Оқимли тиклаш" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -7162,11 +7276,11 @@ msgstr "" "Агар қиймат бирдан катта бўлса, MyISAM туридаги жадвал индекслари тиклаш " "вақтида параллел равишда сортировка (Repair by sorting) ёрдамида тузилган." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Сортировка буфери ҳажми" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -7175,11 +7289,11 @@ msgstr "" "ёки ALTER TABLE буйруқлари ёрдамида индекс тузиш учун керак бўлган буфер " "ҳажми." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Индекс кеши ҳажми" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -7187,11 +7301,11 @@ msgstr "" "Индекслар кешига ажратилган хотира ҳажми. Асл қиймати – 32 Мб. Бунда " "ажратилган хотира фақатгина индекс саҳифаларни кешлашда фойдаланилади." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Ёзиш кеши ҳажми" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -7201,11 +7315,11 @@ msgstr "" "Мб. Ушбу хотира маълумотларни сақлаш файллари(.xtd)даги ва қатор " "кўрсатгичлари(.xtr)даги ўзгаришларни кешлашда ишлатилади." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Журнал кеши ҳажми" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -7213,11 +7327,11 @@ msgstr "" "Транзакциялар журнали маълумотларини кешлаш учун ажратилган хотира ҳажми. " "Асл қиймати – 16 Мб." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Журнал файли остонаси" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -7225,11 +7339,11 @@ msgstr "" "Транзакциялар журналининг қайтишгача ва янги журнал тузишгача ҳажми. Асл " "қиймати – 26 Мб." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Транзакциялар буфери ҳажми" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -7237,11 +7351,11 @@ msgstr "" "Транзакция журналлари учун глобал буфер ҳажми (дастур шу ҳажмдаги 2 та буфер " "ажратади). Асл қиймати – 1 Мб." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Текширув частотаси" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -7249,11 +7363,11 @@ msgstr "" "Текширув амалга оширилганга қадар транзакциялар журналида ёзилган " "маълумотлар ҳажми. Асл қиймати – 24 Мб." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Маълумотлар журнали остонаси" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -7265,11 +7379,11 @@ msgstr "" "мумкин. Шундай қилиб, маълумотлар базасида сақланадиган маълумотларнинг " "умумий ҳажмини ошириш учун ушбу ўзгарувчининг қийматини ошириш мумкин." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Ахлатланиш остонаси" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -7277,11 +7391,11 @@ msgstr "" "Ихчамлаштиришдан олдин маълумотлар журнали файли ахлатланишининг фоиз " "нисбати. Қиймат 1 ва 99 орасидабўлиши шарт. Асл қиймати – 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Журнал буфери ҳажми" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -7291,27 +7405,27 @@ msgstr "" "Мб. Агар оқим журнал маълумотларини ёзиш учун керак бўлсагина, дастур ҳар " "бир оқимга битта буфер ажратади." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Маълумотлар файлларининг ошиш ҳажми" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Маълумотларни сақлаш файллари(.xtd)нинг ошиш ҳажми." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Қатор файлларининг ошиш ҳажми" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Қатор кўрсатгичлари файллари(.xtr)нинг ошиш ҳажми." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Журнал файллари сони" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -7323,20 +7437,20 @@ msgstr "" "ўчирилади ёки уларнинг номлари ўзгартирилади ва қуйидаги тартибда " "рақамланади." -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Алоқалар" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -7399,14 +7513,14 @@ msgstr "Жадвал маълумотларини дамп қилиш" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Ҳодиса" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7476,14 +7590,14 @@ msgstr "Мавжуд MIME турлари" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Хост" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Тузилган сана" @@ -7683,21 +7797,12 @@ msgstr "Намойиш" msgid "Export contents" msgstr "Таркибини экспорт қилиш" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "phpMyAdmin дастурини янги ойнада очиш" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." @@ -7805,12 +7910,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Жадвал номи" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Майдон номлари" @@ -7890,97 +7995,79 @@ msgstr "SQL билан мослик режими" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "Ноль қийматлари учун \"AUTO_INCREMENT\" ишлатмаслик" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Функция" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Яшириш" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Иккилик" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Иккилик маълумот - таҳрирлаш мумкин эмас" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "Юклаш каталогидан" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Қўйиш" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" msgstr "Қўйилаётган қаторлар сони: \"%s\"" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "ва сўнг" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Ёзув киритиш" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Киритилган сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Олдинги саҳифага ўтиш" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Янги ёзув киритиш" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Ушбу саҳифага қайтиш" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Кейинги қаторни таҳрирлаш" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Қиймати" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" @@ -7997,38 +8084,38 @@ msgstr "Йўқ" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Жум" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Бажариш" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Apply index(s)" msgid "Add prefix" msgstr "Индекс(лар)ни сақлаш" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "Ўзгариш йўқ" @@ -8240,88 +8327,88 @@ msgstr "Навигация ойнасини қайта юклаш" msgid "This format has no options" msgstr "Ушбу формат учун созланадиган параметр мавжуд эмас" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Тайёр эмас" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Фаоллаштирилган" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Алоқаларнинг асосий имкониятлари" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Имкониятларни кўрсатиш" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF-схема тузиш" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Майдон изоҳларини кўрсатиш" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "Ўгириш" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "\"column_comments\" жадвалини янгилаш зарур. Батафсил маълумот учун " "документацияга қаранг." -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Хатчўп қўйилган SQL сўрови" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-сўровлар тарихи" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Доимий уланишлар" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Муфассал танловларни тез созлаш учун қадамларs:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Керакли жадвалларни examples/create_tables.sql код ёрдамида " "тузиш." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "phpMyAdmin фойдаланувчиси қўшиш ва ушбу жадвалларга рухсат бериш." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -8329,13 +8416,13 @@ msgstr "" "(config.inc.php) файлидаги муфассал танловларни фаоллаштириш, " "масалан, config.sample.inc.php дан бошлаб." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Янгиланган конфигурация файли ишга тушиши учун, phpMyAdmin дастуридан чиқиб, " "қайта киринг." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "тавсиф мавжуд эмас" @@ -8343,7 +8430,7 @@ msgstr "тавсиф мавжуд эмас" msgid "Slave configuration" msgstr "Тобе сервер конфигурацияси" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Бош серверни ўзгартириш ёки қайта конфигурация қилиш" @@ -8358,13 +8445,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Фойдаланувчи номи" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Порт" @@ -8377,7 +8464,7 @@ msgid "Slave status" msgstr "Тобе сервер статуси" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "Ўзгарувчи" @@ -8393,38 +8480,38 @@ msgstr "" "Рўйхатда фақат \"--report-host=host_name\" танлови ёрдамда юкланган тобе " "серверлар кўрсатилмоқда." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Тобе репликация фойдаланувчисини қўшиш" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "Ҳар қайси фойдаланувчи" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Матнмайдонини ишлатиш" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Ҳар қайси хост" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Локал" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Ушбу хост" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Хостлар жадвалидан фойдаланиш" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8440,7 +8527,7 @@ msgstr "Парол ўрнатиш" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -8474,105 +8561,106 @@ msgstr "%1$s жадвали тузилди." msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Edit server" msgid "Edit event" msgstr "Серверларни таҳрирлаш" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Жараёнлар" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." msgid "Details" msgstr "Тафсилотлар..." -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Ҳодиса тури" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Ҳодиса тури" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "Ўзгартириш" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Белгиланган сўровни бажариш" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Бошланғич" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Охири" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "Тўла қўйиш" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8603,7 +8691,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -8625,121 +8713,121 @@ msgstr "\"%s\" жадвали ўчирилди" msgid "Routine %1$s has been created." msgstr "%1$s жадвали тузилди." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Таҳрирлаш усули" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Муолажалар" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Тўғридан-тўғри боғланишлар" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Узунлик/қийматлар" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Индекс(лар)ни сақлаш" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Қайтариладиган тип" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Узунлик/қийматлар" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Жадвал параметрлари" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Хавфсизлик" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8761,44 +8849,44 @@ msgstr "\"%s\" жадвали ўчирилди" msgid "Trigger %1$s has been created." msgstr "%1$s жадвали тузилди." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new server" msgid "Edit trigger" msgstr "Янги фойдаланувчи қўшиш" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Триггерлар" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Вақт" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Жадвал номи нотўғри" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8912,7 +9000,7 @@ msgstr "Биронта ҳам конфигурацияланган сервер #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8922,7 +9010,7 @@ msgstr "\"%s\" жадвали мавжуд эмас!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8930,7 +9018,7 @@ msgid "Please configure the coordinates for table %s" msgstr "\"%s\" жадвалининг координаталарини ўзгартириш" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8944,27 +9032,27 @@ msgstr "\"%s\" маълумотлар базаси тузилиши - \"%s\" с msgid "This page does not contain any tables!" msgstr "\"%s\" файлида калит идентификатори мавжуд эмас" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Алоқалар схемаси" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Мундарижа" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Атрибутлар" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Қўшимча" @@ -9084,7 +9172,7 @@ msgstr "Номаълум тил: %1$s." msgid "Current Server" msgstr "Жорий сервер" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Манба база" @@ -9102,7 +9190,7 @@ msgstr "Масофадаги сервер" msgid "Difference" msgstr "Фарқ" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Нишон база" @@ -9121,7 +9209,7 @@ msgstr "\"%s\" серверида SQL-сўров(лар)ни бажариш" msgid "Run SQL query/queries on database %s" msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)ни бажариш" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Тозалаш" @@ -9132,11 +9220,11 @@ msgstr "Тозалаш" msgid "Columns" msgstr "Майдон номлари" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Барча фойдаланувчиларга рухсат бериш" @@ -9231,7 +9319,7 @@ msgstr "" "SQL синтаксисини текшириб бўлмади. PHP учун зарур кенгайтмалар " "ўрнатилганлигини текширинг, батафсил маълумот учун %sдокументацияга%s қаранг." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." @@ -9264,8 +9352,8 @@ msgstr "" "ишлатманг." #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Индекс" @@ -9319,13 +9407,13 @@ msgstr "Йўқ" msgid "As defined:" msgstr "Қоидага кўра:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Бирламчи" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Матн тўлалигича" @@ -9339,20 +9427,20 @@ msgstr "" msgid "after %s" msgstr "\"%s\" дан кейин" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %s column(s)" msgstr "Устун(лар) қўшиш" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Ҳеч бўлмаганда битта майдон киритиш шарт." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Жадвал тури" @@ -9360,45 +9448,6 @@ msgstr "Жадвал тури" msgid "PARTITION definition" msgstr "Бўлакларни (PARTITIONS) белгилаш" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Қидириш" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Майдонни танланг (камида битта):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Қидириш шартини кўшиш (яъни \"where\" жумласи):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Саҳифадаги қаторлар сони" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Сортировка:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Ташқи қийматларни кўриб чиқиш" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "\"Намунадаги сўровни бажариш\" (ўрнига қўйиш белгиси: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9593,13 +9642,13 @@ msgstr "" msgid "Manage your settings" msgstr "Бошқа созланишлар" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "Ўзгариришлар сақланди" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9612,7 +9661,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9645,7 +9694,7 @@ msgstr "MySQL билан уланишни чоғиштириш" msgid "Appearance Settings" msgstr "Бошқа созланишлар" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "settings" msgid "More settings" @@ -9671,9 +9720,9 @@ msgstr "Версияларни кўрсатиш" msgid "Protocol version" msgstr "Протокол версияси" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Фойдаланувчи" @@ -9830,148 +9879,148 @@ msgstr "" "Сервер \"Suhosin\" ҳимоя тизимадан фойдаланмоқда. Юзага келган муаммолар " "ечими учун \"%s\"документация\"%s\" га қаранг." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Маълумотлар базаси мавжуд эмас" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "жадвал номи" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "жадвал номи" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Жадвал тузиш" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Маълумотлар базасини танланг" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Чап менюни кўрсатиш/яшириш" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Жадваллар жойлашишини сақлаш" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Боғлиқлик ўрнатиш" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Қайта юклаш" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Ёрдам" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Бурчакли боғланишлар" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "Тўғридан-тўғри боғланишлар" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "Тўрга боғлаб қўйиш" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Барча жадваллар кўрсатилишини Тахлаш/Тиклаш" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Тескари кўрсатиш" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "Алоқани танлаш учун расмда кўрсатилганикаби уланиш нуқтасига босинг:" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "PDF-схемага/схемадан жадвал координаталарини импорт/экспорт қилиш" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "сўровни бажариш" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Менюни кўчириш" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Барча жадвалларни яшириш/кўрсатиш" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Алоқа мавжуд бўлмаган жадвалларни яшириш/кўрсатиш" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Жадваллар сони" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Боғлиқликни ўчириш" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Алоқа ўчирилди" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Экспорт" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "сўров бўйича" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy #| msgid "Rename view to" msgid "Rename to" msgstr "Кўриниш номини ўзгартириш" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Фойдаланувчи номи" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Тузиш" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -9985,61 +10034,61 @@ msgstr "Саҳифа тузилди" msgid "Page creation failed" msgstr "Саҳифа тузиб бўлмади" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "саҳифалар сони " -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Файлларни импорт қилиш" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Масштаб" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Янги индекс тузиш" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Фойдаланувчи номи" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Масштаб" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "тавсия этилган" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Хатолик: Боғлиқлик аллақачон мавжуд." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Ташқи калитга (FOREIGN KEY) алоқа ўрнатилди" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Ички алоқа ўрнатилди" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Алоқа ўчирилди" @@ -10051,97 +10100,97 @@ msgstr "Координаталарни сақлашда хатолик." msgid "Modifications have been saved" msgstr "Ўзгариришлар сақланди" -#: prefs_forms.php:82 +#: prefs_forms.php:85 #, fuzzy #| msgid "Submitted form contains errors" msgid "Cannot save settings, submitted form contains errors" msgstr "Берилган формада хатолар мавжуд" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "\"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади." -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Файлларни импорт қилиш" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 #, fuzzy #| msgid "Other core settings" msgid "You have no saved settings!" msgstr "Бошқа созланишлар" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 #, fuzzy #| msgid "Server configuration" msgid "Merge with current configuration" msgstr "Сервер конфигурацияси" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Файлларни импорт қилиш" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Барча" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "\"%s\" жадвали топилмади ёки \"%s\"да ўрнатилмаган" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -10151,17 +10200,17 @@ msgstr "\"%s\" жадвали мавжуд эмас!" msgid "Select binary log to view" msgstr "Кўриш учун бинар журнални танланг" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Файллар сони" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "Сўровларни қисқартириб кўрсатиш" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "Сўровларнинг кенгайтирилган кўриниши" @@ -10177,7 +10226,7 @@ msgstr "Позиция" msgid "Original position" msgstr "Асл позиция" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Маълумот" @@ -10185,31 +10234,31 @@ msgstr "Маълумот" msgid "Character Sets and Collations" msgstr "Кодировкалар ва таққослашлар" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "\"%s\" маълумотлар базаси муваффақиятли ўчирилди." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Маълумотлар базаси статискаси" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Бош сервер репликацияси" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Тобе сервер репликацияси" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Статискани ёқиш" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10221,156 +10270,156 @@ msgstr "" msgid "Storage Engines" msgstr "Жадвал турлари" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Маълумотлар базалари дампини (схемасини) намойиш этиш" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Боши" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Версия" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Фаолсизлантирилган" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "GRANT дан ташқари барча привилегияларни ўз ичига олади" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Мавжуд жадвалларнинг тузилишини ўзгартиришга рухсат беради" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Янги маълумотлар базалари ва жадваллар тузишга рухсат беради" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Сақланадиган муолажалар тузишга рухсат беради" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Янги жадваллар тузишга рухсат беради" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Вақтинчалик жадваллар тузишга рухсат беради" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "Фойдаланувчилар ҳисобини қўшиш, ўчириш ва ўзгартиришга рухсат беради" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Янги намойишлар тузиш(CREATE VIEW)га рухсат беради" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Маълумотларни ўчиришга рухсат беради" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Маълумотлар базаларини ва жадвалларни ўчиришга рухсат беради" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Жадвалларни ўчиришга рухъсат беради" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Кечиктирилган ҳодисаларни созлашга рухсат беради" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Маълумотларни файлдан импорт ва файлга экспорт қилишга рухсат беради" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Фойдаланувчиларни қўшиш ва привилегиялар жадвалини қайта юкламасдан " "привилегиялар қўшишга рухсат беради" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Индекслар қўшиш ва уларни ўчиришга рухсат беради" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Маълумот қўйиш ва ўзгартиришга рухсат беради" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Фойдаланувчи бир соат давомида ўрнатиши мумкин бўлган янги уланишлар сони" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "Фойдаланувчи бир соат давомида юбориши мумкин бўлган сўровлар сони" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -10378,64 +10427,64 @@ msgstr "" "Фойдаланувчи бир соат давомида бажариши мумкин бўлган бирон-бир жадвал ёки " "маълумотлар базасини ўзгартирадиган буйруқлар сони" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Бир фойдаланувчи томонидан бир вақтнинг ўзида ўрнатиши мумкин бўлган " "уланишлар сони" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Барча фойдаланувчиларнинг жараёнларини кўришга рухсат беради" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "MySQL-сервернинг ушбу версияда бундай хусусият мавжуд эмас!" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Сервер созланишларини қайта юклашга ва унинг кешларини тозалашга рухсат " "беради" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Бош ва тобе серверларнинг жойлашиши ҳақидаги маълумотни талаб қилишга рухсат " "беради" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "Репликация (захира нусха кўчириш) вақтида тобе серверлар учун керак" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Маълумотларни чақиришга рухсат беради" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Маълумотлар базаларининг тўлиқ рўйхатига рухсат беради" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Намойиш тузадиган сўров(SHOW CREATE VIEW)ни бажаришга рухсат беради" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Сервер ишини якунлашга рухсат беради" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -10445,178 +10494,178 @@ msgstr "" "(Кўпгина административ вазифаларни бажариш учун керак, масалан, глобал " "ўзгарувчилар ўрнатиш ёки бошқа фойдаланувчи жараёнини ўчириш)" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" "Триггерлар (маълум шартлар бажарилганда автоматик ишга тушадиган жараёнлар) " "тузиш ва уларни ўчиришга рухсат беради" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Маълумотларни ўзгартиришга рухсат беради" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Привилегиялар йўқ" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Йўқ" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Жадвал даражасижаги привилегиялар" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "ИЗОҲ: MySQL привилегиялари турлари инглиз тилида кўрсатилади." -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Администрация" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Глобал привилегиялар" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Маълумотлар базаси привилегиялари" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Ресурслардан фойдаланишни чеклаш" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "ИЗОҲ: параметр қийматларини 0 (нол) деб белгилаш мавжуд чеклашларни бекор " "қилади." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Фойдаланувчи ҳисоби ҳақида маълумот" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Паролни ўзгартирмаслик" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Биронта ҳам фойдаланувчи топилмади." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" номли фойдаланувчи мавжуд!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Сиз янги фойдаланувчи қўшдингиз." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "\"%s\" учун привилегиялар ўзгартирилди." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "\"%s\" фойдаланувчининг привилегиялари бекор қилинди." -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" фойдаланувчининг пароли муваффақиятли ўзгартирилди." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "\"%s\" ўчирилмоқда" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "Ўчириш лозим бўлган фойдаланувчилар танланмаган!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Привилегиялар қайта юкланмоқда" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Привилегиялар муваффақиятли қайта юкланди." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Привилегияларни таҳрирлаш" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Бекор қилиш" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Экспорт" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Ҳар қайси" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Привилегиялар" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Привилегиялар" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни " "ўчириш." -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10629,139 +10678,139 @@ msgstr "" "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Майдон привилегиялари" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Қуйидаги маълумотлар омборига привилегия қўшиш" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Маълумотлар базалари номларида пастки чизиқ (_) ва фоиз (%) белгилари " "ишлатилганда улар олдига тескари эгри чизиқ (\\) қўйиш керак." -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Қуйидаги жадвалга привилегия қўшиш" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "ва эскисини сақлаш." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "ва фойдаланувчилар жадвалидан эскисини ўчириш." -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш." -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" ", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "" "Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ " "привилегияларни бериш." -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига " "тўлиқ привилегияларни бериш." -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" маълумотлар базасига барча привилегияларни бериш;" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "Глобал" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "Маълумотлар базаси даражасида" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "Гуруҳлаш белгиси" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "\"%s\" намойиши ўчирилди" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Номаълум хатолик" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "%s бош серверига уланиб бўлмади." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Бош сервер позициясини ўқиб бўлмади. Сервердаги привилегиларда муаммо бўлиши " "мумкин." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Бош серверни ўзгартириб бўлмади" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "Бош репликация сервери қуйидагига ўзгартирилди: %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Уланган бош серверларни кўрсатиш" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Уланган тобе серверларни кўрсатиш" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10770,11 +10819,11 @@ msgstr "" "Ушбу сервер репликация жараёнида \"бош сервер\" деб конфигурация қилинмаган. " "Сиз уни конфигурация қилмоқчимисиз?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Бош сервер конфигурацияси" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10788,19 +10837,19 @@ msgstr "" "бермаслик ва баъзиларини репликация қилишни (бир нечта базаларнигина " "репликация қилишда фойдали) танлашингиз мумкин. Репликация усулини танланг:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Барча базаларни репликация қилиш; Қуйидагилардан ташқари:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Барча базаларга эътибор бермаслик; Қуйидагилардан ташқари:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Базаларни танланг:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10808,7 +10857,7 @@ msgstr "" "Энди қуйидаги қаторларни \"my.cnf\" файлининг охирига қўшинг ва MySQL " "серверини қайта юкланг." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10818,74 +10867,74 @@ msgstr "" "ушбу сервер \"бош сервер\" деб конфигурация қилинганлиги ҳақидаги маълумотни " "кўришингиз керак." -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Тобе SQL Оқими ишламаяпти!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Тобе кириш/чиқиш оқими ишламаяпти!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация қилинган. " "Қуйидаги амаллардан бирини танланг:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Тобе сервер статуси жадвалини кўриш" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Базаларни бош сервер билан синхронизация қилиш" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Тобе серверни назорат қилиш:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Барчасини бошлаш" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Барчасини тўхтатиш" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Тобе серверни тиклаш" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "SQL Thread %s only" msgid "Start SQL Thread only" msgstr "Фақат %s SQL кириш/чиқиш оқимини" -#: server_replication.php:358 +#: server_replication.php:359 #, fuzzy #| msgid "SQL Thread %s only" msgid "Stop SQL Thread only" msgstr "Фақат %s SQL кириш/чиқиш оқимини" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "IO Thread %s only" msgid "Start IO Thread only" msgstr "Фақат %s қириш/чиқиш оқимини" -#: server_replication.php:363 +#: server_replication.php:364 #, fuzzy #| msgid "IO Thread %s only" msgid "Stop IO Thread only" msgstr "Фақат %s қириш/чиқиш оқимини" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Хатоликларни бошқариш:" -#: server_replication.php:370 +#: server_replication.php:371 #, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -10893,19 +10942,19 @@ msgstr "" "Хатолик(лар)ни ташлаб кетиш бош ва тобе серверларнинг тўла синхронизация " "қилинмаганлигига олиб келиши мумкин!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Жорий хатоликларни ташлаб кетиш" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Кейингисини ташлаб кетиш" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "хатоликлар." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10914,163 +10963,163 @@ msgstr "" "Ушбу сервер репликация жараёнида \"тобе сервер\" деб конфигурация " "қилинмаган. Сиз уни конфигурация қилмоқчимисиз?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "\"%s\" жараёни муваффақиятли якунланди." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin \"%s\" оқим ишини тугута олмади. Эҳтимол, у аллақачон ёпиқ." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Қайта ишловчи дастур" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "Сўровлар кеши" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Оқимлар" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Вақтинчалик маълумотлар" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Кечиктирилган қўйилмалар" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Индекс кеши" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Бирлашишлар" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Сортировка" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Транзакциялар координатори" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Барча жадвалларни ёпиш" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Очиқ жадваллар рўйхати" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Тобе серверлар ҳақида маълумот" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Репликация сервери аҳволи ҳақида маълумот" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "Сўровлар кешини дефрагментация қилиш" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "MySQL-сервернинг ҳозирги ҳолати" -#: server_status.php:793 +#: server_status.php:792 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Тобе сервер статуси жадвалини кўриш" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Янгилаш" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Фильтр" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Паролни ўзгартирмаслик" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Очиқ жадваллар рўйхати" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Очиқ жадваллар рўйхати" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Алоқалар" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "Сўров тури" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Функциялар" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -11078,33 +11127,33 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Бошланғич саҳифани созлаш" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Тавсиф" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -11112,19 +11161,19 @@ msgid "" "b> process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:1078 +#: server_status.php:1077 #, 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:1080 +#: server_status.php:1079 #, 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:1083 +#: server_status.php:1082 #, fuzzy #| msgid "" #| "s MySQL server works as %s in replication process. For further " @@ -11138,11 +11187,11 @@ msgstr "" "сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот " "учун, <a href=\"#replication\">репликация бўлими</a>га киринг." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Репликация статуси" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11150,47 +11199,47 @@ msgstr "" "Юқори юкламага эга бўлган серверларда ҳисоблагич тўлиб қолиши мумкин, шунинг " "учун, MySQL сервери берган статистик маълумотлар нотўғри бўлиши мумкин." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Қабул қилинди" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Юборилди" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "Максимал уланишлар сони" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Муваффақиятсиз уринишлар сони" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Узилди" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Буйруқ" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -11199,16 +11248,16 @@ msgstr "" "Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз " "ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони." -#: server_status.php:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "Бинар журнал кешини ишлатган транзакциялар сони." -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -11221,11 +11270,11 @@ msgstr "" "сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини " "ошириш тавсия этилади." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11233,7 +11282,7 @@ msgstr "" "Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик " "тузилган вақтинчалик жадваллар сони." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11241,31 +11290,31 @@ msgstr "" "\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар " "(масалан, калитлар такрорланиши оқибатида) сони." -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" "Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган " "қаторлар сони." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Бажарилган \"FLUSH\" буйруқлар сони." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Ички \"COMMIT\" буйруқлари сони." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони." -#: server_status.php:1334 +#: 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 " @@ -11275,7 +11324,7 @@ msgstr "" "бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган " "жадваллар сони." -#: server_status.php:1335 +#: 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, " @@ -11284,7 +11333,7 @@ msgstr "" "Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати " "катта бўлса, сервер бир неча маротиба индексни кўриб чиқади." -#: server_status.php:1336 +#: server_status.php:1335 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." @@ -11293,7 +11342,7 @@ msgstr "" "Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан " "далолат беради." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -11303,7 +11352,7 @@ msgstr "" "Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш " "вақтида ўзгарувчи қиймати ошади." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11312,7 +11361,7 @@ msgstr "" "бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... " "DESC." -#: server_status.php:1339 +#: 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 " @@ -11325,7 +11374,7 @@ msgstr "" "чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри " "фойдаланадиган бирлашмаларнинг мавжудлиги." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -11337,35 +11386,35 @@ msgstr "" "индексланганлигини ёки сўровлар индексларнинг афзалликларидан " "фойдаланмаётганлигини билдиради." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ички буйруқлар сони." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони." -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони." -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "\"Кир\" саҳифаларнинг жорий сони." -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони." -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Бўш саҳифалар сони." -#: server_status.php:1348 +#: 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 " @@ -11375,7 +11424,7 @@ msgstr "" "устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра " "тозалаш ёки ўчириш имконияти йўқ." -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -11387,11 +11436,11 @@ msgstr "" "\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)." -#: server_status.php:1351 +#: 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." @@ -11400,7 +11449,7 @@ msgstr "" "сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй " "беради." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11409,12 +11458,12 @@ msgstr "" "сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй " "беради" -#: server_status.php:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони." -#: server_status.php:1354 +#: 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." @@ -11422,7 +11471,7 @@ msgstr "" "InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга " "бўлган кетма-кет сўровлар сони." -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -11435,51 +11484,51 @@ msgstr "" "Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми " "тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак." -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Тугалланмаган \"fsync()\" операциялари сони." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Тугалланмаган ўқиш операциялари сони." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Тугалланмаган ёзиш операциялари сони." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Умумий маълумотларни ўқиш операциялари сони." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Умумий маълумотларни ёзиш операциялари сони." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони." -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "Бажарилган \"doublewrite\" операциялари сони." -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -11487,35 +11536,35 @@ msgstr "" "Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган " "ёзувлар сони" -#: server_status.php:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Журналга ёзишга бўлган сўровларсони." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Журнал файлидаги жисмоний ёзувлар сони." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Тугалланмаган журналга ёзиш сўровлари сони." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Тузилган саҳифалар сони." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -11524,51 +11573,51 @@ msgstr "" "Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, " "уларни байтларга ўтказиш мумкин." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "Ўқилган саҳифалар сони." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Ёзилган саҳифалар сони." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Ҳозирда кутилаётган қатор блокировкалари сони." -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)." -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)." -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)." -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "Умумий кутилаётган қатор блокировкалари сони." -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB жадвалидан ўчирилган қаторлар сони." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB жадвалига ёзилган қаторлар сони." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB жадвалларидан ўқилган қаторлар сони." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB жадвалларида янгиланган қаторлар сони." -#: server_status.php:1387 +#: 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." @@ -11576,7 +11625,7 @@ msgstr "" "Индекс кешидаги ўзгартирилган, лекин ҳали дискка ёзилмаган блоклар сони. " "Ушбу параметр, шунингдек, \"Not_flushed_key_blocks\" номи билан ҳам маълум." -#: server_status.php:1388 +#: 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." @@ -11584,7 +11633,7 @@ msgstr "" "Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши " "ишлатилиш даражасини белгилайди." -#: server_status.php:1389 +#: server_status.php:1388 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 " @@ -11593,17 +11642,17 @@ msgstr "" "Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида " "ишлатилиши мумкин бўлган блоклар сонини билдиради." -#: server_status.php:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Импорт қилинаётган файл формати" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони." -#: server_status.php:1392 +#: 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 " @@ -11614,26 +11663,26 @@ msgstr "" "қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти " "қуйидагича ҳисобланди: Key_reads/Key_read_requests." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони." -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони." -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -11644,19 +11693,19 @@ msgstr "" "эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров " "компиляция жараёни бажарилмаганлигини билдиради." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" " "сўровларида қўйилишини кутаётган қаторлар сони." -#: server_status.php:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11664,42 +11713,42 @@ msgstr "" "Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта " "бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Очиқ файллар сони." -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" "()\" функцияси ёрдамида очилган файлга айтилади." -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Очиқ жадваллар сони." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "Сўровлар кеши учун бўш хотира ҳажми" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "" "Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан " "қониқтирилган сўровлар сони." -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "Сўровлар кешига қўшилган сўровлар сони." -#: server_status.php:1408 +#: 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 " @@ -11711,7 +11760,7 @@ msgstr "" "кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги " "ишлатилган) стратегиясидан фойдаланади" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11719,19 +11768,19 @@ msgstr "" "Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида " "сўндирилган сўровлар сони." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Кешда регистрация қилинган сўровлар сони." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -11739,13 +11788,13 @@ msgstr "" "Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати " "0 бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "" "Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда " "бажарилган бирлашма сўровлар сони." -#: server_status.php:1415 +#: 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.)" @@ -11754,7 +11803,7 @@ msgstr "" "ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 " "бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11763,17 +11812,17 @@ msgstr "" "сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса " "ҳам, унчалик муҳим эмас." -#: server_status.php:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "" "Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " "бирлашма сўровлар сони." -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони." -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11781,13 +11830,13 @@ msgstr "" "Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта " "транзакцияларнинг умумий сони." -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган " "бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади." -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11795,12 +11844,12 @@ msgstr "" "Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар " "сони." -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони." -#: server_status.php:1423 +#: server_status.php:1422 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 " @@ -11810,25 +11859,25 @@ msgstr "" "қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш " "зарур." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Сортировка қилинган қаторлар сони" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "" "Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари " "сони." -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони." -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -11840,7 +11889,7 @@ msgstr "" "пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал" "(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11851,11 +11900,11 @@ msgstr "" "ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" " "ўзгарувчисининг қийматини ошириш зарур." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Очиқ жорий уланишлар сони." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11867,74 +11916,74 @@ msgstr "" "ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам " "оширмайди)." -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Кузатиш фаол эмас." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Фаол ҳолатда бўлган жараёнлар сони." -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Бошлаш" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Индекс(лар)ни сақлаш" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Янгилаш" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR майдонидаги устунлар сони" -#: server_status.php:1627 +#: server_status.php:1626 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Хатоликларни бошқариш:" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Асл қийматларни тиклаш" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -11943,7 +11992,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11951,18 +12000,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -11970,11 +12019,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11982,218 +12031,218 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: server_status.php:1680 +#: server_status.php:1679 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "Тобе сервер статуси жадвалини кўриш" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Жадвалларни танланг" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Жадвал номи нотўғри" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Янги фойдаланувчи қўшиш" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL сўровлари" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Статискани кўрсатиш" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Жадвалларни танланг" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "Сўров тури" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "секундига" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "ишлатилмоқда" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Манбага уланиб бўлмади" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Нишонга уланиб бўлмади" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' номли база мавжуд эмас." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Тузилишни синхронизация қилиш" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Маълумотлар синхронизацияси" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "Мавжуд эмас" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Тузилишдаги фарқ" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Маълумотлар фарқи" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Устун(лар) қўшиш" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Устун(лар)ни олиб ташлаш" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Устун(лар)ни ўзгартириш" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Индекс(лар)ни олиб ташлаш" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Индекс(лар)ни сақлаш" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Қатор(лар)ни янгилаш" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Қатор(лар) қўшиш" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Нишон жадвалдаги барча олдинги қаторларни ўчирмоқчимисиз?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Киритилган ўзгаришларни сақлаш" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Базаларни синхронизация қилиш" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Танланган жадваллар манба жадваллар билан синхронизация қилинди." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Нишон база манба база билан синхронизация қилинди" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL сўровлари" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Нохавфсиз уланиш" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Конфигурацион файл" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Сокет" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -12201,19 +12250,19 @@ msgstr "" "Нишон база манба база билан тўлиқ синхронизация қилинади. Манба база " "ўзгаришсиз қолади." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Сервер ўзгарувчилари ва созланишлари" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Сессия қийматлари" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Глобал қиймат" @@ -12607,187 +12656,187 @@ msgstr "Калит ҳарфлар, рақамлар [em]ва[/em] махсус msgid "Wrong data" msgstr "Маълумотлар базаси мавжуд эмас" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "PHP-код сифатида кўрсатиш" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL тўғрилигини текшириш" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL сўрови натижаси" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Тузилган" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` жадвалидаги индексларда муаммо мавжуд" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Хатчўп белгиси" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s жадвали муваффақиятли ўзгартирилди" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Мар" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Майдон номлари" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Жадвал турлари" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "ПБ" -#: tbl_chart.php:93 +#: tbl_chart.php:96 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Қисилган" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Ҳисобот сарлавҳаси" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL сўровлари" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Қиймати" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Қиймати" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "\"%s\" номли жадвал мавжуд!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "%1$s жадвали тузилди." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Жадвал дампини (схемасини) намойиш этиш" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Сервер танловини кўрсатиш" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "CHAR textarea columns" msgid "Label column" msgstr "CHAR майдонидаги устунлар сони" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- йўқ -" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Журнал файллари сони" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Файл каби сақлаш" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12805,32 +12854,32 @@ msgstr "Индексни \"PRIMARY\"га қайта номлаб бўлмади! msgid "No index parts defined!" msgstr "Индекс қисмлари белгиланмаган!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Apply index(s)" msgid "Add index" msgstr "Индекс(лар)ни сақлаш" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Таҳрирлаш усули" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Индекс номи:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" номи фақат бирламчи индексгаэга бўлиши шарт!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Индекс тури:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "\"%s\" майдон(лар)ини индексга қўшиш" @@ -12853,162 +12902,162 @@ msgstr "\"%s\" жадвали \"%s\" га кўчирилди." msgid "Table %s has been copied to %s." msgstr "\"%s\" жадвалидан \"%s\" га нусха кўчирилди." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Жадвал номи кўрсатилмаган!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Жадвал сортировкасини ўзгартириш" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(устун)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Жадвални (маълумотлар базаси.жадвал) га кўчириш:" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Жадвал параметрлари" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Жадвал номини ўзгартириш" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Жадвалдан (маълумотлар омбори.жадвал) га нусха кўчириш:" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Нусха олинган жадвалга ўтиш" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Жадвалга хизмат кўрсатиш" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Жадвални дефрагментациялаш" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "\"%s\" жадвали кеши янгиланди" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Жадвал кешини янгилаш (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy #| msgid "Go to database" msgid "Delete the table (DROP)" msgstr "Ушбу базага ўтиш" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "бўлакларга хизмат кўрсатиш" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "\"%s\" бўлаги" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Таҳлил" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Текшириш" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Оптимизация" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Қайта қуриш" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Тиклаш" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Бўлакларни (PARTITIONS) ўчириш" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Маълумотлар яхлитлигини текшириш:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Жадвалларни кўрсатиш" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Фойдаланилаётган жой" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Эффективлик" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Қаторлар статистикаси" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "статик" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "динамик" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Қатор узунлиги" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Қатор ҳажми" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" " %1$s да ташқи калит (FOREIGN KEY) тузишда хатолик (маълумот турини " "текширинг)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Ички алоқалар" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -13016,121 +13065,121 @@ msgstr "" "Агар ташқи калит (FOREIGN KEY) орқали алоқа мавжуд бўлса, ички алоқа ўрнатиш " "шарт эмас." -#: tbl_relation.php:412 +#: tbl_relation.php:415 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" msgstr "Ташқи калит чегаралари" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Турли қийматларни кўриб чиқиш" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Apply index(s)" msgid "Add SPATIAL index" msgstr "Индекс(лар)ни сақлаш" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Йўқ" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "\"%s\" жадвали ўчирилди" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "\"%s\" га бирламчи калит қўшилди" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "\"%s\" учун индекс қўшилди" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show versions" msgid "Show more actions" msgstr "Версияларни кўрсатиш" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Устун(лар)ни олиб ташлаш" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Чоп этиш версияси" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Алоқаларни кўриш" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Жадвал тузилиши таҳлили" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Устун(лар) қўшиш" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Жадвал охирига" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Жадвал бошига" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "\"%s\" дан кейин" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, fuzzy, php-format #| msgid "Create an index on %s columns" msgid "Create an index on  %s columns" msgstr "\"%s\" майдон учун индекс тузиш" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "бўлакларга бўлинган" @@ -13297,78 +13346,40 @@ msgstr "Ушбу маълумотлар бошқаруви операторла msgid "Create version" msgstr "Версиясини тузиш" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "\"Намунадаги сўровни бажариш\" (ўрнига қўйиш белгиси: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "SQL Query box" -msgid "Additional search criteria" -msgstr "SQL сўровлари қутиси" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -#, fuzzy -#| msgid "Maximum number of rows to display" -msgid "Maximum rows to plot" -msgstr "Кўрсатиладиган қаторларнинг максимал сони" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -#| msgid "Control user" -msgid "How to use" -msgstr "Назорат фойдаланувчиси" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Тозалаш" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Кўпроқ мавзуга эга бўлинг!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Мавжуд MIME турлари" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Курсив билан белгиланган MIME турлари алоҳида ўгириш функцияларига эга эмас" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Мавжуд ўгиришлар" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Тавсифи" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ушбу саҳифага кириш учун Сизда етарли ҳуқуқ мавжуд эмас!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Профил янгиланди." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Ном кўриниши" diff --git a/po/uz@latin.po b/po/uz@latin.po index 0386e8cd83..6a363827c1 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-03-14 14:57+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: uzbek_latin \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 0.6\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "Barchasini ko‘rsatish" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "Sahifa raqami:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -38,58 +38,58 @@ msgstr "" "yopilgan yoki brauzer xavfsizlik yuzasidan oynalararo yangilashni blokirovka " "qilmoqda" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "OK" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "Indeks nomi" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "Tavsifi" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "Ushbu qiymatni ishlatish" @@ -105,90 +105,91 @@ msgstr "" msgid "Database %1$s has been created." msgstr "%1$s ma`lumotlar bazasi tuzildi." -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "Ma`lumotlar bazasiga izoh: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "Jadval izohi" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 #, fuzzy #| msgid "Column names" msgid "Column" msgstr "Maydon nomlari" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "Null" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "Andoza" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "Aloqalar" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "Izohlar" @@ -197,14 +198,14 @@ msgstr "Izohlar" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "Yo‘q" @@ -217,126 +218,126 @@ msgstr "Yo‘q" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "Ha" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "Ma`lumotlar bazasi dampini (sxemasini) namoyish etish" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "Barchasini belgilash" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "Belgilashni bekor qilish" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "Ma`lumotlar bazasi nomi bo‘sh!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "`\"%s\"` ma`lumotlar bazasining nomi `\"%s\"` deb o‘zgartirildi." -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi." -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:470 +#: db_operations.php:476 #, fuzzy #| msgid "Rename database to" msgid "Remove database" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "\"%s\" ma`lumotlar ombori o‘chirildi." -#: db_operations.php:487 +#: db_operations.php:493 #, fuzzy #| msgid "Go to database" msgid "Drop the database (DROP)" msgstr "Ushbu bazaga o‘tish" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "Faqat tuzilishi" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "Tuzilishi va ma`lumotlari" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "Faqat ma`lumotlar" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "Nusxa ko‘chirishdan oldin ma`lumotlar bazasi tuzing (CREATE DATABASE)" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "\"%s\" qo‘shish" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "AUTO_INCREMENT qo‘shish" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "Cheklovlar qo‘shish" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "Taqqoslash" -#: db_operations.php:599 +#: db_operations.php:605 #, fuzzy, php-format #| msgid "" #| " additional features for working with linked tables have been ctivated. " @@ -348,61 +349,61 @@ msgstr "" "Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. " "Sabablarini aniqlash uchun %sbu yerga%s bosing." -#: db_operations.php:633 +#: db_operations.php:639 #, fuzzy #| msgid "Relational schema" msgid "Edit or export relational schema" msgstr "Aloqalar sxemasi" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "Jadval" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "Qatorlarsoni" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "Hajmi" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "ishlatilmoqda" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "Tuzish" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "Oxirgi yangilanish" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "Oxirgi tekshiruv" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%s table" @@ -414,122 +415,122 @@ msgstr[1] "Jadvallar soni: \"%s\"" msgid "You have to choose at least one column to display" msgstr "So‘rovni bajarish uchun, maydon/maydonlar tanlangan bo‘lishi kerak." -#: db_qbe.php:189 +#: db_qbe.php:179 #, fuzzy, php-format #| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Nusxa olingan jadvalga o‘tish" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "Sortirovka qilish" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "O‘sish tartibida" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "Kamayish tartibida" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "Ko‘rsatish" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "Kriteriy" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "Qo‘yish" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "Va" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "O‘chirish" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "Yoki" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "O‘zgarirish" -#: db_qbe.php:609 +#: db_qbe.php:600 #, fuzzy #| msgid "Add/Delete Criteria Row" msgid "Add/Delete criteria rows" msgstr "Qator qo‘shish/o‘chirish" -#: db_qbe.php:621 +#: db_qbe.php:612 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add/Delete columns" msgstr "Ustun qo‘shish/o‘chirish" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "So‘rovni yangilash" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "Jadvallarni ishlatish" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "so‘rovni bajarish" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "Ruxsat berilmadi" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "so‘zlardan biri" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "barcha so‘zlar" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "aniq moslik" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "muntazam ibora" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "\"\"%s\"\" uchun qidiruv natijalari \"%s\":" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match(es) inside table %s" msgid "%1$s match inside table %2$s" @@ -537,31 +538,31 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: 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:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, fuzzy, php-format #| msgid "Total: %s match(es)" msgid "Total: %s match" @@ -569,72 +570,72 @@ msgid_plural "Total: %s matches" msgstr[0] "Jami: \"%s\" o‘xshashlik" msgstr[1] "Jami: \"%s\" o‘xshashlik" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "Ma`lumotlar bazasida qidirish" -#: db_search.php:292 +#: db_search.php:295 #, 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:297 +#: db_search.php:300 msgid "Find:" msgstr "Izlash:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "So‘zlar bo‘sh joy (\" \") yordamida bo‘lingan." -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "Quyidagi jadval(lar)da qidirish:" -#: db_search.php:345 +#: db_search.php:348 #, fuzzy #| msgid "Inside field:" msgid "Inside column:" msgstr "Quyidagi maydon(lar)da qidirish: " -#: db_structure.php:84 +#: db_structure.php:87 #, fuzzy #| msgid "No tables found in database." msgid "No tables found in database" msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "noma`lum" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "\"%s\" jadvali tozalandi" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "\"%s\" namoyishi o‘chirildi" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "\"%s\" jadvali o‘chirildi" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "Kuzatish faol." -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "Kuzatish faol emas." -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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" @@ -643,191 +644,192 @@ msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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 "Namoyish" -#: db_structure.php:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "Replikatsiya (zaxira nusxa ko‘chirish)" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "Jami" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, 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:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "Belgilanganlarni:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "Barchasini belgilash" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "Chop etish versiyasi" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "Tozalash" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "O‘chirish" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "Jadvalni tekshirish" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "Jadvalni optimallashtirish" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "Jadvalni tiklash" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "Jadval tahlili" -#: db_structure.php:719 +#: db_structure.php:717 #, fuzzy #| msgid "Go to table" msgid "Add prefix to table" msgstr "Ushbu jadvalga o‘tish" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 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:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 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:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "Ma`lumotlar lug‘ati" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "Kuzatilgan jadvallar" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "Ma`lumotlar bazasi" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "Oxirgi vеrsiya" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "Tuzildi" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "Yangilandi" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "Holat" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "Amal" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "faol" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "faol emas" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "Vеrsiyalar" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "Kuzatish hisoboti" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "Tuzilma rasmi" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "Kuzatilmagan jadvallar" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "Jadvalni kuzatish" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "Baza log faylini" @@ -841,18 +843,18 @@ msgstr "So‘rov turi" msgid "Selected export type has to be saved in file!" msgstr "Belgilangan eksport turi faylga saqlanishi shart!" -#: export.php:119 +#: export.php:118 #, fuzzy #| msgid "Apply index(s)" msgid "Bad parameters!" msgstr "Indеks(lar)ni saqlash" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "\"%s\" faylini saqlash uchun diskda yetarli joy mavjud emas." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." @@ -860,12 +862,12 @@ msgstr "" "\"%s\" fayli serverda mavjud, uning nomini o‘zgartiring yoki qayta yozish " "parametrini yoqing." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "\"%s\" faylini veb-serverga saqlash uchun huquqlar yetarli emas." -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "Damp \"%s\" faylida saqlandi." @@ -876,104 +878,104 @@ msgstr "Damp \"%s\" faylida saqlandi." msgid "Invalid export type" msgstr "Jadvallarni eksport qilish" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Apply index(s)" msgid "Add a point" msgstr "Indеks(lar)ni saqlash" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Qatorlar bo‘luvchisi" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "Yangi foydalanuvchi qo‘shish" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "Yangi foydalanuvchi qo‘shish" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add column(s)" msgid "Add a polygon" msgstr "Ustun(lar) qo‘shish" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add a new server" msgid "Add geometry" msgstr "Yangi foydalanuvchi qo‘shish" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: import.php:86 #, php-format msgid "" "You probably tried to upload too large file. Please refer to %sdocumentation" @@ -982,21 +984,21 @@ msgstr "" "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning " "usullari %sdokumentatsiyada%s keltirilgan." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "Xatcho‘plarni ko‘rsatish" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "Xatcho‘p o‘chirildi." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "Faylni o‘qib bo‘lmadi!!" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -1006,7 +1008,7 @@ msgstr "" "mavjud emas, shuning uchun ushbu faylni import qilib bo‘lmaydi. Agar dastur " "mavjud bo‘lsa, demak u konfiguratsiya vaqtida o‘chirib qo‘yilgan." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -1017,28 +1019,28 @@ msgstr "" "qiymatdan katta. Qarang: [a@./Documentation.html#faq1_16@Documentation]FAQ " "1.16[/a]." -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "" "Import modullari mavjud emas! O‘rnatilgan phpMyAdmin nusxasining libraries/" "export katalogini tekshiring." -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" xatcho‘pi tuzildi" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "Import muvaffaqiyatli tugatildi, bajarilgan so‘rovlar soni: %d." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." @@ -1047,7 +1049,7 @@ msgstr "" "unda o‘sha faylni tanlagan holda uni qayta ishga tushiring va jarayon " "uzilgan joydan boshlab davom etadi." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1056,25 +1058,25 @@ msgstr "" "Odatda, bu hol, php-ssenariylar uchun ajratilgan vaqt oshirilmaguncha " "phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi." -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "Orqaga" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "" "phpMyAdmin ishlashi uchun freymlar bilan ishlay oladigan brauzer " "kerak." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" "\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan." @@ -1085,7 +1087,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!" @@ -1136,7 +1138,7 @@ msgstr "Indеks(lar)ni saqlash" msgid "Edit Index" msgstr "Tahrirlash usuli" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add column(s)" msgid "Add %d column(s) to index" @@ -1157,16 +1159,16 @@ msgstr "Xost nomi bo‘sh!" msgid "The user name is empty!" msgstr "Foydalanuvchi nomi belgilanmagan!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "Parol belgilanmagan!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "Kiritilgan parollar bir xil emas!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1189,25 +1191,26 @@ msgstr "Belgilangan foydalanuvchilarni o‘chirish" msgid "Close" msgstr "Yopish" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "Tahrirlash" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 #, fuzzy #| msgid "Server Choice" msgid "Live traffic chart" msgstr "Serverni tanlang" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 #, fuzzy #| msgid "SQL Query box" msgid "Live query chart" @@ -1219,24 +1222,24 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "Jami" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "," @@ -1258,7 +1261,7 @@ msgstr "Serverni tanlang" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "Jarayonlar" @@ -1278,7 +1281,7 @@ msgstr "" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 #, fuzzy #| msgid "Show statistics" msgid "Query statistics" @@ -1329,14 +1332,14 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1398,32 +1401,32 @@ msgstr "" msgid "Bytes received" msgstr "Qabul qilindi" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "Ulanishlar" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1440,11 +1443,11 @@ msgstr "Jadvallar soni: \"%s\"" msgid "Questions" msgstr "Vеrsiyalar" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 #, fuzzy #| msgid "settings" msgid "Settings" @@ -1470,11 +1473,11 @@ msgstr "To‘rga bog‘lab qo‘yish" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "Yo‘q" @@ -1574,7 +1577,7 @@ msgstr "Boshqa sozlanishlar" msgid "Current settings" msgstr "tanlovlar" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1668,7 +1671,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "Vaqt" @@ -1778,10 +1781,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1842,9 +1845,9 @@ msgstr "" msgid "Test" msgstr "" -#: 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 +#: 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 msgid "Cancel" msgstr "Bekor qilish" @@ -1860,11 +1863,11 @@ msgstr "Yuklash" msgid "Processing Request" msgstr "Jarayonlar" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "Bironta ham ma`lumotlar bazasi tanlanmagan." @@ -1876,9 +1879,9 @@ msgstr "" msgid "Adding Primary Key" msgstr "" -#: 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 +#: 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 msgid "OK" msgstr "OK" @@ -1934,19 +1937,19 @@ msgstr "Indеks(lar)ni saqlash" msgid "Show indexes" msgstr "To‘rni ko‘rsatish" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Tashqi kalitlarni tekshirishni o‘chirish" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "Faollashtirilgan" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1986,7 +1989,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -2032,8 +2035,8 @@ msgid "No rows selected" msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak." -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "O‘zgartirish" @@ -2043,18 +2046,18 @@ msgstr "O‘zgartirish" msgid "Query execution time" msgstr "Maksimum bajarilish vaqti" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format 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:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "Saqlash" @@ -2070,7 +2073,7 @@ msgstr "SQL so‘rovlari qutisi" msgid "Show search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -2122,12 +2125,12 @@ msgstr "So‘rov natijalarini ishlatish" msgid "Data point content" msgstr "Ma`lumotlar fayli ko‘rsatgichi hajmi" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "E`tibor bermaslik" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "" @@ -2150,7 +2153,7 @@ msgid "Please select the primary key or a unique key" msgstr "" "Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" @@ -2247,7 +2250,7 @@ msgstr "Generatsiya qilish" msgid "Change Password" msgstr "Parolni o‘zgartirish" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 #, fuzzy #| msgid "Mon" msgid "More" @@ -2367,27 +2370,27 @@ msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2395,37 +2398,37 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "Dek" @@ -2474,32 +2477,32 @@ msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "Shan" @@ -2637,16 +2640,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "sekundiga" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "minutiga" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "soatiga" @@ -2667,21 +2670,237 @@ msgstr "" msgid "Font size" msgstr "Shrift o‘lchami" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +#| msgid "Save directory" +msgid "Save edited data" +msgstr "Saqlash direktoriyasi" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Restore column order" +msgstr "CHAR maydonidagi ustunlar soni" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "Boshi" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "Orqaga" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "Keyingi" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "Oxiri" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Start" +msgid "Start row" +msgstr "Boshlash" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of fields" +msgid "Number of rows" +msgstr "Maydonlar soni " + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "Mon" +msgid "Mode" +msgstr "Dush" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "gorizontal" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "gorizontal (aylantirilgan sarlavhalar)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "vertikal" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Execute bookmarked query" +msgid "Headers every %s rows" +msgstr "Belgilangan so‘rovni bajarish" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "Indeks bo‘yicha sortirovka qilish" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "Parametrlar" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +#, fuzzy +#| msgid "Partial Texts" +msgid "Partial texts" +msgstr "Ma`lumotlarni qisqartirib ko‘rsatish" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +#, fuzzy +#| msgid "Full Texts" +msgid "Full texts" +msgstr "Ma`lumotlarni kengaytirilgan holda ko‘rsatish" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "Aloqador kalit" + +#: libraries/DisplayResults.class.php:1345 +#, fuzzy +#| msgid "Relational display field" +msgid "Relational display column" +msgstr "Aloqador maydon qiymati" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "Ikkilik ma`lumotlarni ko‘rsatish" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "O‘girish" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "Yozuv o‘chirildi" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "Tugatish" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +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" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "so‘rov bo‘yicha" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "Yozuvlarni ko‘rsatish" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "jami" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "So‘rov %01.4f sekund vaqt oldi" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "So‘rov natijalarini ishlatish" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "Chop etish versiyasi (to‘la)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +#, fuzzy +#| msgid "Display PDF schema" +msgid "Display chart" +msgstr "PDF-sxemani ko‘rsatish" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +#, fuzzy +#| msgid "Create version" +msgid "Create view" +msgstr "Vеrsiyasini tuzish" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "Aloqa topilmadi" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Yuklanayotgan fayl hajmi PHP konfiguratsion faylida (php.ini) ko‘rsatilgan " "\"upload_max_filesize\" direktivasi qiymatidan katta!" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2689,27 +2908,27 @@ msgstr "" "Yuklanayotgan fayl hajmi HTML formada ko‘rsatilgan \"MAX_FILE_SIZE\" " "direktivasi qiymatidan katta!" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi." -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi." -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "Faylni diskka yozishdaxatolik yuz berdi." -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi." -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi." -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2717,26 +2936,41 @@ msgstr "" "Yuklangan fayl joyini o‘zgartirishda xatolik, [a@./Documentation." "html#faq1_11@Documentation]\"FAQ 1.11\"[/a]ga qarang" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "phpMyAdmin dasturini yangi oynada ochish" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart." + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart." + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "Indekslar" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "Unikal" @@ -2749,8 +2983,8 @@ msgstr "Qisilgan" msgid "Cardinality" msgstr "Elementlar soni" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "Izoh" @@ -2771,130 +3005,130 @@ msgid "" "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:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "Ma`lumotlar bazalari" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "Server" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "Tuzilishi" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "Qo‘yish" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "Operatsiyalar" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "Kuzatish" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "Jadval - bo‘sh!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "Ma`lumotlar bazasi bo‘sh!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "So‘rov" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "Privilegiyalar" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "Muolajalar" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "Hodisalar" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "Dizayner" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "Foydalanuvchi" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "Sinxronizatsiya qilish" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "Ikkilik jurnal" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "O‘zgaruvchilar" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "Kodirovkalar" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "Jadval turlari" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "Xatolik" @@ -2922,7 +3156,7 @@ msgid_plural "%1$d rows inserted." msgstr[0] "%1$d ta qatorlar qo‘yildi." msgstr[1] "%1$d ta qatorlar qo‘yildi." -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -3022,16 +3256,112 @@ 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 +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 +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 +msgid "Value" +msgstr "Qiymati" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "Qidirish" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Qo‘yish" + +#: libraries/TableSearch.class.php:739 +#, fuzzy +#| msgid "Select fields (at least one):" +msgid "Select columns (at least one):" +msgstr "Maydonni tanlang (kamida bitta):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "Qidirish shartini ko‘shish (ya`ni \"where\" jumlasi):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "Sahifadagi qatorlar soni" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "Sortirovka:" + +#: libraries/TableSearch.class.php:813 +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 "Ko‘rsatiladigan qatorlarning maksimal soni" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "Tashqi qiymatlarni ko‘rib chiqish" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "SQL Query box" +msgid "Additional search criteria" +msgstr "SQL so‘rovlari qutisi" + +#: 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 "\"Namunadagi so‘rovni bajarish\" (o‘rniga qo‘yish belgisi: \"%\")" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "\"Namunadagi so‘rovni bajarish\" (o‘rniga qo‘yish belgisi: \"%\")" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +#| msgid "Control user" +msgid "How to use" +msgstr "Nazorat foydalanuvchisi" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "Tozalash" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "\"%s\" mavzusi rasmlariga to‘g‘ri yo‘l topilmadi!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "Oldindan ko‘rish mumkin emas." -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "Tadbiq qilish" @@ -3050,7 +3380,7 @@ msgstr "\"%s\" mavzusi topilmadi!" msgid "Theme path not found for theme %s!" msgstr "\"%s\" mavzusi fayllariga yo‘l topilmadi!" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "" @@ -3349,13 +3679,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "Ulanib bo‘lmadi: noto‘g‘ri sozlangan." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "\"%s\" dasturiga xush kelibsiz" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3364,7 +3694,7 @@ msgstr "" "Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish " "ssenariysidan%2$s foydalanishingiz mumkin." -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3379,42 +3709,36 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart." +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "Avtorizatsiya" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "Siz xost/IP adres va bo‘sh joy qoldirib portni kiritishingiz mumkin." -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "Foydalanuvchi:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "Parol:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "Serverni tanlang" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart." - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -3422,7 +3746,7 @@ msgstr "" "Parolsiz autentifikatsiya konfiguratsiya tomonidan o‘chirilgan (qarang " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" @@ -3430,13 +3754,13 @@ msgstr "" "\"%s\" soniya davomida faollik kuzatilmadi, iltimos, qayta avtorizatsiyadan " "o‘ting." -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "MySQL serveriga ulanib bo‘lmadi" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "Kiritilgan ma`lumotlar noto‘g‘ri. Kirish mumkin emas." @@ -3470,7 +3794,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "Jadvallar" @@ -3482,13 +3806,13 @@ msgstr "Jadvallar" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "Ma`lumotlar" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "Fragmentlangan" @@ -3519,33 +3843,25 @@ msgstr "\"%s\" ma`lumotlar bazasining privilegiyalarni tekshirish" msgid "Check Privileges" msgstr "Privilegiyalarni tekshirish" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Failed to read configuration file" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, fuzzy, php-format #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not load default configuration from: %1$s" msgstr "\"%1$s\" faylidan andoza konfiguratsiyani yuklab bo‘lmadi." -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3557,228 +3873,206 @@ msgstr "" "$cfg[\"PmaAbsoluteUrl\"] direktivasi konfiguratsion faylda " "sozlanishi SHART!" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid server index: %s" msgstr "Server raqami noto‘g‘ri: \"%s\"" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" " %1$s serveri uchun noto‘g‘ri xost nomi ko‘rsatilgan. phpMyAdmin " "konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "" "phpMyAdmin konfiguratsion faylida noto‘g‘ri autentifikatsiya usuli " "belgilangan:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "\"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur." -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "Maksimal hajmi: \"%s\"%s\"" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "Dokumentatsiya" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL so‘rovi" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL javobi: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL-serverga ulanib bo‘lmadi" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "So‘rov tahlili" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "Tahlil kerak emas" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "PHP-kod olib tashlash" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "PHP-kod" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "Yangilash" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "SQL sintaksisi tekshiruvini olib tashlash" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Jadval turlari" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "Profillashtirish" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "Yaksh" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y y., %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" kun, \"%s\" soat, \"%s\" minut va \"%s\" sekund" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Muolajalar" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "Boshi" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "Orqaga" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "Keyingi" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "Oxiri" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "\"%s\" ma`lumotlar bazasiga o‘tish" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" " \"%s\" parametrining ishi ma`lum xatolikka olib kelishi mumkin, batafsil " "ma`lumot uchun qarang \"%s\"" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Tanlash uchun sichqoncha tugmasini bosing" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Yuklash katalogidan" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "Chop etish" @@ -3810,8 +4104,8 @@ msgid "Closed" msgstr "Yopish" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "Faolsizlantirilgan" @@ -3963,9 +4257,9 @@ msgstr "Asl qiymatlarni tiklash" msgid "Allow users to customize this value" msgstr "" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "Tozalash" @@ -4202,10 +4496,6 @@ msgstr "Jadval tuzilishi tahlili" msgid "Show binary contents as HEX by default" msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "" @@ -4272,7 +4562,7 @@ msgstr "" msgid "Maximum execution time" msgstr "Maksimum bajarilish vaqti" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "Fayl kabi saqlash" @@ -4281,7 +4571,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:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "Format" @@ -4399,7 +4689,7 @@ msgid "MIME type" msgstr "MIME turi" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "Aloqalar" @@ -6110,9 +6400,9 @@ msgstr "" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "Parol" @@ -6420,14 +6710,6 @@ msgstr "" msgid "Details..." msgstr "Tafsilotlar..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -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" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." @@ -6436,18 +6718,18 @@ msgstr "" "ko‘rsatilgan foydalanuvchi yordamida ulanib bo‘lmadi." #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "Parolni o‘zgartirish" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "Parol yo‘q" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "Tasdiqlash" @@ -6472,22 +6754,22 @@ msgstr "Yangi ma`lumotlar bazasi tuzish" msgid "Create" msgstr "Tuzish" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "Privilegiyalar yo‘q" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "Nomi" @@ -6688,26 +6970,26 @@ msgstr "" msgid "Encoding Conversion:" msgstr "Kodirovkalash funksiyasi" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -6843,196 +7125,28 @@ msgstr "" msgid "Language" msgstr "Til" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -#| msgid "Save directory" -msgid "Save edited data" -msgstr "Saqlash direktoriyasi" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Restore column order" -msgstr "CHAR maydonidagi ustunlar soni" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Start" -msgid "Start row" -msgstr "Boshlash" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of fields" -msgid "Number of rows" -msgstr "Maydonlar soni " - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "Mon" -msgid "Mode" -msgstr "Dush" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "gorizontal" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "gorizontal (aylantirilgan sarlavhalar)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "vertikal" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Belgilangan so‘rovni bajarish" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "Indeks bo‘yicha sortirovka qilish" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "Parametrlar" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -#, fuzzy -#| msgid "Partial Texts" -msgid "Partial texts" -msgstr "Ma`lumotlarni qisqartirib ko‘rsatish" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -#, fuzzy -#| msgid "Full Texts" -msgid "Full texts" -msgstr "Ma`lumotlarni kengaytirilgan holda ko‘rsatish" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "Aloqador kalit" - -#: libraries/display_tbl.lib.php:1279 -#, fuzzy -#| msgid "Relational display field" -msgid "Relational display column" -msgstr "Aloqador maydon qiymati" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "Ikkilik ma`lumotlarni ko‘rsatish" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "O‘girish" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "Yozuv o‘chirildi" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "Tugatish" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "so‘rov bo‘yicha" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "Yozuvlarni ko‘rsatish" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "jami" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "So‘rov %01.4f sekund vaqt oldi" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "So‘rov natijalarini ishlatish" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "Chop etish versiyasi (to‘la)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -#, fuzzy -#| msgid "Display PDF schema" -msgid "Display chart" -msgstr "PDF-sxemani ko‘rsatish" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -#, fuzzy -#| msgid "Create version" -msgid "Create view" -msgstr "Vеrsiyasini tuzish" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "Aloqa topilmadi" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "Versiya haqida ma`lumot" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "Ma`lumotlar uchun uy katalog" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "" "InnoDB ma`lumotlar fayllari saqlanadigan katalog yo‘lining umumiy qismi" -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "Ma`lumotlar fayli" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "Avtomatik oshirib borish" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." @@ -7040,11 +7154,11 @@ msgstr "" "Jadvalda joy tugaganda ma`lumotlar fayli hajmini avtomatik oshirish " "(megabaytlarda)." -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "Bufer puli hajmi" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." @@ -7052,79 +7166,79 @@ msgstr "" "Ma`lumotlarni va jadval indekslarini keshlashda InnoDB ishlatadigan xotira " "buferi hajmi" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "Bufer puli" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB ahvoli" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "Ishlatilish" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "sahifalar soni" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "Bo‘sh sahifalar soni" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "Kir sahifalar" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "Ma`lumotlar mavjud sahifalar" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "Tozalash kerak bo‘lgan sahifalar soni" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "Band sahifalar" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "Blokirovka qilingan sahifalar soni" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "Faollik" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "O‘qishga ruxsat so‘rash" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "Yozishga bo‘lgan so‘rovlar soni" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "Buferni o‘qishda qoldirishlar mavjud" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "Buferning tozalanishi kutilmoqda" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "Buferni o‘qishda % qoldirishlar mavjud" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "% buferning tozalanishi kutilmoqda" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "Ma`lumotlar fayli ko‘rsatgichi hajmi" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -7133,11 +7247,11 @@ msgstr "" "turidagi jadval tuzishda (CREATE TABLE) ishlatiladigan ma`lumotlar fayli " "ko‘rsatgichi hajmi (baytlarda)." -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "Avtomatik tiklash rejimi" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." @@ -7145,11 +7259,11 @@ msgstr "" "Jadval buzilganda avtomatik tiklash rejimi. Server ishga tushirilganda, --" "myisam-recover parametri orqali belgilanadi." -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "Vaqtinchalik indeks fayllarining maksimal hajmi" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -7161,11 +7275,11 @@ msgstr "" "yordamida indeks tuziladi (bunday algoritm sekinroq lekin barqarorroq " "ishlaydi)." -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "Indeksni tuzishda ishlatiladigan vaqtinchalik fayl hajmi" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -7175,11 +7289,11 @@ msgstr "" "vaqtinchalik fayl hajmi bu yerda ko‘rsatilgan hajmdan katta bo‘lsa, indeksni " "keshlashning sekinroq lekin barqarorroq usuliga afzallik beriladi." -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "Oqimli tiklash" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -7187,11 +7301,11 @@ msgstr "" "Agar qiymat birdan katta bo‘lsa, MyISAM turidagi jadval indekslari tiklash " "vaqtida parallel ravishda sortirovka (Repair by sorting) yordamida tuzilgan." -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "Sortirovka buferi hajmi" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -7200,11 +7314,11 @@ msgstr "" "INDEX yoki ALTER TABLE buyruqlari yordamida indeks tuzish uchun kerak " "bo‘lgan bufer hajmi." -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "Indeks keshi hajmi" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." @@ -7212,11 +7326,11 @@ msgstr "" "Indekslar keshiga ajratilgan xotira hajmi. Asl qiymati – 32 Mb. Bunda " "ajratilgan xotira faqatgina indeks sahifalarni keshlashda foydalaniladi." -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "Yozish keshi hajmi" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -7226,11 +7340,11 @@ msgstr "" "32 Mb. Ushbu xotira ma`lumotlarni saqlash fayllari(.xtd)dagi va qator " "ko‘rsatgichlari(.xtr)dagi o‘zgarishlarni keshlashda ishlatiladi." -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "Jurnal keshi hajmi" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." @@ -7238,11 +7352,11 @@ msgstr "" "Tranzaksiyalar jurnali ma`lumotlarini keshlash uchun ajratilgan xotira " "hajmi. Asl qiymati – 16 Mb." -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "Jurnal fayli ostonasi" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." @@ -7250,11 +7364,11 @@ msgstr "" "Tranzaksiyalar jurnalining qaytishgacha va yangi jurnal tuzishgacha hajmi. " "Asl qiymati – 26 Mb." -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "Tranzaksiyalar buferi hajmi" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." @@ -7262,11 +7376,11 @@ msgstr "" "Tranzaksiya jurnallari uchun global bufer hajmi (dastur shu hajmdagi 2 ta " "bufer ajratadi). Asl qiymati – 1 Mb." -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "Tekshiruv chastotasi" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." @@ -7274,11 +7388,11 @@ msgstr "" "Tekshiruv amalga oshirilganga qadar tranzaksiyalar jurnalida yozilgan " "ma`lumotlar hajmi. Asl qiymati – 24 Mb." -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "Ma`lumotlar jurnali ostonasi" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -7291,11 +7405,11 @@ msgstr "" "ma`lumotlarning umumiy hajmini oshirish uchun ushbu o‘zgaruvchining " "qiymatini oshirish mumkin." -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "Axlatlanish ostonasi" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." @@ -7303,11 +7417,11 @@ msgstr "" "Ixchamlashtirishdan oldin ma`lumotlar jurnali fayli axlatlanishining foiz " "nisbati. Qiymat 1 va 99 orasidabo‘lishi shart. Asl qiymati – 50." -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "Jurnal buferi hajmi" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -7317,27 +7431,27 @@ msgstr "" "Mb. Agar oqim jurnal ma`lumotlarini yozish uchun kerak bo‘lsagina, dastur " "har bir oqimga bitta bufer ajratadi." -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "Ma`lumotlar fayllarining oshish hajmi" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "Ma`lumotlarni saqlash fayllari(.xtd)ning oshish hajmi." -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "Qator fayllarining oshish hajmi" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "Qator ko‘rsatgichlari fayllari(.xtr)ning oshish hajmi." -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "Jurnal fayllari soni" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -7349,20 +7463,20 @@ msgstr "" "jurnallar o‘chiriladi yoki ularning nomlari o‘zgartiriladi va quyidagi " "tartibda raqamlanadi." -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 #, fuzzy #| msgid "Relations" msgid "Related Links" msgstr "Aloqalar" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "" @@ -7425,14 +7539,14 @@ msgstr "Jadval ma`lumotlarini damp qilish" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "Hodisa" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -7502,14 +7616,14 @@ msgstr "Mavjud MIME turlari" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "Xost" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "Tuzilgan sana" @@ -7710,21 +7824,12 @@ msgstr "Namoyish" msgid "Export contents" msgstr "Tarkibini eksport qilish" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "phpMyAdmin dasturini yangi oynada ochish" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 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)." @@ -7833,12 +7938,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "Jadval nomi" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "Maydon nomlari" @@ -7919,98 +8024,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:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "Funksiya" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "Yashirish" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "Ikkilik" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 #, 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:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "Ikkilik ma`lumot - tahrirlash mumkin emas" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "Yuklash katalogidan" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "Qo‘yish" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, 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:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "va so‘ng" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "Yozuv kiritish" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 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:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "Kiritilgan so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "Oldingi sahifaga o‘tish" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "Yangi yozuv kiritish" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "Ushbu sahifaga qaytish" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "Keyingi qatorni tahrirlash" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 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:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "Qiymati" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" @@ -8027,38 +8114,38 @@ msgstr "Yo‘q" msgid "Convert to Kana" msgstr "" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Jum" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "Bajarish" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 #, fuzzy #| msgid "Apply index(s)" msgid "Add prefix" msgstr "Indеks(lar)ni saqlash" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "O‘zgarish yo‘q" @@ -8270,89 +8357,89 @@ msgstr "Navigatsiya oynasini qayta yuklash" msgid "This format has no options" msgstr "Ushbu format uchun sozlanadigan parametr mavjud emas" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "Tayyor emas" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "OK" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "Faollashtirilgan" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "Aloqalarning asosiy imkoniyatlari" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "Imkoniyatlarni ko‘rsatish" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "PDF-sxema tuzish" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "Maydon izohlarini ko‘rsatish" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "O‘girish" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "" "\"column_comments\" jadvalini yangilash zarur. Batafsil ma`lumot uchun " "dokumentatsiyaga qarang." -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "Xatcho‘p qo‘yilgan SQL so‘rovi" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL-so‘rovlar tarixi" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 #, fuzzy #| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Doimiy ulanishlar" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "Mufassal tanlovlarni tеz sozlash uchun qadamlars:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "" "Kеrakli jadvallarni examples/create_tables.sql kod yordamida " "tuzish." -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "" "phpMyAdmin foydalanuvchisi qo‘shish va ushbu jadvallarga ruxsat bеrish." -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -8360,13 +8447,13 @@ msgstr "" "(config.inc.php) faylidagi mufassal tanlovlarni faollashtirish, " "masalan, config.sample.inc.php dan boshlab." -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Yangilangan konfiguratsiya fayli ishga tushishi uchun, phpMyAdmin dasturidan " "chiqib, qayta kiring." -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "tavsif mavjud emas" @@ -8374,7 +8461,7 @@ msgstr "tavsif mavjud emas" msgid "Slave configuration" msgstr "Tobе sеrvеr konfiguratsiyasi" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "Bosh sеrvеrni o‘zgartirish yoki qayta konfiguratsiya qilish" @@ -8389,13 +8476,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "Foydalanuvchi nomi" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "Port" @@ -8408,7 +8495,7 @@ 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:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "O‘zgaruvchi" @@ -8424,38 +8511,38 @@ msgstr "" "Ro‘yxatda faqat \"--report-host=host_name\" tanlovi yordamda yuklangan tobе " "sеrvеrlar ko‘rsatilmoqda." -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "Tobе rеplikatsiya foydalanuvchisini qo‘shish" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" 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:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "Matnmaydonini ishlatish" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "Har qaysi xost" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "Lokal" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "Ushbu xost" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "Xostlar jadvalidan foydalanish" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -8471,7 +8558,7 @@ msgstr "Parol o‘rnatish" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -8505,105 +8592,106 @@ msgstr "%1$s jadvali tuzildi." msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Edit server" msgid "Edit event" msgstr "Serverlarni tahrirlash" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Jarayonlar" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." msgid "Details" msgstr "Tafsilotlar..." -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "Hodisa turi" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "Hodisa turi" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "O‘zgartirish" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 #, fuzzy #| msgid "Execute bookmarked query" msgid "Execute every" msgstr "Belgilangan so‘rovni bajarish" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "Boshlang‘ich" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "Oxiri" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "Complete inserts" msgid "On completion preserve" msgstr "To‘la qo‘yish" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -8634,7 +8722,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -8656,121 +8744,121 @@ msgstr "\"%s\" jadvali o‘chirildi" msgid "Routine %1$s has been created." msgstr "%1$s jadvali tuzildi." -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Tahrirlash usuli" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Muolajalar" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "To‘g‘ridan-to‘g‘ri bog‘lanishlar" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "Uzunlik/qiymatlar" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Indеks(lar)ni saqlash" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "Qaytariladigan tip" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Uzunlik/qiymatlar" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Jadval parametrlari" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Xavfsizlik" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, 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:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8792,44 +8880,44 @@ msgstr "\"%s\" jadvali o‘chirildi" msgid "Trigger %1$s has been created." msgstr "%1$s jadvali tuzildi." -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new server" msgid "Edit trigger" msgstr "Yangi foydalanuvchi qo‘shish" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "Triggerlar" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "Vaqt" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "Jadval nomi noto‘g‘ri" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8943,7 +9031,7 @@ msgstr "Bironta ham konfiguratsiyalangan server mavjud emas" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, fuzzy, php-format @@ -8953,7 +9041,7 @@ msgstr "\"%s\" jadvali mavjud emas!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8961,7 +9049,7 @@ msgid "Please configure the coordinates for table %s" msgstr "\"%s\" jadvalining koordinatalarini o‘zgartirish" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, fuzzy, php-format @@ -8975,27 +9063,27 @@ msgstr "\"%s\" ma`lumotlar bazasi tuzilishi - \"%s\" sahifa" msgid "This page does not contain any tables!" msgstr "\"%s\" faylida kalit identifikatori mavjud emas" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "Aloqalar sxemasi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "Mundarija" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "Atributlar" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "Qo‘shimcha" @@ -9115,7 +9203,7 @@ msgstr "Noma`lum til: %1$s." msgid "Current Server" msgstr "Joriy sеrvеr" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "Manba baza" @@ -9133,7 +9221,7 @@ msgstr "Masofadagi sеrvеr" msgid "Difference" msgstr "Farq" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "Nishon baza" @@ -9152,7 +9240,7 @@ msgstr "\"%s\" serverida SQL-so‘rov(lar)ni bajarish" 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:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "Tozalash" @@ -9163,11 +9251,11 @@ msgstr "Tozalash" msgid "Columns" msgstr "Maydon nomlari" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 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:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "Barcha foydalanuvchilarga ruxsat berish" @@ -9264,7 +9352,7 @@ msgstr "" "o‘rnatilganligini tekshiring, batafsil ma`lumot uchun %sdokumentatsiyaga%s " "qarang." -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." @@ -9297,8 +9385,8 @@ msgstr "" "ishlatmang." #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "Indeks" @@ -9352,13 +9440,13 @@ msgstr "Yo‘q" msgid "As defined:" msgstr "Qoidaga ko‘ra:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "Birlamchi" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "Matn to‘laligicha" @@ -9372,20 +9460,20 @@ msgstr "" msgid "after %s" msgstr "\"%s\" dan keyin" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, 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:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Hech bo‘lmaganda bitta maydon kiritish shart." #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "Jadval turi" @@ -9393,45 +9481,6 @@ msgstr "Jadval turi" msgid "PARTITION definition" msgstr "Bo‘laklarni (PARTITIONS) belgilash" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "Qidirish" - -#: libraries/tbl_select.lib.php:573 -#, fuzzy -#| msgid "Select fields (at least one):" -msgid "Select columns (at least one):" -msgstr "Maydonni tanlang (kamida bitta):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "Qidirish shartini ko‘shish (ya`ni \"where\" jumlasi):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "Sahifadagi qatorlar soni" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "Sortirovka:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "Tashqi qiymatlarni ko‘rib chiqish" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "\"Namunadagi so‘rovni bajarish\" (o‘rniga qo‘yish belgisi: \"%\")" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -9629,13 +9678,13 @@ msgstr "" msgid "Manage your settings" msgstr "Boshqa sozlanishlar" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 #, fuzzy #| msgid "Modifications have been saved" msgid "Configuration has been saved" msgstr "O‘zgaririshlar saqlandi" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -9648,7 +9697,7 @@ msgstr "" msgid "Could not save configuration" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -9681,7 +9730,7 @@ msgstr "MySQL bilan ulanishni chog‘ishtirish" msgid "Appearance Settings" msgstr "Boshqa sozlanishlar" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 #, fuzzy #| msgid "settings" msgid "More settings" @@ -9707,9 +9756,9 @@ msgstr "Vеrsiyalarni ko‘rsatish" msgid "Protocol version" msgstr "Protokol versiyasi" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "Foydalanuvchi" @@ -9867,149 +9916,149 @@ msgstr "" "Server \"Suhosin\" himoya tizimadan foydalanmoqda. Yuzaga kelgan muammolar " "yechimi uchun \"%s\"dokumentatsiya\"%s\" ga qarang." -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "Ma`lumotlar bazasi mavjud emas" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "table name" msgid "Filter databases by name" msgstr "jadval nomi" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "table name" msgid "Filter tables by name" msgstr "jadval nomi" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 #, fuzzy #| msgid "Create table" msgctxt "short form" msgid "Create table" msgstr "Jadval tuzish" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "Ma`lumotlar bazasini tanlang" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "Chap menyuni ko‘rsatish/yashirish" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "Jadvallar joylashishini saqlash" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "Bog‘liqlik o‘rnatish" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "Qayta yuklash" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "Yordam" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "Burchakli bog‘lanishlar" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "To‘g‘ridan-to‘g‘ri bog‘lanishlar" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "To‘rga bog‘lab qo‘yish" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "Barcha jadvallar ko‘rsatilishini Taxlash/Tiklash" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "Teskari ko‘rsatish" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "" "Aloqani tanlash uchun rasmda ko‘rsatilganikabi ulanish nuqtasiga bosing:" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "PDF-sxemaga/sxemadan jadval koordinatalarini import/eksport qilish" -#: pmd_general.php:133 +#: pmd_general.php:135 #, fuzzy #| msgid "Submit Query" msgid "Build Query" msgstr "so‘rovni bajarish" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "Menyuni ko‘chirish" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "Barcha jadvallarni yashirish/ko‘rsatish" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "Aloqa mavjud bo‘lmagan jadvallarni yashirish/ko‘rsatish" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "Jadvallar soni" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "Bog‘liqlikni o‘chirish" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 #, fuzzy #| msgid "Relation deleted" msgid "Relation operator" msgstr "Aloqa o‘chirildi" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 #, fuzzy #| msgid "Export" msgid "Except" msgstr "Eksport" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 #, fuzzy #| msgid "in query" msgid "subquery" msgstr "so‘rov bo‘yicha" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 #, fuzzy #| msgid "Rename view to" msgid "Rename to" msgstr "Ko‘rinish nomini o‘zgartirish" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 #, fuzzy #| msgid "User name" msgid "New name" msgstr "Foydalanuvchi nomi" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 #, fuzzy #| msgid "Create" msgid "Aggregate" msgstr "Tuzish" -#: pmd_general.php:839 +#: pmd_general.php:841 #, fuzzy #| msgid "Table options" msgid "Active options" @@ -10023,61 +10072,61 @@ msgstr "Sahifa tuzildi" msgid "Page creation failed" msgstr "Sahifa tuzib bo‘lmadi" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 #, fuzzy #| msgid "pages" msgid "Page" msgstr "sahifalar soni " -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Fayllarni import qilish" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Masshtab" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yangi indeks tuzish" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Foydalanuvchi nomi" -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "Masshtab" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "tavsiya etilgan" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "Xatolik: Bog‘liqlik allaqachon mavjud." -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "Tashqi kalitga (FOREIGN KEY) aloqa o‘rnatildi" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "Ichki aloqa o‘rnatildi" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "Aloqa o‘chirildi" @@ -10089,97 +10138,97 @@ msgstr "Koordinatalarni saqlashda xatolik." msgid "Modifications have been saved" msgstr "O‘zgaririshlar saqlandi" -#: prefs_forms.php:82 +#: prefs_forms.php:85 #, fuzzy #| msgid "Submitted form contains errors" msgid "Cannot save settings, submitted form contains errors" msgstr "Berilgan formada xatolar mavjud" -#: prefs_manage.php:82 +#: prefs_manage.php:79 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" msgstr "\"%1$s\" faylidan andoza konfiguratsiyani yuklab bo‘lmadi." -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "" -#: prefs_manage.php:245 +#: prefs_manage.php:243 #, fuzzy #| msgid "Import files" msgid "Import from file" msgstr "Fayllarni import qilish" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "" -#: prefs_manage.php:260 +#: prefs_manage.php:258 #, fuzzy #| msgid "Other core settings" msgid "You have no saved settings!" msgstr "Boshqa sozlanishlar" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "" -#: prefs_manage.php:269 +#: prefs_manage.php:267 #, fuzzy #| msgid "Server configuration" msgid "Merge with current configuration" msgstr "Server konfiguratsiyasi" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "Fayllarni import qilish" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "Barcha" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "\"%s\" jadvali topilmadi yoki \"%s\"da o‘rnatilmagan" -#: schema_export.php:61 +#: schema_export.php:59 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -10189,17 +10238,17 @@ msgstr "\"%s\" jadvali mavjud emas!" msgid "Select binary log to view" msgstr "Ko‘rish uchun binar jurnalni tanlang" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "Fayllar soni" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "So‘rovlarni qisqartirib ko‘rsatish" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "So‘rovlarning kengaytirilgan ko‘rinishi" @@ -10215,7 +10264,7 @@ msgstr "Pozitsiya" msgid "Original position" msgstr "Asl pozitsiya" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "Ma`lumot" @@ -10223,31 +10272,31 @@ msgstr "Ma`lumot" msgid "Character Sets and Collations" msgstr "Kodirovkalar va taqqoslashlar" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "\"%s\" ma`lumotlar bazasi muvaffaqiyatli o‘chirildi." -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "Ma`lumotlar bazasi statiskasi" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "Bosh sеrvеr rеplikatsiyasi" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "Tobе sеrvеr rеplikatsiyasi" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "Statiskani yoqish" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -10259,159 +10308,159 @@ msgstr "" msgid "Storage Engines" msgstr "Jadval turlari" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "Ma`lumotlar bazalari dampini (sxemasini) namoyish etish" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "Boshi" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "Vеrsiya" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "Faolsizlantirilgan" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "GRANT dan tashqari barcha privilegiyalarni o‘z ichiga oladi" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "Mavjud jadvallarning tuzilishini o‘zgartirishga ruxsat beradi" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "Yangi ma`lumotlar bazalari va jadvallar tuzishga ruxsat beradi" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "Saqlanadigan muolajalar tuzishga ruxsat beradi" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "Yangi jadvallar tuzishga ruxsat beradi" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Foydalanuvchilar hisobini qo‘shish, o‘chirish va o‘zgartirishga ruxsat beradi" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "Yangi namoyishlar tuzish(CREATE VIEW)ga ruxsat beradi" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "Ma`lumotlarni o‘chirishga ruxsat beradi" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "Ma`lumotlar bazalarini va jadvallarni o‘chirishga ruxsat beradi" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "Jadvallarni o‘chirishga rux`sat beradi" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "Kechiktirilgan hodisalarni sozlashga ruxsat beradi" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "Ma`lumotlarni fayldan import va faylga eksport qilishga ruxsat beradi" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Foydalanuvchilarni qo‘shish va privilegiyalar jadvalini qayta yuklamasdan " "privilegiyalar qo‘shishga ruxsat beradi" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "Indekslar qo‘shish va ularni o‘chirishga ruxsat beradi" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "Ma`lumot qo‘yish va o‘zgartirishga ruxsat beradi" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "" "Foydalanuvchi bir soat davomida o‘rnatishi mumkin bo‘lgan yangi ulanishlar " "soni" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "" "Foydalanuvchi bir soat davomida yuborishi mumkin bo‘lgan so‘rovlar soni" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." @@ -10419,65 +10468,65 @@ msgstr "" "Foydalanuvchi bir soat davomida bajarishi mumkin bo‘lgan biron-bir jadval " "yoki ma`lumotlar bazasini o‘zgartiradigan buyruqlar soni" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "" "Bir foydalanuvchi tomonidan bir vaqtning o‘zida o‘rnatishi mumkin bo‘lgan " "ulanishlar soni" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "Barcha foydalanuvchilarning jarayonlarini ko‘rishga ruxsat beradi" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "MySQL-serverning ushbu versiyada bunday xususiyat mavjud emas!" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Server sozlanishlarini qayta yuklashga va uning keshlarini tozalashga ruxsat " "beradi" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Bosh va tobe serverlarning joylashishi haqidagi ma`lumotni talab qilishga " "ruxsat beradi" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "" "Replikatsiya (zaxira nusxa ko‘chirish) vaqtida tobe serverlar uchun kerak" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "Ma`lumotlarni chaqirishga ruxsat beradi" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "Ma`lumotlar bazalarining to‘liq ro‘yxatiga ruxsat beradi" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Namoyish tuzadigan so‘rov(SHOW CREATE VIEW)ni bajarishga ruxsat beradi" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "Server ishini yakunlashga ruxsat beradi" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -10488,179 +10537,179 @@ msgstr "" "global o‘zgaruvchilar o‘rnatish yoki boshqa foydalanuvchi jarayonini " "o‘chirish)" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "" "Triggerlar (ma`lum shartlar bajarilganda avtomatik ishga tushadigan " "jarayonlar) tuzish va ularni o‘chirishga ruxsat beradi" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "Ma`lumotlarni o‘zgartirishga ruxsat beradi" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "Privilegiyalar yo‘q" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Yo‘q" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "Jadval darajasijagi privilegiyalar" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "IZOH: MySQL privilegiyalari turlari ingliz tilida ko‘rsatiladi." -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "Administratsiya" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "Global privilegiyalar" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "Ma`lumotlar bazasi privilegiyalari" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "Resurslardan foydalanishni cheklash" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "" "IZOH: parametr qiymatlarini 0 (nol) deb belgilash mavjud cheklashlarni bekor " "qiladi." -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "Foydalanuvchi hisobi haqida ma`lumot" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "Parolni o‘zgartirmaslik" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 #, fuzzy #| msgid "No user(s) found." msgid "No user found." msgstr "Bironta ham foydalanuvchi topilmadi." -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "\"%s\" nomli foydalanuvchi mavjud!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "Siz yangi foydalanuvchi qo‘shdingiz." -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "\"%s\" uchun privilegiyalar o‘zgartirildi." -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "\"%s\" foydalanuvchining privilegiyalari bekor qilindi." -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "\"%s\" foydalanuvchining paroli muvaffaqiyatli o‘zgartirildi." -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "\"%s\" o‘chirilmoqda" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "O‘chirish lozim bo‘lgan foydalanuvchilar tanlanmagan!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "Privilegiyalar qayta yuklanmoqda" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "Privilegiyalarni tahrirlash" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "Bekor qilish" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "Eksport" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "Har qaysi" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "Privilegiyalar" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "Privilegiyalar" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: server_privileges.php:1957 +#: server_privileges.php:1965 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:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 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:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -10673,50 +10722,50 @@ msgstr "" "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "Maydon privilegiyalari" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "Quyidagi ma`lumotlar omboriga privilegiya qo‘shish" -#: server_privileges.php:2300 +#: server_privileges.php:2308 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:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "Quyidagi jadvalga privilegiya qo‘shish" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "va eskisini saqlash." -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "va foydalanuvchilar jadvalidan eskisini o‘chirish." -#: server_privileges.php:2367 +#: server_privileges.php:2375 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:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -10724,90 +10773,90 @@ msgstr "" ", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta " "yuklash." -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: server_privileges.php:2393 +#: server_privileges.php:2401 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:2395 +#: server_privileges.php:2403 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:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" ma`lumotlar bazasiga barcha privilegiyalarni berish;" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "Global" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "Guruhlash belgisi" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "\"%s\" namoyishi o‘chirildi" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "Noma’lum xatolik" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "%s bosh sеrvеriga ulanib bo‘lmadi." -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "" "Bosh sеrvеr pozitsiyasini o‘qib bo‘lmadi. Sеrvеrdagi privilеgilarda muammo " "bo‘lishi mumkin." -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "Bosh sеrvеrni o‘zgartirib bo‘lmadi" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "Master server changed succesfully to %s" msgid "Master server changed successfully to %s" msgstr "Bosh rеplikatsiya sеrvеri quyidagiga o‘zgartirildi: %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "Ulangan bosh sеrvеrlarni ko‘rsatish" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "Ulangan tobе sеrvеrlarni ko‘rsatish" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -10816,11 +10865,11 @@ msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh sеrvеr\" dеb konfiguratsiya " "qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "Bosh sеrvеr konfiguratsiyasi" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -10835,19 +10884,19 @@ msgstr "" "bazalarnigina rеplikatsiya qilishda foydali) tanlashingiz mumkin. " "Rеplikatsiya usulini tanlang:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "Barcha bazalarni rеplikatsiya qilish; Quyidagilardan tashqari:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "Barcha bazalarga e’tibor bеrmaslik; Quyidagilardan tashqari:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "Bazalarni tanlang:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." @@ -10855,7 +10904,7 @@ msgstr "" "Endi quyidagi qatorlarni \"my.cnf\" faylining oxiriga qo‘shing va MySQL " "sеrvеrini qayta yuklang." -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -10865,74 +10914,74 @@ msgstr "" "So‘ng, ushbu sеrvеr \"bosh sеrvеr\" dеb konfiguratsiya qilinganligi haqidagi " "ma’lumotni ko‘rishingiz kеrak." -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "Tobе SQL Oqimi ishlamayapti!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "Tobе kirish/chiqish oqimi ishlamayapti!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya " "qilingan. Quyidagi amallardan birini tanlang:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "Bazalarni bosh sеrvеr bilan sinxronizatsiya qilish" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "Tobе sеrvеrni nazorat qilish:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "Barchasini boshlash" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "Barchasini to‘xtatish" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "Tobе sеrvеrni tiklash" -#: server_replication.php:356 +#: server_replication.php:357 #, fuzzy #| msgid "SQL Thread %s only" msgid "Start SQL Thread only" msgstr "Faqat %s SQL kirish/chiqish oqimini" -#: server_replication.php:358 +#: server_replication.php:359 #, fuzzy #| msgid "SQL Thread %s only" msgid "Stop SQL Thread only" msgstr "Faqat %s SQL kirish/chiqish oqimini" -#: server_replication.php:361 +#: server_replication.php:362 #, fuzzy #| msgid "IO Thread %s only" msgid "Start IO Thread only" msgstr "Faqat %s qirish/chiqish oqimini" -#: server_replication.php:363 +#: server_replication.php:364 #, fuzzy #| msgid "IO Thread %s only" msgid "Stop IO Thread only" msgstr "Faqat %s qirish/chiqish oqimini" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "Xatoliklarni boshqarish:" -#: server_replication.php:370 +#: server_replication.php:371 #, fuzzy #| msgid "Skipping error(s) might lead into unsynchronized master and slave!" msgid "Skipping errors might lead into unsynchronized master and slave!" @@ -10940,19 +10989,19 @@ msgstr "" "Xatolik(lar)ni tashlab kеtish bosh va tobе sеrvеrlarning to‘la " "sinxronizatsiya qilinmaganligiga olib kеlishi mumkin!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "Joriy xatoliklarni tashlab kеtish" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "Kеyingisini tashlab kеtish" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "xatoliklar." -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10961,164 +11010,164 @@ msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"tobе sеrvеr\" dеb konfiguratsiya " "qilinmagan. Siz uni konfiguratsiya qilmoqchimisiz?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "\"%s\" jarayoni muvaffaqiyatli yakunlandi." -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin \"%s\" oqim ishini tuguta olmadi. Ehtimol, u allaqachon yopiq." -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "Qayta ishlovchi dastur" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "So‘rovlar keshi" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "Oqimlar" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "Vaqtinchalik ma`lumotlar" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "Kechiktirilgan qo‘yilmalar" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "Indeks keshi" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "Birlashishlar" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "Sortirovka" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "Tranzaksiyalar koordinatori" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "Barcha jadvallarni yopish" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "Ochiq jadvallar ro‘yxati" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "Tobe serverlar haqida ma`lumot" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "Replikatsiya serveri ahvoli haqida ma`lumot" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "So‘rovlar keshini defragmentatsiya qilish" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "MySQL-serverning hozirgi holati" -#: server_status.php:793 +#: server_status.php:792 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "Yangilash" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "Filtr" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "Parolni o‘zgartirmaslik" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "Ochiq jadvallar ro‘yxati" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "Ochiq jadvallar ro‘yxati" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Relations" msgid "Related links:" msgstr "Aloqalar" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "So‘rov turi" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy #| msgid "Functions" msgid "Instructions" msgstr "Funksiyalar" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -11126,34 +11175,34 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "Boshlang‘ich sahifani sozlash" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "Tavsif" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -11162,21 +11211,21 @@ msgid "" msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:1078 +#: server_status.php:1077 #, 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:1080 +#: server_status.php:1079 #, 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:1083 +#: server_status.php:1082 #, fuzzy #| msgid "" #| "s MySQL server works as %s in replication process. For further " @@ -11191,11 +11240,11 @@ msgstr "" "uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga " "kiring." -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "Replikatsiya statusi" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -11204,47 +11253,47 @@ msgstr "" "shuning uchun, MySQL serveri bergan statistik ma`lumotlar noto‘g‘ri bo‘lishi " "mumkin." -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "Qabul qilindi" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "Yuborildi" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "Maksimal ulanishlar soni" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "Muvaffaqiyatsiz urinishlar soni" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "Uzildi" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "Buyruq" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -11253,16 +11302,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:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni." -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -11275,11 +11324,11 @@ msgstr "" "saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini " "oshirish tavsiya etiladi." -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni." -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -11287,7 +11336,7 @@ msgstr "" "Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik " "tuzilgan vaqtinchalik jadvallar soni." -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -11295,31 +11344,31 @@ msgstr "" "\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar " "(masalan, kalitlar takrorlanishi oqibatida) soni." -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan " "qatorlar soni." -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "Bajarilgan \"FLUSH\" buyruqlar soni." -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "Ichki \"COMMIT\" buyruqlari soni." -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni." -#: server_status.php:1334 +#: 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 " @@ -11329,7 +11378,7 @@ msgstr "" "berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan " "jadvallar soni." -#: server_status.php:1335 +#: 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, " @@ -11338,7 +11387,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:1336 +#: server_status.php:1335 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." @@ -11347,7 +11396,7 @@ msgstr "" "soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri " "indekslanganidan dalolat beradi." -#: server_status.php:1337 +#: server_status.php:1336 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 " @@ -11357,7 +11406,7 @@ msgstr "" "soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib " "chiqish vaqtida o‘zgaruvchi qiymati oshadi." -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -11366,7 +11415,7 @@ msgstr "" "o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun " "qo‘llaniladi: ORDER BY ... DESC." -#: server_status.php:1339 +#: 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 " @@ -11380,7 +11429,7 @@ msgstr "" "bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning " "mavjudligi." -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -11392,35 +11441,35 @@ msgstr "" "jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning " "afzalliklaridan foydalanmayotganligini bildiradi." -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ichki buyruqlar soni." -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni." -#: server_status.php:1343 +#: server_status.php:1342 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:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")." -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "\"Kir\" sahifalarning joriy soni." -#: server_status.php:1346 +#: server_status.php:1345 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:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "Bo‘sh sahifalar soni." -#: server_status.php:1348 +#: 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 " @@ -11430,7 +11479,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:1349 +#: server_status.php:1348 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 " @@ -11442,11 +11491,11 @@ msgstr "" "mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "Bufer pulining umumiy hajmi (sahifalarda)." -#: server_status.php:1351 +#: 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." @@ -11455,7 +11504,7 @@ msgstr "" "o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib " "chiqayotganda ro‘y beradi." -#: server_status.php:1352 +#: server_status.php:1351 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -11464,12 +11513,12 @@ msgstr "" "soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda " "ro‘y beradi" -#: server_status.php:1353 +#: server_status.php:1352 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:1354 +#: 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." @@ -11477,7 +11526,7 @@ msgstr "" "InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan " "o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -11491,51 +11540,51 @@ msgstr "" "bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta " "bo‘lmasligi kerak." -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni." -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni." -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni." -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "Tugallanmagan o‘qish operatsiyalari soni." -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "Tugallanmagan yozish operatsiyalari soni." -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni." -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni." -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni." -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni." -#: server_status.php:1367 +#: server_status.php:1366 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." @@ -11543,35 +11592,35 @@ msgstr "" "Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi " "kutayotgan yozuvlar soni" -#: server_status.php:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni." -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "Jurnal faylidagi jismoniy yozuvlar soni." -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni." -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni." -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni." -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)." -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "Tuzilgan sahifalar soni." -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -11580,51 +11629,51 @@ msgstr "" "Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, " "ularni baytlarga o‘tkazish mumkin." -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "O‘qilgan sahifalar soni." -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "Yozilgan sahifalar soni." -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "Hozirda kutilayotgan qator blokirovkalari soni." -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)." -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)." -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)." -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "Umumiy kutilayotgan qator blokirovkalari soni." -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni." -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB jadvaliga yozilgan qatorlar soni." -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni." -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB jadvallarida yangilangan qatorlar soni." -#: server_status.php:1387 +#: 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." @@ -11632,7 +11681,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:1388 +#: 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." @@ -11640,7 +11689,7 @@ msgstr "" "Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi " "ishlatilish darajasini belgilaydi." -#: server_status.php:1389 +#: server_status.php:1388 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 " @@ -11649,17 +11698,17 @@ msgstr "" "Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning " "o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi." -#: server_status.php:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "Import qilinayotgan fayl formati" -#: server_status.php:1391 +#: server_status.php:1390 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:1392 +#: 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 " @@ -11671,26 +11720,26 @@ msgstr "" "murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/" "Key_read_requests." -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 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:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni." -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -11701,19 +11750,19 @@ msgstr "" "effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov " "kompilyatsiya jarayoni bajarilmaganligini bildiradi." -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 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:1400 +#: server_status.php:1399 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -11721,42 +11770,42 @@ msgstr "" "Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta " "bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi." -#: server_status.php:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "Ochiq fayllar soni." -#: server_status.php:1402 +#: server_status.php:1401 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:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "Ochiq jadvallar soni." -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi" -#: server_status.php:1406 +#: server_status.php:1405 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:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni." -#: server_status.php:1408 +#: 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 " @@ -11768,7 +11817,7 @@ msgstr "" "beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least " "Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -11776,19 +11825,19 @@ msgstr "" "Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida " "so‘ndirilgan so‘rovlar soni." -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "Keshda registratsiya qilingan so‘rovlar soni." -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni." -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)." -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -11796,13 +11845,13 @@ msgstr "" "Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi " "qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi." -#: server_status.php:1414 +#: server_status.php:1413 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:1415 +#: 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.)" @@ -11812,7 +11861,7 @@ msgstr "" "o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya " "etiladi." -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -11821,17 +11870,17 @@ msgstr "" "birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda " "katta bo‘lsa ham, unchalik muhim emas." -#: server_status.php:1417 +#: server_status.php:1416 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:1418 +#: server_status.php:1417 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:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -11839,13 +11888,13 @@ msgstr "" "Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan " "qayta tranzaksiyalarning umumiy soni." -#: server_status.php:1420 +#: server_status.php:1419 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:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -11853,12 +11902,12 @@ msgstr "" "Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan " "oqimlar soni." -#: server_status.php:1422 +#: server_status.php:1421 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:1423 +#: server_status.php:1422 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 " @@ -11868,26 +11917,26 @@ msgstr "" "o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining " "qiymatini oshirish zarur." -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni." -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "Sortirovka qilingan qatorlar soni" -#: server_status.php:1426 +#: server_status.php:1425 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:1427 +#: server_status.php:1426 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:1428 +#: server_status.php:1427 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 " @@ -11900,7 +11949,7 @@ msgstr "" "so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish " "kerak." -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -11911,11 +11960,11 @@ msgstr "" "Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda " "\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur." -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "Ochiq joriy ulanishlar soni." -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -11927,74 +11976,74 @@ msgstr "" "o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik " "ham oshirmaydi)." -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "Kuzatish faol emas." -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "Faol holatda bo‘lgan jarayonlar soni." -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Boshlash" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Indеks(lar)ni saqlash" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "Yangilash" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR maydonidagi ustunlar soni" -#: server_status.php:1627 +#: server_status.php:1626 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Xatoliklarni boshqarish:" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Asl qiymatlarni tiklash" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -12003,7 +12052,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -12011,18 +12060,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -12030,11 +12079,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -12042,218 +12091,218 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Rename database to" msgid "Preset chart" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: server_status.php:1680 +#: server_status.php:1679 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "Jadvallarni tanlang" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "Jadval nomi noto‘g‘ri" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "Yangi foydalanuvchi qo‘shish" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL so‘rovlari" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "Statiskani ko‘rsatish" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select Tables" msgid "Selected time range:" msgstr "Jadvallarni tanlang" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "So‘rov turi" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "per second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "sekundiga" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "in use" msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "ishlatilmoqda" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Manbaga ulanib bo‘lmadi" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Nishonga ulanib bo‘lmadi" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "'%s' nomli baza mavjud emas." -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "Tuzilishni sinxronizatsiya qilish" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "Ma’lumotlar sinxronizatsiyasi" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "Mavjud emas" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "Tuzilishdagi farq" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "Ma’lumotlar farqi" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "Ustun(lar) qo‘shish" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "Ustun(lar)ni olib tashlash" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "Ustun(lar)ni o‘zgartirish" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "Indеks(lar)ni olib tashlash" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "Indеks(lar)ni saqlash" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "Qator(lar)ni yangilash" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "Qator(lar) qo‘shish" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Nishon jadvaldagi barcha oldingi qatorlarni o‘chirmoqchimisiz?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "Kiritilgan o‘zgarishlarni saqlash" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "Bazalarni sinxronizatsiya qilish" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "Tanlangan jadvallar manba jadvallar bilan sinxronizatsiya qilindi." -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "Nishon baza manba baza bilan sinxronizatsiya qilindi" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL so‘rovlari" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Noxavfsiz ulanish" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Konfiguratsion fayl" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "Sokеt" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -12261,19 +12310,19 @@ msgstr "" "Nishon baza manba baza bilan to‘liq sinxronizatsiya qilinadi. Manba baza " "o‘zgarishsiz qoladi." -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "Server o‘zgaruvchilari va sozlanishlari" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "Sessiya qiymatlari" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "Global qiymat" @@ -12670,187 +12719,187 @@ msgstr "Kalit harflar, raqamlar [em]va[/em] maxsus belgilarni olishi kerak" msgid "Wrong data" msgstr "Ma`lumotlar bazasi mavjud emas" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "PHP-kod sifatida ko‘rsatish" -#: sql.php:805 +#: sql.php:826 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL so‘rovi natijasi" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "Tuzilgan" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` jadvalidagi indekslarda muammo mavjud" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "Xatcho‘p belgisi" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Mar" msgctxt "Chart type" msgid "Bar" msgstr "Mar" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column names" msgctxt "Chart type" msgid "Column" msgstr "Maydon nomlari" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Engines" msgctxt "Chart type" msgid "Spline" msgstr "Jadval turlari" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "PiB" msgctxt "Chart type" msgid "Pie" msgstr "PB" -#: tbl_chart.php:93 +#: tbl_chart.php:96 #, fuzzy #| msgid "Packed" msgid "Stacked" msgstr "Qisilgan" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Hisobot sarlavhasi" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL so‘rovlari" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "Qiymati" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "Qiymati" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "\"%s\" nomli jadval mavjud!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "%1$s jadvali tuzildi." -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "Jadval dampini (sxemasini) namoyish etish" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Server tanlovini ko‘rsatish" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "CHAR textarea columns" msgid "Label column" msgstr "CHAR maydonidagi ustunlar soni" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- yo‘q -" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Jurnal fayllari soni" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Fayl kabi saqlash" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12868,32 +12917,32 @@ msgstr "Indeksni \"PRIMARY\"ga qayta nomlab bo‘lmadi!" msgid "No index parts defined!" msgstr "Indeks qismlari belgilanmagan!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 #, fuzzy #| msgid "Apply index(s)" msgid "Add index" msgstr "Indеks(lar)ni saqlash" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Tahrirlash usuli" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "Indeks nomi:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(\"PRIMARY\" nomi faqat birlamchi indeksgaega bo‘lishi shart!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "Indeks turi:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "\"%s\" maydon(lar)ini indeksga qo‘shish" @@ -12916,162 +12965,162 @@ msgstr "\"%s\" jadvali \"%s\" ga ko‘chirildi." msgid "Table %s has been copied to %s." msgstr "\"%s\" jadvalidan \"%s\" ga nusxa ko‘chirildi." -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "Jadval nomi ko‘rsatilmagan!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "Jadval sortirovkasini o‘zgartirish" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(ustun)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "Jadvalni (ma`lumotlar bazasi.jadval) ga ko‘chirish:" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "Jadval parametrlari" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "Jadval nomini o‘zgartirish" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "Jadvaldan (ma`lumotlar ombori.jadval) ga nusxa ko‘chirish:" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "Nusxa olingan jadvalga o‘tish" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "Jadvalga xizmat ko‘rsatish" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "Jadvalni defragmentatsiyalash" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "\"%s\" jadvali keshi yangilandi" -#: tbl_operations.php:696 +#: tbl_operations.php:702 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" msgstr "Jadval keshini yangilash (\"FLUSH\")" -#: tbl_operations.php:705 +#: tbl_operations.php:711 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete data or table" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "" -#: tbl_operations.php:744 +#: tbl_operations.php:750 #, fuzzy #| msgid "Go to database" msgid "Delete the table (DROP)" msgstr "Ushbu bazaga o‘tish" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "bo‘laklarga xizmat ko‘rsatish" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "\"%s\" bo‘lagi" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "Tahlil" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "Tekshirish" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "Optimizatsiya" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "Qayta qurish" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "Tiklash" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "Bo‘laklarni (PARTITIONS) o‘chirish" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "Ma`lumotlar yaxlitligini tekshirish:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "Jadvallarni ko‘rsatish" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "Foydalanilayotgan joy" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "Effektivlik" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "Qatorlar statistikasi" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "statik" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "dinamik" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "Qator uzunligi" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "Qator hajmi" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" " %1$s da tashqi kalit (FOREIGN KEY) tuzishda xatolik (ma`lumot turini " "tekshiring)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Ichki aloqalar" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -13079,121 +13128,121 @@ msgstr "" "Agar tashqi kalit (FOREIGN KEY) orqali aloqa mavjud bo‘lsa, ichki aloqa " "o‘rnatish shart emas." -#: tbl_relation.php:412 +#: tbl_relation.php:415 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" msgstr "Tashqi kalit chegaralari" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "Turli qiymatlarni ko‘rib chiqish" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Apply index(s)" msgid "Add SPATIAL index" msgstr "Indеks(lar)ni saqlash" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 #, fuzzy #| msgid "None" msgctxt "None for default" msgid "None" msgstr "Yo‘q" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, fuzzy, php-format #| msgid "Table %s has been dropped" msgid "Column %s has been dropped" msgstr "\"%s\" jadvali o‘chirildi" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "\"%s\" ga birlamchi kalit qo‘shildi" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "\"%s\" uchun indeks qo‘shildi" -#: tbl_structure.php:467 +#: tbl_structure.php:469 #, fuzzy #| msgid "Show versions" msgid "Show more actions" msgstr "Vеrsiyalarni ko‘rsatish" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "Ustun(lar)ni olib tashlash" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "Chop etish versiyasi" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "Aloqalarni ko‘rish" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "Jadval tuzilishi tahlili" -#: tbl_structure.php:695 +#: tbl_structure.php:697 #, fuzzy #| msgid "Add column(s)" msgid "Add column" msgstr "Ustun(lar) qo‘shish" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "Jadval oxiriga" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "Jadval boshiga" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "\"%s\" dan keyin" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, 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:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "bo‘laklarga bo‘lingan" @@ -13360,79 +13409,41 @@ msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:" msgid "Create version" msgstr "Vеrsiyasini tuzish" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "\"Namunadagi so‘rovni bajarish\" (o‘rniga qo‘yish belgisi: \"%\")" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "SQL Query box" -msgid "Additional search criteria" -msgstr "SQL so‘rovlari qutisi" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -#, fuzzy -#| msgid "Maximum number of rows to display" -msgid "Maximum rows to plot" -msgstr "Ko‘rsatiladigan qatorlarning maksimal soni" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -#| msgid "Control user" -msgid "How to use" -msgstr "Nazorat foydalanuvchisi" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "Tozalash" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "Ko‘proq mavzuga ega bo‘ling!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "Mavjud MIME turlari" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "" "Kursiv bilan belgilangan MIME turlari alohida o‘girish funksiyalariga ega " "emas" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "Mavjud o‘girishlar" -#: transformation_overview.php:47 +#: transformation_overview.php:44 #, fuzzy #| msgid "Description" msgctxt "for MIME transformation" msgid "Description" msgstr "Tavsifi" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "Ushbu sahifaga kirish uchun Sizda yetarli huquq mavjud emas!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "Profil yangilandi." -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "Nom ko‘rinishi" diff --git a/po/zh_CN.po b/po/zh_CN.po index 414d757bfe..a3e55dba84 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-04-09 07:19+0200\n" "Last-Translator: Vian Zhao \n" "Language-Team: chinese_simplified \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 0.8\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "全部显示" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "页码:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,58 +37,58 @@ msgstr "" "无法更新目标浏览窗口。可能你已经关闭了父窗口或您浏览器的安全设置阻止了跨窗口" "更新。" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "执行" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "键名" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "说明" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "使用此值" @@ -104,88 +104,89 @@ msgstr "该系统不支持 %s 文件,请访问 www.phpmyadmin.net 查询更多 msgid "Database %1$s has been created." msgstr "创建数据库 %1$s 成功。" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "数据库注释:" -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "表注释" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "字段" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "空" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "默认" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "链接到" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "注释" @@ -194,14 +195,14 @@ msgstr "注释" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "否" @@ -214,180 +215,180 @@ msgstr "否" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "是" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "查看数据库的转存(大纲)。" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "数据库中没有表。" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "全选" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "全不选" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "数据库名不能为空!" -#: db_operations.php:311 +#: db_operations.php:314 #, php-format msgid "Database %1$s has been renamed to %2$s" msgstr "已将数据库 %1$s 改名为 %2$s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "已将数据库 %s 复制为 %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "将数据库改名为" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "删除数据库" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "已被删除数据库 %s 。" -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "删除数据库 (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "复制数据库到" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "仅结构" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "结构和数据" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "仅数据" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "复制前创建数据库 (CREATE DATABASE)" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "添加 %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "添加自增 (AUTO_INCREMENT) 值" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "强制添加" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "切换到复制的数据库" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "整理" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "phpMyAdmin 高级功能尚未激活。要查出原因,请点击%s此处%s。" -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "编辑或导出关系大纲" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "表" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "行数" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "大小" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "使用中" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "创建时间" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "最后更新" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "最后检查" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -397,117 +398,117 @@ msgstr[0] "%s 张表" msgid "You have to choose at least one column to display" msgstr "您最少要选择显示一列" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "切换到 %s可视化查询生成器%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "排序" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "递增" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "递减" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "显示" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "条件" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "插入" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "与" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "删除" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "或" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "修改" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "添加/删除标准行" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "添加/删除字段" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "更新查询" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "使用表" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "在数据库 %s 执行 SQL 语句:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "提交查询" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "拒绝访问" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "至少一个词" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "所有词" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "精确短语" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "使用正则表达式" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "“%s”的搜索结果 %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -515,277 +516,278 @@ 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:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "删除 %s 表中所有匹配的记录?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "总计: %s 个匹配" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "在数据库中搜索" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "要查找的内容 (通配符: \"%\"):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "查找:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "每个单词用空格 (\" \") 分隔。" -#: db_search.php:315 +#: db_search.php:318 msgid "Inside tables:" msgstr "于下列表:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "包含字段:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "没有在数据库中找到表" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "未知" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "已清空表 %s " -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "已删除视图 %s" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "已删除表 %s " -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "追踪已启用。" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "追踪已禁用。" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "该视图最少包含的行数,参见%s文档%s。" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "复制" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "总计" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 服务器的默认存储引擎。" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "选中项:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "全选" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "仅选择多余" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "导出" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "打印预览" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "清空" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "删除" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "检查表" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "优化表" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "修复表" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "分析表" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "添加表前缀" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "修改表前缀" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "复制表为新前缀" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "数据字典" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "已追踪的表" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "数据库" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "最新版本" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "创建" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "更新" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "状态" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "操作" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "删除追踪数据" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "启用" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "禁用" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "版本" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "追踪报告" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "结构快照" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "未追踪的表" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "追踪表" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "数据库日志" @@ -797,27 +799,27 @@ msgstr "非法类型!" msgid "Selected export type has to be saved in file!" msgstr "选择导出文件的类型!" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "非法参数!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "没有足够的空间保存文件 %s。" -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "服务器上已存在文件 %s,请修改文件名或选中覆盖选项。" -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "网站服务器没有保存文件 %s 的权限。" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "转存已经保存到文件 %s 中。" @@ -826,122 +828,122 @@ msgstr "转存已经保存到文件 %s 中。" msgid "Invalid export type" msgstr "导出类型无效" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, php-format msgid "Value for the column \"%s\"" msgstr "字段 %s 的值" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "以 OpenStreetMaps 为背景" # what's the f**k word of "SRID"? -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "SRID" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "几何学" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "点" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "X" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "Y" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "点 %d" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 msgid "Add a point" msgstr "添加点" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "换行符" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "外环" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "内环" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "添加新用户" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "添加新用户" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "多边形" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 msgid "Add a polygon" msgstr "添加多边形" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add event" msgid "Add geometry" msgstr "添加事件" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "输出" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。" -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "显示书签" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "书签已删除。" -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "无法读取文件" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -949,7 +951,7 @@ msgid "" msgstr "" "您正在载入不支持的压缩格式 (%s)。配置文件中没有对应这种格式的配置说明。" -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -958,32 +960,32 @@ msgstr "" "没有接收到要导入的数据。可能是文件名没有提交,也可能是文件大小超出 PHP 限制。" "参见 [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]。" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "没有字符集转换库,无法转换文件字符集" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "无法加载导入插件,请检查你的安装!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "已创建书签 %s" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "导入成功,执行了 %d 个查询。" -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "脚本超时,如果你要完成导入,请重新提交相同的文件,导入将会继续进行。" -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -991,23 +993,23 @@ msgstr "" "在最后一次执行时没有数据被解析,建议您增加 PHP 运行时间限制,否则 phpMyAdmin " "将无法完成导入操作。" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "返回" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 更适合在支持框架的浏览器中使用。" -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。" @@ -1017,7 +1019,7 @@ msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。" msgid "Do you really want to execute \"%s\"?" msgstr "您真的要" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "您将要删除一个完整的数据库!" @@ -1057,7 +1059,7 @@ msgstr "添加索引" msgid "Edit Index" msgstr "编辑索引" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, php-format msgid "Add %d column(s) to index" msgstr "添加 %d 个字段至索引" @@ -1075,16 +1077,16 @@ msgstr "主机名不能为空!" msgid "The user name is empty!" msgstr "用户名不能为空!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "密码不能为空!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "两次密码不一致!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "添加用户" @@ -1101,23 +1103,24 @@ msgstr "正在删除选中的用户" msgid "Close" msgstr "关闭" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "编辑" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "实时流量图" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "实时连接/进程图" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "实时查询图" @@ -1127,24 +1130,24 @@ msgstr "静态数据" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "总计" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "其它" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1164,7 +1167,7 @@ msgstr "服务器流量 (单位: KB)" msgid "Connections since last refresh" msgstr "自上次刷新起的连接数" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "进程" @@ -1182,7 +1185,7 @@ msgstr "自上次刷新起的内部查询" msgid "Questions (executed statements by the server)" msgstr "内部查询 (服务器执行的查询)" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "查询统计" @@ -1225,14 +1228,14 @@ msgid "System swap" msgstr "系统交换空间" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1284,32 +1287,32 @@ msgstr "已发送字节数" msgid "Bytes received" msgstr "已接收字节数" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "连接" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "字节" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1323,11 +1326,11 @@ msgstr "%d 张表" msgid "Questions" msgstr "内部查询" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "流量" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "设置" @@ -1347,11 +1350,11 @@ msgstr "添加图表" msgid "Please add at least one variable to the series" msgstr "请至少添加一个数据" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "无" @@ -1446,7 +1449,7 @@ msgstr "修改设置" msgid "Current settings" msgstr "当前设置" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 msgid "Chart Title" msgstr "图表标题" @@ -1530,7 +1533,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "时间" @@ -1628,10 +1631,10 @@ msgid "" "config..." msgstr "导入配置失败。正在重设为默认设置..." -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "导入" @@ -1685,9 +1688,9 @@ msgstr "已使用的 变量/公式" msgid "Test" msgstr "测试" -#: 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 +#: 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 msgid "Cancel" msgstr "取消" @@ -1699,11 +1702,11 @@ msgstr "正在加载" msgid "Processing Request" msgstr "正在处理请求" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "处理请求时发生错误" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "未选中数据库。" @@ -1715,9 +1718,9 @@ msgstr "正在删除字段" msgid "Adding Primary Key" msgstr "正在添加主键" -#: 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 +#: 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 msgid "OK" msgstr "确定" @@ -1757,19 +1760,19 @@ msgstr "隐藏索引" msgid "Show indexes" msgstr "显示索引" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "禁止选定不相关的主键" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "已启用" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1799,7 +1802,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "ENUM/SET 编辑器" @@ -1838,8 +1841,8 @@ msgstr "显示查询框" msgid "No rows selected" msgstr "没有选中任何行" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "修改" @@ -1847,18 +1850,18 @@ msgstr "修改" msgid "Query execution time" msgstr "查询执行时间" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "%d 不是有效行数。" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "保存" @@ -1870,7 +1873,7 @@ msgstr "隐藏搜索条件" msgid "Show search criteria" msgstr "显示搜索条件" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1918,12 +1921,12 @@ msgstr "查询结果" msgid "Data point content" msgstr "数据点内容" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "忽略" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "复制" @@ -1943,7 +1946,7 @@ msgstr "选择外键" msgid "Please select the primary key or a unique key" msgstr "请选择主键或唯一键" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "选择要显示的字段" @@ -2030,7 +2033,7 @@ msgstr "生成" msgid "Change Password" msgstr "修改密码" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "更多" @@ -2119,63 +2122,63 @@ msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "十二月" @@ -2213,32 +2216,32 @@ msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "周六" @@ -2356,16 +2359,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "每秒" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "每分钟" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "每小时" @@ -2386,45 +2389,230 @@ msgstr "配置文件权限错误,无法写入!" msgid "Font size" msgstr "字号" +#: libraries/DisplayResults.class.php:472 +msgid "Save edited data" +msgstr "保存已编辑的数据" + +#: libraries/DisplayResults.class.php:478 +msgid "Restore column order" +msgstr "恢复字段顺序" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +msgctxt "First page" +msgid "Begin" +msgstr "首页" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +msgctxt "Previous page" +msgid "Previous" +msgstr "上一页" + +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +msgctxt "Next page" +msgid "Next" +msgstr "下一页" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +msgctxt "Last page" +msgid "End" +msgstr "尾页" + +#: libraries/DisplayResults.class.php:673 +msgid "Start row" +msgstr "起始行" + +#: libraries/DisplayResults.class.php:677 +msgid "Number of rows" +msgstr "行数" + +#: libraries/DisplayResults.class.php:686 +msgid "Mode" +msgstr "模式" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "水平" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "水平 (旋转表头)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "垂直" + +#: libraries/DisplayResults.class.php:702 +#, fuzzy, php-format +#| msgid "Headers every %s rows" +msgid "Headers every %s rows" +msgstr "每 %s 行重复表头" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "主键排序" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "选项" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "部分内容" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "完整内容" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "关联键" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "关联显示字段" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "显示二进制内容" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "显示 BLOB 内容" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "以十六进制显示二进制内容" + +#: libraries/DisplayResults.class.php:1378 +msgid "Hide browser transformation" +msgstr "隐藏浏览器转换" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "已删除该行" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "杀死" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"可能接近。参见 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "查询中" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "显示行" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "总计" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "查询花费 %01.4f 秒" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "查询结果选项" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "打印预览 (全文显示)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "显示图表" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "可视化 GIS 数据" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "新建视图" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "找不到链接" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "错误信息太多,部分未显示。" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "文件不是上传的文件。" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "上传文件的大小超过 HTML 表单中指定的 MAX_FILE_SIZE 值。" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "仅上传了文件的一部分内容。" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "找不到临时文件夹。" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "将文件写入磁盘失败。" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "因扩展而停止文件上传。" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "上传文件时发生未知错误。" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2432,26 +2620,41 @@ msgstr "" "移动上传文件时发生错误,参见 [a@./Documentation.html#faq1_11@Documentation]" "FAQ 1.11[/a]。" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "移动上传的文件时发生错误。" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "无法读取移动后的上传文件。" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "打开新 phpMyAdmin 窗口" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "必须启用 Cookies 才能登录。" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "必须启用 Cookies 才能登录。" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "索引" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "唯一" @@ -2464,8 +2667,8 @@ msgstr "紧凑" msgid "Cardinality" msgstr "基数" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "注释" @@ -2486,128 +2689,128 @@ msgid "" "removed." msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "数据库" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "服务器" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "结构" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "插入" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "操作" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "追踪" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "数据表是空的!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "数据库是空的!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "查询" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "权限" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "程序" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "事件" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "设计器" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 msgid "Users" msgstr "用户" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "同步" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "二进制日志" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "变量" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "字符集" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "插件" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "引擎" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "错误" @@ -2629,7 +2832,7 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "插入了 %1$d 行。" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 msgid "Error while creating PDF:" msgstr "创建 PDF 时发生错误:" @@ -2721,16 +2924,98 @@ 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 +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 +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 +msgid "Value" +msgstr "值" + +#: libraries/TableSearch.class.php:205 +msgid "Table Search" +msgstr "普通搜索" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +msgid "Edit/Insert" +msgstr "编辑/插入" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "选择字段 (至少一个):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "添加搜索条件 (“where”语句的主体):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "每页行数" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "显示顺序:" + +#: libraries/TableSearch.class.php:813 +msgid "Use this column to label each point" +msgstr "使用该字段标记每个点" + +#: libraries/TableSearch.class.php:834 +msgid "Maximum rows to plot" +msgstr "显示的最多行数" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "浏览不相关的值" + +#: libraries/TableSearch.class.php:947 +msgid "Additional search criteria" +msgstr "附加搜索条件" + +#: libraries/TableSearch.class.php:1084 +msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" +msgstr "在两个不同的字段中执行 “依例查询” (通配符:“%”)" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "执行“依例查询”(通配符:“%”)" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "浏览/编辑点" + +#: libraries/TableSearch.class.php:1155 +msgid "How to use" +msgstr "如何使用" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "重置" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "找不到主题 %s 对应的图片路径!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "没有可用的预览。" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "确定" @@ -2749,7 +3034,7 @@ msgstr "未找到主题 %s !" msgid "Theme path not found for theme %s!" msgstr "找不到主题 %s 的路径" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "主题" @@ -3048,13 +3333,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "无法连接:无效的设置。" -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "欢迎使用 %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3062,7 +3347,7 @@ msgid "" msgstr "" "你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3076,60 +3361,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "mcrypt使用BlowFish失败" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "必须启用 Cookies 才能登录。" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "登录" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "您可以输入以空格分隔的主机名/IP地址和端口号。" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "服务器:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "用户名:" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "密码:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "选择服务器" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "必须启用 Cookies 才能登录。" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "空密码登录被禁止 (参见 允许空密码)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "登录超时 (%s 秒未活动),请重新登录" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "无法登录 MySQL 服务器" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "用户名/密码错误。拒绝访问。" @@ -3161,7 +3440,7 @@ msgstr "已共享" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "数据表" @@ -3173,13 +3452,13 @@ msgstr "数据表" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "数据" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "多余" @@ -3204,30 +3483,22 @@ msgstr "检查数据库“%s”的权限。" msgid "Check Privileges" msgstr "检查权限" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "可利用" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "监测到数值型键" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 msgid "Failed to read configuration file" msgstr "读取配置文件失败" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "这通常意味着文件中有语法错误,请检查下面显示出的错误。" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "无法加载默认配置: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3237,204 +3508,190 @@ msgid "" "configuration file!" msgstr "必须在您的配置文件中设置 $cfg['PmaAbsoluteUri'] !" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "无效的服务器索引: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "无效的主机名 %1$s,请检查配置文件。" -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "配置文件中设置的认证方式无效:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您应升级到 %s %s 或更高版本。" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "可利用" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "监测到数值型键" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "最大限制:%s %s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "文档" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "zh" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "en" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL 查询" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL 返回:" -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "连接到 SQL 校验器失败!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "解释 SQL" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "略过解释 SQL" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "无 PHP 代码" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "创建 PHP 代码" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "刷新" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "略过校验 SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "校验 SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "在本页面编辑此查询" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "快速编辑" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "概要" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "周日" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小时,%s 分 %s 秒" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 msgid "Missing parameter:" msgstr "缺少参数:" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -msgctxt "First page" -msgid "Begin" -msgstr "首页" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -msgctxt "Previous page" -msgid "Previous" -msgstr "上一页" - -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -msgctxt "Next page" -msgid "Next" -msgstr "下一页" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -msgctxt "Last page" -msgid "End" -msgstr "尾页" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "跳转到数据库“%s”。" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 msgid "Click to toggle" msgstr "点击切换" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "从计算机中上传:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "从网站服务器上传文件夹 %s 中选择:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "用于上传的文件夹出错,无法使用" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "没有可上传的文件" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "执行" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "打印" @@ -3464,8 +3721,8 @@ msgid "Closed" msgstr "关闭" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "已禁用" @@ -3606,9 +3863,9 @@ msgstr "还原默认值" msgid "Allow users to customize this value" msgstr "允许用户自定义该值" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "重置" @@ -3820,10 +4077,6 @@ msgstr "规划表结构" msgid "Show binary contents as HEX by default" msgstr "默认以十六进制显示二进制内容" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "以十六进制显示二进制内容" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "直接显示数据库列表而不使用下拉框" @@ -3876,7 +4129,7 @@ msgstr "设置脚本最大运行时间 (单位:秒,[kbd]0[/kbd] 为不限制 msgid "Maximum execution time" msgstr "最长执行时间" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "另存为文件" @@ -3885,7 +4138,7 @@ msgid "Character set of the file" msgstr "文件字符集" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "格式" @@ -3989,7 +4242,7 @@ msgid "MIME type" msgstr "MIME 类型" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "关系" @@ -5501,9 +5754,9 @@ msgstr "需要启用 SQL 校验器" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "密码" @@ -5780,31 +6033,24 @@ msgstr "请检查数据库目录的权限。" msgid "Details..." msgstr "详细..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"可能接近。参见 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用配置文件中定义的控制用户连接失败。" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "修改密码" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "无密码" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "重新输入" @@ -5825,22 +6071,22 @@ msgstr "新建数据库" msgid "Create" msgstr "创建" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "无权限" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "名字" @@ -5993,26 +6239,26 @@ msgstr "请下拉至所选格式并设置选项,其它格式请忽略。" msgid "Encoding Conversion:" msgstr "编码转换:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "为 %2$s.%3$s 创建版本 %1$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -6126,261 +6372,115 @@ msgstr "格式特定选项:" msgid "Language" msgstr "Language" -#: libraries/display_tbl.lib.php:419 -msgid "Save edited data" -msgstr "保存已编辑的数据" - -#: libraries/display_tbl.lib.php:425 -msgid "Restore column order" -msgstr "恢复字段顺序" - -#: libraries/display_tbl.lib.php:607 -msgid "Start row" -msgstr "起始行" - -#: libraries/display_tbl.lib.php:611 -msgid "Number of rows" -msgstr "行数" - -#: libraries/display_tbl.lib.php:620 -msgid "Mode" -msgstr "模式" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "水平" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "水平 (旋转表头)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "垂直" - -#: libraries/display_tbl.lib.php:636 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "每 %s 行重复表头" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "主键排序" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "选项" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "部分内容" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "完整内容" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "关联键" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "关联显示字段" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "显示二进制内容" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "显示 BLOB 内容" - -#: libraries/display_tbl.lib.php:1312 -msgid "Hide browser transformation" -msgstr "隐藏浏览器转换" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "已删除该行" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "杀死" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "查询中" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "显示行" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "总计" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "查询花费 %01.4f 秒" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "查询结果选项" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "打印预览 (全文显示)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "显示图表" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "可视化 GIS 数据" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "新建视图" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "找不到链接" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "版本信息" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "数据主文件夹" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "所有 InnoDB 数据文件的公共路径." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "数据文件" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "自动增加" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "数据表空间不足时自动增加的大小。" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "缓冲池大小" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "InnoDB 用于缓存数据和索引要使用的内存缓冲大小。" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "缓冲池" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB 状态" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "缓冲池使用情况" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "页数" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "空闲页" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "脏页" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "非空页" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "要刷新的页" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "负载页" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "锁定页" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "缓冲池活动" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "读请求" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "写请求" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "读缺失数" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "写等待数" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "读缺失率" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "写等待率" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "数据指针大小" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6388,22 +6488,22 @@ msgstr "" "默认数据指针的大小 (单位:字节),用于在没有指定 MAX_ROWS 选项的情况下创建 " "MyISAM 数据表。" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "自动恢复模式" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" "该模式用于自动恢复崩溃的 MyISAM 表,可在启动时使用 --myisam-recover 参数。" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "临时排序文件的最大大小" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6412,11 +6512,11 @@ msgstr "" "重建 MyISAM 索引时 MySQL 最多可以使用的临时文件大小 (在 REPAIR TABLE、ALTER " "TABLE 或 LOAD DATA INFILE 时)" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "创建索引的临时文件最大大小" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6425,11 +6525,11 @@ msgstr "" "如果用于创建 MyISAM 快速索引的临时文件大于在此指定的键缓存,则建议使用键缓" "存。" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "修复线程" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6437,11 +6537,11 @@ msgstr "" "如果该值大于 1,在进行排序过程的修复操作时 MyISAM 表的索引将会并发 (每个索引" "都有自己的线程) 创建" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "排序缓存大小" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6449,21 +6549,21 @@ msgstr "" "在修复表 (REPAIR TABLE) 的过程中进行排序 MyISAM 的索引或通过创建索引 (CREATE " "INDEX) 和修改表 (ALTER TABLE) 创建索引时所要分配的缓存大小。" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "索引缓存大小" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "用于索引缓存的内存大小。默认值为 32MB。该缓存仅用于缓存索引页。" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "记录缓存大小" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6472,51 +6572,51 @@ msgstr "" "用于缓存表数据的缓存内存大小。默认值为 32MB。该缓存用于记录句柄数据 (*.xtd) " "和行指针 (*.xtr) 文件。" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "日志缓存大小" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "用于缓存事务日志的内存缓冲区大小。默认值为 16MB。" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "日志文件阈值" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "回滚和新日志创建前事务日志的大小。默认值为 16MB。" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "事务缓存大小" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "全局事务日志缓存 (数据引擎会分配两个该大小的缓冲区)。默认值为 1MB。" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "检查点频率" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "在检查点前最大可以写入事务日志的最大数据大小。默认值为 24MB。" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "数据日志阈值" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6526,21 +6626,21 @@ msgstr "" "数据日志文件的最大大小。默认值为 64MB。PBXT 最多可以创建 32000 个数据日志,可" "用于所有的表。增加该值可以增加数据库所能存储数据的大小。" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "垃圾阈值" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "数据日志文件中压缩前无效数据所占的比率。值域为 1 到 99,默认值为50。" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "日志缓存大小" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6549,27 +6649,27 @@ msgstr "" "写入数据日志时使用的缓存大小。默认值为 256MB。数据引擎会为每一个需要进行数据" "日志写入的线程分配一个缓冲区。" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "数据文件增长大小" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "句柄数据文件 (*.xtd) 增长大小。" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "行文件增长大小" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "行指针文件 (*.xtr) 增长大小。" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "日志文件总数" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6579,18 +6679,18 @@ msgstr "" "系统维护的事务日志数量 (pbxt/system/*.xt)。如果日志数量大于此值,旧的日志将会" "被删除,或者被以升序数字序列重命名。" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "相关链接" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "PrimeBase XT 博客 —— Paul McCullagh 著" @@ -6637,14 +6737,14 @@ msgstr "转存表中的数据" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "事件" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 msgid "Definition" msgstr "定义" @@ -6702,14 +6802,14 @@ msgstr "显示 MIME 类型" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "主机" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "生成日期" @@ -6909,21 +7009,12 @@ msgstr "视图" msgid "Export contents" msgstr "导出内容" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "打开新 phpMyAdmin 窗口" - #: libraries/gis_visualization.lib.php:135 msgid "No data found for GIS visualization." msgstr "未找到用于 GIS 可视化的数据。" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" @@ -7019,12 +7110,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "数据表名" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "字段名" @@ -7090,91 +7181,75 @@ msgstr "SQL 兼容模式:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "不要给零值使用自增 (AUTO_INCREMENT)" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "函数" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "隐藏" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "二进制" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "因长度问题,
    该字段可能无法编辑 " -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "二进制 - 无法编辑" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "网站服务器上传文件夹" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -msgid "Edit/Insert" -msgstr "编辑/插入" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "继续插入 %s 行" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "然后" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "以新行插入" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略错误)" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "显示插入语句" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "返回上一页" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "插入新数据" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "返回到本页" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "编辑下一行" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "值" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -7189,34 +7264,34 @@ msgstr "无" msgid "Convert to Kana" msgstr "转换为假名" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 msgid "From" msgstr "从" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "到" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "提交" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "添加表前缀" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "添加前缀" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "您真的要" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "无更改" @@ -7426,80 +7501,80 @@ msgstr "刷新导航框架" msgid "This format has no options" msgstr "该格式没有选项" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "错误" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 msgctxt "Correctly working" msgid "OK" msgstr "正常" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "已启用" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "基本功能" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "显示功能" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "创建 PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "显示字段注释" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "浏览器转换" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "请参见文档中关于如何更新您的 column_comments 表" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "SQL 查询书签" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL 历史" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "持久最近使用的表" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "持久表界面设置" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "用户偏好" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "快速设置高级功能:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "通过 examples/create_tables.sql 创建必需的数据表。" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "创建一个用户并授予其访问上一步操作中创建的数据表的权限。" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7507,11 +7582,11 @@ msgstr "" "在配置文件 (config.inc.php) 中启用高级功能,参见 config." "sample.inc.php 中的范例。" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "请重新登录 phpMyAdmin 以加载新配置并使其生效。" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "无说明" @@ -7519,7 +7594,7 @@ msgstr "无说明" msgid "Slave configuration" msgstr "从服务器配置" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "修改或重新配置主服务器" @@ -7533,13 +7608,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "用户名" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "端口" @@ -7552,7 +7627,7 @@ msgid "Slave status" msgstr "从服务器状态" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "变量" @@ -7566,38 +7641,38 @@ msgid "" "this list." msgstr "仅通过 --report-host=主机名 参数启动的从服务器可见。" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "添加从复制用户" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "任意用户" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "使用文本域" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "任意主机" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "本地" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "此主机" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "使用主机表" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7611,7 +7686,7 @@ msgstr "生成密码" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7642,88 +7717,89 @@ msgstr "已创建事件 %1$s 。" msgid "One or more errors have occured while processing your request:" msgstr "处理请求时发生错误:" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 msgid "Edit event" msgstr "编辑事件" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 msgid "Error in processing request" msgstr "处理请求时的错误" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 msgid "Details" msgstr "详细" -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 msgid "Event name" msgstr "事件名称" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "事件类型" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, php-format msgid "Change to %s" msgstr "改为 %s" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "运行时间" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "运行周期" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 msgctxt "Start of recurring event" msgid "Start" msgstr "起始时间" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 msgctxt "End of recurring event" msgid "End" msgstr "终止时间" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 msgid "On completion preserve" msgstr "过期后禁用事件而不删除" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "用户" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "用户必须是 \"用户名@主机名\" 格式" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "请输入事件名称" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "请设置一个有效的运行周期。" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "请设置一个有效的运行时间。" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "请选择一个有效的事件类型。" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "请输入事件定义。" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "新建" @@ -7759,7 +7835,7 @@ msgstr "" "时可能会失败!
    请使用改进的 'mysqli' 扩展避免此类问题发生。" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "无效的程序类型: \"%s\"" @@ -7778,104 +7854,104 @@ msgstr "已修改程序 %1$s 。" msgid "Routine %1$s has been created." msgstr "已创建程序 %1$s 。" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 msgid "Edit routine" msgstr "编辑程序" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 msgid "Routine name" msgstr "程序名称" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "参数" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 msgid "Direction" msgstr "方向" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "长度/值" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "添加参数" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 msgid "Remove last parameter" msgstr "删除最后一个参数" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "返回类型" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 msgid "Return length/values" msgstr "返回长度/值" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 msgid "Return options" msgstr "返回选项" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "是否固定" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 msgid "Security type" msgstr "安全类型" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "SQL 数据访问" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "请输入程序名称" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "参数方向 \"%s\" 无效。" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 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:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "请输入每一个参数的名称并设置其类型。" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "请设置一个有效的返回类型。" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "请输入程序定义。" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, php-format msgid "Execution results of routine %s" msgstr "程序 %s 的运行结果" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "运行程序" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 msgid "Routine parameters" msgstr "程序参数" @@ -7893,36 +7969,36 @@ msgstr "已修改触发器 %1$s 。" msgid "Trigger %1$s has been created." msgstr "已创建触发器 %1$s 。" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 msgid "Edit trigger" msgstr "编辑触发器" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 msgid "Trigger name" msgstr "触发器名称" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 msgctxt "Trigger action time" msgid "Time" msgstr "时机" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "请输入触发器名称" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "请选择一个有效的触发时机" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "请选择一个有效的触发事件" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 msgid "You must provide a valid table name" msgstr "请选择一个有效的表" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "请输入触发器定义。" @@ -8006,7 +8082,7 @@ msgstr "没有事件。" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8015,7 +8091,7 @@ msgstr "数据表 %s 不存在!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8023,7 +8099,7 @@ msgid "Please configure the coordinates for table %s" msgstr "请配置表 %s 的并发" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8034,27 +8110,27 @@ msgstr "数据库 %s 的大纲 - 第 %s 页" msgid "This page does not contain any tables!" msgstr "此页没有包含任何表!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "大纲错误: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "关系大纲" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "目录" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "属性" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "额外" @@ -8160,7 +8236,7 @@ msgstr "未知的语言:%1$s." msgid "Current Server" msgstr "当前服务器" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "源数据库" @@ -8178,7 +8254,7 @@ msgstr "远程服务器" msgid "Difference" msgstr "差异" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "目标数据库" @@ -8197,7 +8273,7 @@ msgstr "在服务器 %s 运行 SQL 查询" msgid "Run SQL query/queries on database %s" msgstr "在数据库 %s 运行 SQL 查询" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "清除" @@ -8206,11 +8282,11 @@ msgstr "清除" msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "将此 SQL 查询加为书签" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "让所有用户均可访问此书签" @@ -8301,7 +8377,7 @@ msgid "" msgstr "" "SQL 校验程序无法初始化。请检查是否已经安装了%s文档%s内说明的必需 PHP 扩展。" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." @@ -8324,8 +8400,8 @@ msgid "" msgstr "对于默认值,请只输入单个值,不要加反斜杠或引号,请用此格式:a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "索引" @@ -8373,13 +8449,13 @@ msgstr "无" msgid "As defined:" msgstr "定义:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "主键" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "全文搜索" @@ -8393,17 +8469,17 @@ msgstr "" msgid "after %s" msgstr "于 %s 之后" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "添加 %s 个字段" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "至少要添加一个字段。" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "存储引擎" @@ -8411,41 +8487,6 @@ msgstr "存储引擎" msgid "PARTITION definition" msgstr "分区定义" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -msgid "Table Search" -msgstr "普通搜索" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "选择字段 (至少一个):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "添加搜索条件 (“where”语句的主体):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "每页行数" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "显示顺序:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "浏览不相关的值" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "执行“依例查询”(通配符:“%”)" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8576,11 +8617,11 @@ msgstr "" msgid "Manage your settings" msgstr "管理我的设置" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "设置已保存" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8591,7 +8632,7 @@ msgstr "你的偏好将仅作用于本次会话。要想永久保存需要 %sphp msgid "Could not save configuration" msgstr "无法保存设置" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8618,7 +8659,7 @@ msgstr "服务器连接校对" msgid "Appearance Settings" msgstr "外观设置" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "更多设置" @@ -8638,9 +8679,9 @@ msgstr "软件版本" msgid "Protocol version" msgstr "协议版本" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "用户" @@ -8766,128 +8807,128 @@ msgid "" "issues." msgstr "服务器上运行了 Suhosin。请先查看%s文档%s中是否有类似的情况。" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "无数据库" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "Filter tables by name" msgid "Filter databases by name" msgstr "根据表名快速搜索" -#: navigation.php:291 +#: navigation.php:239 msgid "Filter tables by name" msgstr "根据表名快速搜索" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "新建数据表" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "请选择数据库" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "显示/隐藏左侧菜单" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "保存位置" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "创建关系" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "重新载入" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "帮助" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "规则连接" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "直接连接" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "对齐网格" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "全部收缩/展开" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "反向收缩/展开" -#: pmd_general.php:120 +#: pmd_general.php:122 msgid "Toggle relation lines" msgstr "显示/隐藏关系线" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "为 PDF 大纲导入/导出坐标" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "生成查询" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "移动菜单" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "全部隐藏/显示" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "隐藏/显示没有关联的表" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "数据表数量" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "删除关系" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "关系运算符" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "EXCEPT" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "子查询" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "改名为" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "新名称" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "聚合" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "当前选项" @@ -8899,51 +8940,51 @@ msgstr "已创建页面" msgid "Page creation failed" msgstr "页面创建失败" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "页面" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "从所选页导入" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "导出至所选页" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "导出至新页" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "新页面名: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "按比例导出/导入" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "推荐" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "错误:关系已存在" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "错误:关系未添加" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "已添加外键关联" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "已添加内联关系" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "已删除关系" @@ -8955,51 +8996,51 @@ msgstr "保存设计器坐标时出错。" msgid "Modifications have been saved" msgstr "已保存修改。" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "无法保存设置,提交的表单中有错误" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "无法导入设置" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "部分设置含有错误的数据。" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "是否导入其余的设置?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "保存于:@DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "从文件导入" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "从浏览器存储中导入" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "设置将从浏览器的本地存储中导入。" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "你没有已保存的设置!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "你所使用的浏览器不支持此功能" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "与当前设置合并" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " @@ -9007,36 +9048,36 @@ msgid "" msgstr "" "你可以通过修改 config.inc.php 文件进行更多设置,如通过使用%s安装脚本%s。" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "保存到浏览器存储" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "设置将保存到浏览器的本地存储。" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "现有设置将被覆盖!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "你可以重置并将所有设置恢复为默认值。" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "导入文件" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "全部" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "找不到 %s 表或还未在 %s 设置" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "文件不存在" @@ -9044,17 +9085,17 @@ msgstr "文件不存在" msgid "Select binary log to view" msgstr "选择要查看的二进制日志" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "文件" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "截断显示的查询" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "显示完整查询" @@ -9070,7 +9111,7 @@ msgstr "位置" msgid "Original position" msgstr "初始位置" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "信息" @@ -9078,31 +9119,31 @@ msgstr "信息" msgid "Character Sets and Collations" msgstr "字符集和整理" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "已成功删除 %s 个数据库。" -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "数据库统计" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "主复制" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "从复制" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "启用统计" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9113,208 +9154,208 @@ msgstr "" msgid "Storage Engines" msgstr "存储引擎" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "查看数据库的转存(大纲)" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "模块" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "开始" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "插件" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "模块" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "库" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "版本" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "作者" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "授权" -#: server_plugins.php:163 +#: server_plugins.php:166 msgid "disabled" msgstr "已禁用" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "除了授权 (GRANT) 以外的所有权限。" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "允许修改现有数据表的结构。" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "允许修改或删除储存过程。" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "允许创建新数据库和数据表。" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "允许创建存储过程。" -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "允许创建新数据表。" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "允许创建临时表。" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "允许创建、删除和重命名用户账户。" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "允许创建视图。" -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "允许删除数据。" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "允许删除数据库和数据表。" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "允许删除数据表。" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "允许为事件触发器设置事件" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "允许运行存储过程。" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "允许从文件中导入数据以及将数据导出至文件。" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允许添加用户和权限,而不允许重新载入权限表。" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "允许创建和删除索引。" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "允许插入和替换数据。" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "允许锁定当前线程的表。" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "限制用户每小时打开的新连接数。" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "限制用户每小时可发送到服务器的查询数。" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "限制用户每小时可执行的修改任何数据表或数据库的命令数。" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "限制该用户的并发连接数。" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "允许查看所有用户的进程" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "在此版本的 MySQL 中无效。" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "允许重新载入服务器设置并刷新服务器的缓存。" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "用户有权询问附属者/控制者在哪里。" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "回复附属者所需。" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "允许读取数据。" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "允许访问完整的数据库列表。" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "允许执行 SHOW CREATE VIEW 查询。" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "允许关闭服务器。" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9323,162 +9364,162 @@ msgstr "" "允许在达到最大连接数时连接,对于大多数像设置全局变量或杀死其它用户线程这样的" "管理操作是必需的。" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "允许创建和删除触发器" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "允许修改数据。" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "无权限。" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "无" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "按表指定权限" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "注意:MySQL 权限名称会以英文显示 " -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "管理" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "全局权限" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "按数据库指定权限" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "资源限制" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意:若将这些选项设为 0(零) 即不限制。" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "登录信息" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "保持原密码" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "未找到用户。" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "用户 %s 己存在!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "您已添加了一个新用户。" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的权限。" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "您已撤销 %s 的权限" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密码已修改。" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "正在删除 %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "没有选择要删除的用户!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "重新载入权限" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "已成功删除选中的用户。" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "已成功重新载入权限。" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "编辑权限" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "撤销" -#: server_privileges.php:1575 +#: server_privileges.php:1576 msgid "Export all" msgstr "全部导出" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "任意" -#: server_privileges.php:1677 +#: server_privileges.php:1682 msgid "Privileges for all users" msgstr "所有用户的权限" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "权限" -#: server_privileges.php:1718 +#: server_privileges.php:1726 msgid "Users overview" msgstr "用户概况" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "授权" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "删除选中的用户" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "撤销用户所有权限,然后删除用户。" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "删除与用户同名的数据库。" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9490,127 +9531,127 @@ msgstr "" "将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" "限%s。" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "在权限表内找不到选中的用户。" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "按字段指定权限" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "在下列数据库添加权限" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "要使用通配符 _ 和 % 本身,应使用用 \\ 转义" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "在下列数据表添加权限" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "修改登录信息/复制用户" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "创建具有相同权限的新用户然后 ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... 保留旧用户。" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... 从用户表中删除旧用户。" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... 撤销旧用户的所有权限,然后删除旧用户。" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... 从用户表中删除旧用户,然后重新载入权限。" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "用户数据库" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "创建与用户同名的数据库并授予所有权限" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "授予数据库“%s”的所有权限。" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "用户可以访问“%s”" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "全局" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "按数据库指定" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "通配符" -#: server_privileges.php:2571 +#: server_privileges.php:2578 msgid "User has been added." msgstr "用户已添加。" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "未知错误" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "无法连接到主服务器 %s 。" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "无法读取主服务器日志。主服务器的权限设置可能有问题。" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "无法修改主服务器" -#: server_replication.php:102 +#: server_replication.php:104 #, php-format msgid "Master server changed successfully to %s" msgstr "已成功修改主服务器到 %s" -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "此服务器已被配置为一个复制进程中的主服务器。" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "查看主服务器状态" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "查看已连接的从服务器" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9619,11 +9660,11 @@ msgstr "" "此服务器尚未配置为一个复制进程中的主服务器。你想现在配置" "吗?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "主服务器配置" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9634,25 +9675,25 @@ msgstr "" "此服务器尚未配置为一个复制进程中的主服务器。你可以选择复制所有但忽略某些数据" "库 (当你想复制大多数数据库时很有用) 或者仅复制某些数据库。请选择模式:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "复制所有数据库,除了:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "仅复制:" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "请选择数据库:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "现在,将下列行添加到你的 my.cnf 文件最后,然后重新启动 MySQL 服务器。" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -9661,80 +9702,80 @@ msgstr "" "当 MySQL 服务器重新启动后,请点击 执行 按钮。你应该看见一条提示信息说此服务器" "已经被配置为主服务器" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "从 SQL 线程未启动!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "从 IO 线程未启动!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "服务器已被配置为一个复制进程中的从服务器。你是否要:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "查看从服务器状态" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "根据主服务器同步数据库" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "控制从服务器:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "全部启动" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "全部停止" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "重置从服务器" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "仅启动 SQL 线程" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "仅停止 SQL 线程" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "仅启动 IO 线程" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "仅停止 IO 线程" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "错误管理:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "忽略错误可能导致主从服务器间不同步!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "忽略当前错误" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "忽略下" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "个错误。" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -9743,132 +9784,132 @@ msgstr "" "此服务器尚未配置为一个复制进程中的从服务器。你想现在配置" "吗?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "已成功杀死线程 %s 。" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 无法杀死线程 %s。该线程可能已经关闭。" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "句柄" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "查询缓存" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "线程" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "临时数据" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "延迟插入" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "键缓存" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "多表查询" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "排序" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "事务协调" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "强制更新 (关闭) 所有表" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "显示打开的表" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "显示从服务器" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "显示从服务器状态" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "强制更新查询缓存" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "运行信息" -#: server_status.php:793 +#: server_status.php:792 msgid "All status variables" msgstr "所有状态变量" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "监控" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "建议" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 msgid "Refresh rate: " msgstr "刷新频率: " -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 msgid "Filters" msgstr "过滤器" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 msgid "Containing the word:" msgstr "包含文字:" -#: server_status.php:853 +#: server_status.php:852 msgid "Show only alert values" msgstr "仅显示报警值" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "按分类显示" -#: server_status.php:871 +#: server_status.php:870 msgid "Show unformatted values" msgstr "显示原始值" -#: server_status.php:875 +#: server_status.php:874 msgid "Related links:" msgstr "相关链接:" -#: server_status.php:908 +#: server_status.php:907 msgid "Run analyzer" msgstr "运行分析器" -#: server_status.php:909 +#: server_status.php:908 msgid "Instructions" msgstr "说明" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "建议系统可以通过分析服务器状态变量对服务器变量的设置提出建议。" -#: server_status.php:918 +#: server_status.php:917 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 " @@ -9877,7 +9918,7 @@ msgstr "" "请注意本系统所提出的建议建立在简单计算以及通用场合中,可能并不能满足您系统的" "实际需求。" -#: server_status.php:920 +#: server_status.php:919 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 " @@ -9886,7 +9927,7 @@ msgstr "" "在修改任何设置之前,请确定您确实知道在修改什么设置 (通过阅读文档) 并知道如何" "撤销改变。错误的设置可能导致与预期完全相反的结果。" -#: server_status.php:922 +#: server_status.php:921 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 " @@ -9896,45 +9937,45 @@ msgstr "" "效果就撤销改变。" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, php-format msgid "Questions since startup: %s" msgstr "自启动以来的内部查询: %s" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "说明" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "查询数量" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "自启动以来的网络流量: %s" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9942,11 +9983,11 @@ msgstr "" "要获得更多关于此服务器的复制状态,请查看复制状态信息" "。" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "复制状态" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9954,45 +9995,45 @@ msgstr "" "在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正" "确" -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "已接收" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "已发送" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "最大并发连接数" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "已失败" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "已取消" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "命令" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "因客户端没有关闭连接而中止的连接数。" -#: server_status.php:1321 +#: server_status.php:1320 msgid "The number of failed attempts to connect to the MySQL server." msgstr "尝试连接到 MySQL 服务器但失败的连接数。" -#: server_status.php:1322 +#: server_status.php:1321 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 " @@ -10001,16 +10042,16 @@ msgstr "" "因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储" "的数量。" -#: server_status.php:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "事务所用的临时二进制日志缓存的数量。" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "尝试连接到 MySQL 服务器的连接数 (不论成功或失败) 。" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10020,17 +10061,17 @@ msgstr "" "服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables " "很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "mysqld 已创建的临时文件的数量。" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "服务器执行语句时自动在内存中创建的临时表的数量。" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10038,29 +10079,29 @@ msgstr "" "发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复" "值) 。" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "延迟插入已写入的行数。" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "已执行的强制更新 (FLUSH) 语句数。" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "已执行的内部提交 (COMMIT) 语句数。" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "从表中删除行的次数。" -#: server_status.php:1334 +#: 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 " @@ -10069,7 +10110,7 @@ msgstr "" "如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。" "Handler_discovery 表明了一张表被发现的次数。" -#: server_status.php:1335 +#: 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, " @@ -10078,14 +10119,14 @@ msgstr "" "读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫" "描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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 " @@ -10094,7 +10135,7 @@ msgstr "" "根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或" "进行完整表扫描,该值将会不断增长。" -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10102,7 +10143,7 @@ msgstr "" "根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... " "DESC 的查询。" -#: server_status.php:1339 +#: 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 " @@ -10112,7 +10153,7 @@ msgstr "" "根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能" "有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10122,35 +10163,35 @@ msgstr "" "从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味" "着你的表没有做好索引,或者你的查询语句没有使用好索引字段。" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "内部回滚 (ROLLBACK) 语句数。" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "表中更新行的请求数。" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "表中插入行的请求数。" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "非空页数 (含脏页) 。" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "当前脏页数。" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "请求更新的缓冲池页数。" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "空闲页数。" -#: server_status.php:1348 +#: 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 " @@ -10159,7 +10200,7 @@ msgstr "" "InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能" "被刷新或删除的。" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10170,11 +10211,11 @@ msgstr "" "公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data 。" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "缓冲池总大小 (单位:页)。" -#: server_status.php:1351 +#: 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." @@ -10182,24 +10223,24 @@ msgstr "" "InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发" "生。" -#: server_status.php:1352 +#: server_status.php:1351 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:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的逻辑读请求数。" -#: server_status.php:1354 +#: 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 "InnoDB 进行逻辑读取时无法从缓冲池中获取而执行单页读取的次数。" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10211,85 +10252,85 @@ msgstr "" "必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这" "个值应该会很小。" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "写入 InnoDB 缓冲池的次数。" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "fsync() 总操作的次数。" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "当前挂起 fsync() 操作的数量。" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "当前挂起的读操作数。" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "当前挂起的写操作数。" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "读取的总数据量 (单位:字节)。" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "数据读取总数。" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "数据写入总数。" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "写入的总数据量 (单位:字节)。" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "以双写入操作写入的页数。" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "已经执行的双写入次数。" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "日志写入请求数。" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "日志物理写入次数。" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 写入日志文件的次数。" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "当前挂起的 fsync 日志文件数。" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "当前挂起的日志写入数。" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "写入日志文件的字节数。" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "创建的页数。" -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10297,81 +10338,81 @@ msgstr "" "编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方" "便地将这些值转化为字节数。" -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "读取的页数。" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "写入的页数。" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "正在等待行锁的数量。" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的平均时间 (单位:毫秒)。" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待获得行锁的总时间 (单位:毫秒)。" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的最大时间 (单位:毫秒)。" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "等待行锁的次数。" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "从 InnoDB 表中删除的行数。" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 表中的行数。" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "从 InnoDB 表中读取的行数。" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行数。" -#: server_status.php:1387 +#: 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 "" "键缓存中还没有被写入到磁盘的键块数。该值过去名为 Not_flushed_key_blocks 。" -#: server_status.php:1388 +#: 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." msgstr "键缓存中未使用的块数。你可以根据这个值判断当前使用了多少键缓存。" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "导入文件的格式" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "从缓存中读取键块的请求次数。" -#: server_status.php:1392 +#: 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 " @@ -10380,26 +10421,26 @@ msgstr "" "从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size " "可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "将一个键块写入缓存的请求数。" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "将键块物理写入到磁盘的次数。" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -10408,35 +10449,35 @@ msgstr "" "最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行" "相同的查询时的效率差异。默认值0表示还没有查询被编译。" -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "自服务器启动以来的最高并发连接数。" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待写入延迟插入队列的行数。" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "打开的文件个数。" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "打开的流个数 (主要用于日志记录)。" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "打开的数据表个数。" -#: server_status.php:1404 +#: server_status.php:1403 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 " @@ -10445,19 +10486,19 @@ msgstr "" "查询缓存中的空闲内存块。过多的空闲内存块可能产生碎片,可通过执行 FLUSH QUERY " "CACHE 语句解决。" -#: server_status.php:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "查询缓存中空闲的内存总数。" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "缓存命中数。" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "加入到缓存的查询数。" -#: server_status.php:1408 +#: 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 " @@ -10467,7 +10508,7 @@ msgstr "" "为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除" "哪个已缓存的查询。该信息可帮助您调整查询缓存大小。" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10475,19 +10516,19 @@ msgstr "" "未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的" "查询)。" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "在缓存中注册的查询数。" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "查询缓存中的总块数。" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "失败保护器的状态 (尚未应用)。" -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10495,11 +10536,11 @@ msgstr "" "没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当" "的索引。" -#: server_status.php:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "使用在关联表上使用范围搜索的多表查询的数量。" -#: server_status.php:1415 +#: 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.)" @@ -10507,7 +10548,7 @@ msgstr "" "没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细" "检查是否已经为表建立了适当的索引。)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10515,36 +10556,36 @@ msgstr "" "在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影" "响。)" -#: server_status.php:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "在第一张表上进行了完整表扫描的多表查询数。" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "当前由从 SQL 线程打开的临时表的数量。" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "从 SQL 线程总共重试事务复制数。" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多时间的查询数。" -#: server_status.php:1423 +#: server_status.php:1422 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 " @@ -10553,23 +10594,23 @@ msgstr "" "排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 " "sort_buffer_size 的值。" -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "局部范围完成的排序次数。" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "排序的行数。" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "扫描表完成的排序次数。" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要锁定表的次数。" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10579,7 +10620,7 @@ msgstr "" "无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题," "则应该首先检查您的查询语句,然后使用复制操作来分开表。" -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -10588,11 +10629,11 @@ msgstr "" "线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。" "如果该值是红色的,则应该增加 thread_cache_size 的值。" -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "当前打开的连接数。" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10603,64 +10644,64 @@ msgstr "" "thread_cache_size 的值 (如果线程状况良好,这么做通常并不会带来显著的性能提" "升)。" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Thread cache hit rate %%" msgid "Thread cache hit rate (calculated value)" msgstr "线程缓存命中率 %%" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "非睡眠状态的线程数量。" -#: server_status.php:1579 +#: server_status.php:1578 msgid "Start Monitor" msgstr "启动监控" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "说明/设置" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "完成排列/编辑图表" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 msgid "Add chart" msgstr "添加图表" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "排列/编辑图表" -#: server_status.php:1606 +#: server_status.php:1605 msgid "Refresh rate" msgstr "刷新频率" -#: server_status.php:1611 +#: server_status.php:1610 msgid "Chart columns" msgstr "每行图表个数" -#: server_status.php:1627 +#: server_status.php:1626 msgid "Chart arrangement" msgstr "图表排列" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 msgid "Reset to default" msgstr "恢复默认" -#: server_status.php:1632 +#: server_status.php:1631 msgid "Monitor Instructions" msgstr "监控说明" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10672,7 +10713,7 @@ msgstr "" "需要将 log_output 设置为 'TABLE' 并启用 slow_query_log 或 general_log 功能。" "请注意,general_log 会产生很多数据并可能增加服务器负载多达 15%" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10682,11 +10723,11 @@ msgstr "" "很遗憾你的数据库服务器不支持日志记录到表,这是使用 phpMyAdmin 分析数据库日志" "的必要功能。MySQL 自 5.1.6 起有该功能。但你仍然可以使用服务器图表功能。" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "使用监控:" -#: server_status.php:1653 +#: server_status.php:1652 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 " @@ -10695,7 +10736,7 @@ msgstr "" "您的浏览器将会以一定的频率刷新所有已显示的图表。您可以在'设置'中添加图表或修" "改刷新频率,您也可以通过每个图表的齿轮图标来删除图表。" -#: server_status.php:1655 +#: server_status.php:1654 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 " @@ -10705,11 +10746,11 @@ msgstr "" "要从日志中显示查询,请通过按下鼠标左键并拖拽选择一段时间范围。确定后,将会显" "示出分好组的查询,您可以点击任意 SELECT 查询以进一步分析。" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "请注意:" -#: server_status.php:1664 +#: server_status.php:1663 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,212 +10761,212 @@ msgstr "" "载的任务,建议选择一段小范围的时间并在用完监控后禁止 general_log 并清空它的" "表。" -#: server_status.php:1676 +#: server_status.php:1675 msgid "Preset chart" msgstr "预置图表" -#: server_status.php:1680 +#: server_status.php:1679 msgid "Status variable(s)" msgstr "状态变量" -#: server_status.php:1682 +#: server_status.php:1681 msgid "Select series:" msgstr "选择数据:" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "常用监控" -#: server_status.php:1699 +#: server_status.php:1698 msgid "or type variable name:" msgstr "或输入变量名:" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "独立显示" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "应用除数" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "在值后附加单位" -#: server_status.php:1718 +#: server_status.php:1717 msgid "Add this series" msgstr "添加该数据" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "清除所有数据" -#: server_status.php:1723 +#: server_status.php:1722 msgid "Series in Chart:" msgstr "图表中的数据:" -#: server_status.php:1736 +#: server_status.php:1735 msgid "Log statistics" msgstr "日志统计" -#: server_status.php:1737 +#: server_status.php:1736 msgid "Selected time range:" msgstr "选择时间范围:" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "仅统计 SELECT、INSERT、UPDATE 和 DELETE 语句" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "去除 INSERT 语句中的变量值以获得更好的分组" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "请选择生成统计的来源日志。" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "结果将根据查询语句分组。" -#: server_status.php:1759 +#: server_status.php:1758 msgid "Query analyzer" msgstr "查询分析器" -#: server_status.php:1808 +#: server_status.php:1807 #, php-format msgid "%d second" msgid_plural "%d seconds" msgstr[0] "%d 秒" -#: server_status.php:1811 +#: server_status.php:1810 #, php-format msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d 分" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "无法连接到源数据库" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "无法连接到目标数据库" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "数据库 '%s' 不存在。" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "结构同步" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "数据同步" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "未找到" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "结构差异" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "数据差异" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "增加字段" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "删除字段" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "修改字段" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "删除索引" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "增加索引" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "更新行" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "增加行" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "你希望删除当前目标表中的所有数据吗?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "应用选中的修改" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "同步数据库" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "选中的数据表已根据源数据表同步。" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "已根据源数据库同步目标数据库" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 msgid "Executed queries" msgstr "已执行的查询" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "手动输入" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "当前连接" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "配置: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "套接字" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "目标数据库将完全根据源数据库同步。源数据库将保持不变。" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "设置变量失败" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "服务器变量和设置" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "会话值" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "全局值" @@ -11234,157 +11275,157 @@ msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。" msgid "Wrong data" msgstr "无效数据" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用书签 \"%s\" 作为默认的查询。" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "您真的要" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "显示为 PHP 代码" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "已校验的 SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL 查询结果" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "生成者" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "数据表 `%s` 的索引存在问题" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "标签" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s " -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "已成功删除选中的用户。" -#: tbl_chart.php:80 +#: tbl_chart.php:83 msgctxt "Chart type" msgid "Bar" msgstr "柱状图" -#: tbl_chart.php:82 +#: tbl_chart.php:85 msgctxt "Chart type" msgid "Column" msgstr "柱状图" -#: tbl_chart.php:84 +#: tbl_chart.php:87 msgctxt "Chart type" msgid "Line" msgstr "折线图" -#: tbl_chart.php:86 +#: tbl_chart.php:89 msgctxt "Chart type" msgid "Spline" msgstr "曲线图" -#: tbl_chart.php:89 +#: tbl_chart.php:92 msgctxt "Chart type" msgid "Pie" msgstr "饼图" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "堆叠" -#: tbl_chart.php:96 +#: tbl_chart.php:99 msgid "Chart title" msgstr "图表标题" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "横坐标:" -#: tbl_chart.php:118 +#: tbl_chart.php:121 msgid "Series:" msgstr "数据:" -#: tbl_chart.php:138 +#: tbl_chart.php:141 msgid "X-Axis label:" msgstr "横坐标名称:" -#: tbl_chart.php:140 +#: tbl_chart.php:143 msgid "X Values" msgstr "横值" -#: tbl_chart.php:141 +#: tbl_chart.php:144 msgid "Y-Axis label:" msgstr "纵坐标名称:" -#: tbl_chart.php:142 +#: tbl_chart.php:145 msgid "Y Values" msgstr "纵值" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "数据表 %s 已存在!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "创建数据表 %1$s 成功。" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "查看数据表的转存(大纲)。" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 msgid "Display GIS Visualization" msgstr "显示可视化 GIS" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "宽" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "高" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 msgid "Label column" msgstr "名称字段" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 msgid "-- None --" msgstr "-- 无 --" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 msgid "Spatial column" msgstr "空间字段" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "重绘" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 msgid "Save to file" msgstr "保存文件" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 msgid "File name" msgstr "文件名" @@ -11400,28 +11441,28 @@ msgstr "无法将索引改为主键 (PRIMARY) !" msgid "No index parts defined!" msgstr "没有定义的索引部分!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "添加索引" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 msgid "Edit index" msgstr "编辑索引" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "索引名称:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(“PRIMARY”必须而且只能作为主键的名称!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "索引类型:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "添加 %s 个索引字段" @@ -11444,256 +11485,256 @@ msgstr "已将数据表 %s 移动到 %s。" msgid "Table %s has been copied to %s." msgstr "已将数据表 %s 复制为 %s。" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "表名不能为空!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "更改表的排序,根据" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(逐一)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "将数据表移动到(数据库名.数据表名):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "表选项" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "将表改名为" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "将数据表复制到(数据库名.数据表名):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "切换到复制的数据表" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "表维护" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "整理表碎片" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "已强制更新表 %s " -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "刷新表 (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "删除数据或数据表" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "清空数据表 (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "删除数据表 (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "分区维护" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "分区 %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "分析" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "检查" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "优化" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "重建" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "修复" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "删除分区" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "检查引用完整性:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 msgid "Showing tables" msgstr "正在显示表" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "已用空间" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "有效" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "行统计" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "静态" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "动态" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "行长度" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "行大小 " -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "下一个自增值" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "在 %1$s 创建外键时发生错误 (检查数据类型)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "内联" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "不需要一个和外键关系一致的内联关系" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "外键约束" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "空间" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "浏览非重复值 (DISTINCT)" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "添加主键" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "添加唯一键" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 msgid "Add SPATIAL index" msgstr "添加空间索引" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "添加全文索引" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "无" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "已删除字段 %s " -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "已将 %s 设为主键" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "已将 %s 设为索引" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "显示更多操作" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "删除字段" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 msgid "Edit view" msgstr "编辑视图" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "关系查看" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "规划表结构" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "添加字段" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "于表结尾" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "于表开头" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "于 %s 之后" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "在第 %s 个字段创建索引" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "已分区" @@ -11848,67 +11889,37 @@ msgstr "追踪下列数据操作语句:" msgid "Create version" msgstr "创建版本" -#: tbl_zoom_select.php:231 -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "在两个不同的字段中执行 “依例查询” (通配符:“%”)" - -#: tbl_zoom_select.php:241 -msgid "Additional search criteria" -msgstr "附加搜索条件" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "使用该字段标记每个点" - -#: tbl_zoom_select.php:314 -msgid "Maximum rows to plot" -msgstr "显示的最多行数" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "浏览/编辑点" - -#: tbl_zoom_select.php:437 -msgid "How to use" -msgstr "如何使用" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "重置" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "获得更多主题!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "可用的 MIME 类型" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "以斜体显示的 MIME 类型没有单独的转换函数" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "可用的转换" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "说明" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "权限不足!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "配置文件己更新。" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "视图名" diff --git a/po/zh_TW.po b/po/zh_TW.po index 6c59fbc5c2..04bf6338f6 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ 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-04 13:49+0200\n" +"POT-Creation-Date: 2012-06-18 10:54+0200\n" "PO-Revision-Date: 2012-05-23 10:16+0200\n" "Last-Translator: MoA Chung \n" "Language-Team: chinese_traditional \n" @@ -14,21 +14,21 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 1.0\n" -#: browse_foreigners.php:37 browse_foreigners.php:61 js/messages.php:354 -#: libraries/display_tbl.lib.php:517 server_privileges.php:1830 +#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 +#: libraries/DisplayResults.class.php:577 server_privileges.php:1838 msgid "Show all" msgstr "全部顯示" -#: browse_foreigners.php:78 libraries/PDF.class.php:50 -#: libraries/common.lib.php:2479 -#: libraries/schema/Pdf_Relation_Schema.class.php:1145 -#: libraries/schema/Pdf_Relation_Schema.class.php:1169 +#: browse_foreigners.php:77 libraries/PDF.class.php:50 +#: libraries/common.lib.php:2545 +#: libraries/schema/Pdf_Relation_Schema.class.php:1178 +#: libraries/schema/Pdf_Relation_Schema.class.php:1202 #: libraries/schema/User_Schema.class.php:399 #: libraries/select_lang.lib.php:508 msgid "Page number:" msgstr "頁碼:" -#: browse_foreigners.php:161 +#: browse_foreigners.php:94 msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " @@ -37,58 +37,58 @@ msgstr "" "無法更新目標瀏覽視窗。可能您已經關閉了父視窗或您瀏覽器的安全設定阻止了跨視窗" "更新" -#: browse_foreigners.php:183 libraries/Menu.class.php:276 -#: libraries/Menu.class.php:370 libraries/common.lib.php:3186 -#: libraries/common.lib.php:3193 libraries/common.lib.php:3422 -#: libraries/common.lib.php:3423 +#: browse_foreigners.php:168 libraries/Menu.class.php:264 +#: libraries/Menu.class.php:358 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:186 db_operations.php:409 db_operations.php:449 -#: db_operations.php:562 db_operations.php:591 db_search.php:352 -#: gis_data_editor.php:314 js/messages.php:231 -#: libraries/auth/cookie.auth.lib.php:264 libraries/core.lib.php:533 -#: libraries/display_change_password.lib.php:72 +#: browse_foreigners.php:171 db_operations.php:415 db_operations.php:455 +#: db_operations.php:568 db_operations.php:597 db_search.php:355 +#: 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/display_tbl.lib.php:1336 libraries/insert_edit.lib.php:1371 -#: libraries/insert_edit.lib.php:1406 libraries/replication_gui.lib.php:76 -#: libraries/replication_gui.lib.php:375 libraries/rte/rte_events.lib.php:493 -#: libraries/rte/rte_routines.lib.php:971 -#: libraries/rte/rte_routines.lib.php:1461 -#: libraries/rte/rte_triggers.lib.php:373 +#: libraries/insert_edit.lib.php:1370 libraries/insert_edit.lib.php:1405 +#: 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_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/tbl_select.lib.php:763 pmd_pdf.php:142 prefs_manage.php:271 -#: prefs_manage.php:322 server_binlog.php:104 server_privileges.php:845 -#: server_privileges.php:1964 server_privileges.php:2328 -#: server_privileges.php:2375 server_privileges.php:2407 -#: server_replication.php:262 server_replication.php:346 -#: server_replication.php:377 server_synchronize.php:1480 tbl_indexes.php:306 -#: tbl_operations.php:287 tbl_operations.php:324 tbl_operations.php:532 -#: tbl_operations.php:595 tbl_operations.php:798 tbl_structure.php:717 -#: tbl_structure.php:749 tbl_tracking.php:489 tbl_tracking.php:631 -#: tbl_zoom_select.php:329 view_create.php:177 view_operations.php:94 +#: 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_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_tracking.php:489 tbl_tracking.php:631 view_create.php:189 +#: view_operations.php:94 msgid "Go" msgstr "執行" -#: browse_foreigners.php:201 browse_foreigners.php:205 +#: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:457 tbl_tracking.php:365 msgid "Keyname" msgstr "鍵名" -#: browse_foreigners.php:202 browse_foreigners.php:204 +#: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 -#: server_plugins.php:128 server_status.php:1499 +#: server_plugins.php:131 server_status.php:1498 msgid "Description" msgstr "說明" -#: browse_foreigners.php:289 browse_foreigners.php:299 -#: browse_foreigners.php:315 browse_foreigners.php:327 +#: browse_foreigners.php:274 browse_foreigners.php:284 +#: browse_foreigners.php:300 browse_foreigners.php:312 msgid "Use this value" msgstr "使用此值" @@ -104,88 +104,89 @@ msgstr "本系統不支援 %s 格式,詳情請參考 www.phpmyadmin.net" msgid "Database %1$s has been created." msgstr "建立資料庫 %1$s 成功" -#: db_datadict.php:49 db_operations.php:401 +#: db_datadict.php:49 db_operations.php:407 msgid "Database comment: " msgstr "資料庫註釋: " -#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1282 -#: libraries/tbl_properties.inc.php:814 tbl_operations.php:369 -#: tbl_printview.php:126 +#: db_datadict.php:154 libraries/schema/Pdf_Relation_Schema.class.php:1317 +#: libraries/tbl_properties.inc.php:814 tbl_operations.php:375 +#: tbl_printview.php:119 msgid "Table comments" msgstr "表註釋" -#: db_datadict.php:163 db_qbe.php:199 libraries/Index.class.php:461 +#: db_datadict.php:163 db_qbe.php:190 libraries/Index.class.php:461 +#: 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:1390 -#: libraries/schema/Pdf_Relation_Schema.class.php:1308 -#: libraries/schema/Pdf_Relation_Schema.class.php:1329 -#: libraries/tbl_properties.inc.php:311 libraries/tbl_select.lib.php:91 -#: tbl_indexes.php:222 tbl_printview.php:139 tbl_relation.php:401 -#: tbl_tracking.php:303 tbl_tracking.php:369 tbl_zoom_select.php:454 +#: libraries/insert_edit.lib.php:1389 +#: 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 +#: tbl_printview.php:132 tbl_relation.php:404 tbl_tracking.php:303 +#: tbl_tracking.php:369 msgid "Column" msgstr "欄位" -#: db_datadict.php:164 db_printview.php:102 libraries/Index.class.php:458 -#: 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:224 libraries/insert_edit.lib.php:227 -#: libraries/rte/rte_list.lib.php:54 libraries/rte/rte_list.lib.php:80 -#: libraries/rte/rte_routines.lib.php:837 -#: libraries/rte/rte_routines.lib.php:862 -#: libraries/rte/rte_routines.lib.php:1379 -#: libraries/schema/Pdf_Relation_Schema.class.php:1309 -#: libraries/schema/Pdf_Relation_Schema.class.php:1330 -#: libraries/tbl_properties.inc.php:85 libraries/tbl_select.lib.php:92 -#: server_privileges.php:2421 tbl_printview.php:140 tbl_structure.php:201 -#: tbl_tracking.php:304 tbl_tracking.php:366 +#: db_datadict.php:164 db_printview.php:101 libraries/Index.class.php:458 +#: 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/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 +#: 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 -#: 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:1399 -#: libraries/schema/Pdf_Relation_Schema.class.php:1311 -#: libraries/schema/Pdf_Relation_Schema.class.php:1332 -#: libraries/tbl_properties.inc.php:92 tbl_printview.php:141 -#: tbl_structure.php:204 tbl_tracking.php:306 tbl_tracking.php:372 -#: tbl_zoom_select.php:455 +#: 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/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 +#: tbl_structure.php:206 tbl_tracking.php:306 tbl_tracking.php:372 msgid "Null" msgstr "空" -#: db_datadict.php:167 db_structure.php:637 libraries/export/htmlword.php:254 +#: db_datadict.php:167 db_structure.php:635 libraries/export/htmlword.php:254 #: libraries/export/htmlword.php:366 libraries/export/latex.php:484 #: libraries/export/odt.php:335 libraries/export/odt.php:435 #: libraries/export/texytext.php:241 libraries/export/texytext.php:343 -#: libraries/schema/Pdf_Relation_Schema.class.php:1312 -#: libraries/schema/Pdf_Relation_Schema.class.php:1333 -#: libraries/tbl_properties.inc.php:89 tbl_printview.php:142 -#: tbl_structure.php:205 tbl_tracking.php:307 +#: libraries/schema/Pdf_Relation_Schema.class.php:1347 +#: libraries/schema/Pdf_Relation_Schema.class.php:1368 +#: libraries/tbl_properties.inc.php:89 tbl_printview.php:135 +#: tbl_structure.php:207 tbl_tracking.php:307 msgid "Default" msgstr "預設" #: db_datadict.php:171 libraries/export/htmlword.php:370 #: libraries/export/latex.php:486 libraries/export/odt.php:439 #: libraries/export/texytext.php:345 -#: libraries/schema/Pdf_Relation_Schema.class.php:1314 -#: libraries/schema/Pdf_Relation_Schema.class.php:1335 tbl_printview.php:145 +#: libraries/schema/Pdf_Relation_Schema.class.php:1349 +#: libraries/schema/Pdf_Relation_Schema.class.php:1370 tbl_printview.php:138 msgid "Links to" msgstr "連結到" -#: db_datadict.php:173 db_printview.php:108 +#: db_datadict.php:173 db_printview.php:107 #: libraries/config/messages.inc.php:98 libraries/config/messages.inc.php:113 #: libraries/config/messages.inc.php:135 libraries/export/htmlword.php:375 #: libraries/export/latex.php:489 libraries/export/odt.php:444 #: libraries/export/texytext.php:348 -#: libraries/schema/Pdf_Relation_Schema.class.php:1325 -#: libraries/schema/Pdf_Relation_Schema.class.php:1336 -#: libraries/tbl_properties.inc.php:112 tbl_printview.php:147 +#: libraries/schema/Pdf_Relation_Schema.class.php:1360 +#: libraries/schema/Pdf_Relation_Schema.class.php:1371 +#: libraries/tbl_properties.inc.php:112 tbl_printview.php:140 msgid "Comments" msgstr "註釋" @@ -194,14 +195,14 @@ msgstr "註釋" #: 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 -#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:324 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:132 -#: server_privileges.php:1601 server_privileges.php:1611 -#: server_privileges.php:1888 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2245 -#: server_privileges.php:2538 sql.php:342 sql.php:410 tbl_printview.php:198 -#: tbl_structure.php:344 tbl_tracking.php:327 tbl_tracking.php:382 +#: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:323 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: 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 +#: tbl_structure.php:346 tbl_tracking.php:327 tbl_tracking.php:382 #: tbl_tracking.php:387 msgid "No" msgstr "否" @@ -214,181 +215,181 @@ msgstr "否" #: libraries/export/texytext.php:542 libraries/mult_submits.inc.php:67 #: libraries/mult_submits.inc.php:99 libraries/mult_submits.inc.php:108 #: libraries/mult_submits.inc.php:113 libraries/mult_submits.inc.php:118 -#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:286 -#: libraries/mult_submits.inc.php:299 libraries/mult_submits.inc.php:323 -#: libraries/mult_submits.inc.php:330 -#: libraries/schema/Pdf_Relation_Schema.class.php:1360 -#: libraries/user_preferences.lib.php:293 prefs_manage.php:131 -#: server_databases.php:102 server_databases.php:109 -#: server_privileges.php:1599 server_privileges.php:1609 -#: server_privileges.php:1885 server_privileges.php:1899 -#: server_privileges.php:2240 server_privileges.php:2243 -#: server_privileges.php:2538 sql.php:409 tbl_printview.php:199 -#: tbl_structure.php:41 tbl_structure.php:344 tbl_tracking.php:327 +#: libraries/mult_submits.inc.php:123 libraries/mult_submits.inc.php:285 +#: libraries/mult_submits.inc.php:298 libraries/mult_submits.inc.php:322 +#: libraries/mult_submits.inc.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:1395 +#: libraries/user_preferences.lib.php:303 prefs_manage.php:127 +#: 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 +#: tbl_structure.php:44 tbl_structure.php:346 tbl_tracking.php:327 #: tbl_tracking.php:380 tbl_tracking.php:385 msgid "Yes" msgstr "是" -#: db_export.php:26 +#: db_export.php:29 msgid "View dump (schema) of database" msgstr "查看資料庫的轉存(大綱)" -#: db_export.php:30 db_printview.php:93 db_qbe.php:104 db_tracking.php:47 -#: export.php:405 navigation.php:327 +#: db_export.php:33 db_printview.php:92 db_qbe.php:104 db_tracking.php:51 +#: export.php:403 navigation.php:275 msgid "No tables found in database." msgstr "資料庫中沒有表" -#: db_export.php:40 db_search.php:334 server_export.php:22 +#: db_export.php:42 db_search.php:337 server_export.php:26 msgid "Select All" msgstr "全選" -#: db_export.php:42 db_search.php:337 server_export.php:24 +#: db_export.php:44 db_search.php:340 server_export.php:28 msgid "Unselect All" msgstr "全不選" -#: db_operations.php:59 tbl_create.php:22 +#: db_operations.php:62 tbl_create.php:21 msgid "The database name is empty!" msgstr "資料庫名不能爲空!" -#: db_operations.php:311 +#: db_operations.php:314 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s" msgid "Database %1$s has been renamed to %2$s" msgstr "資料庫 %s 已變更名稱為 %s" -#: db_operations.php:315 +#: db_operations.php:318 #, fuzzy, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "已將資料庫 %s 複製爲 %s" -#: db_operations.php:443 +#: db_operations.php:449 msgid "Rename database to" msgstr "將資料庫改名為" -#: db_operations.php:470 +#: db_operations.php:476 msgid "Remove database" msgstr "刪除資料庫" -#: db_operations.php:482 +#: db_operations.php:488 #, php-format msgid "Database %s has been dropped." msgstr "已被刪除資料庫 %s" -#: db_operations.php:487 +#: db_operations.php:493 msgid "Drop the database (DROP)" msgstr "刪除資料庫 (DROP)" -#: db_operations.php:516 +#: db_operations.php:522 msgid "Copy database to" msgstr "複製資料庫到" -#: db_operations.php:523 tbl_operations.php:561 tbl_tracking.php:482 +#: db_operations.php:529 tbl_operations.php:567 tbl_tracking.php:482 msgid "Structure only" msgstr "僅結構" -#: db_operations.php:524 tbl_operations.php:562 tbl_tracking.php:484 +#: db_operations.php:530 tbl_operations.php:568 tbl_tracking.php:484 msgid "Structure and data" msgstr "結構和資料" -#: db_operations.php:525 tbl_operations.php:563 tbl_tracking.php:483 +#: db_operations.php:531 tbl_operations.php:569 tbl_tracking.php:483 msgid "Data only" msgstr "僅資料" -#: db_operations.php:533 +#: db_operations.php:539 msgid "CREATE DATABASE before copying" msgstr "複製前建立資料庫 (CREATE DATABASE)" -#: db_operations.php:536 libraries/config/messages.inc.php:130 +#: db_operations.php:542 libraries/config/messages.inc.php:130 #: libraries/config/messages.inc.php:131 libraries/config/messages.inc.php:133 -#: libraries/config/messages.inc.php:139 tbl_operations.php:569 +#: libraries/config/messages.inc.php:139 tbl_operations.php:575 #, php-format msgid "Add %s" msgstr "新增 %s" -#: db_operations.php:540 libraries/config/messages.inc.php:123 -#: tbl_operations.php:321 tbl_operations.php:571 +#: db_operations.php:546 libraries/config/messages.inc.php:123 +#: tbl_operations.php:327 tbl_operations.php:577 msgid "Add AUTO_INCREMENT value" msgstr "新增自動遞增(AUTO_INCREMENT)數值" -#: db_operations.php:544 tbl_operations.php:578 +#: db_operations.php:550 tbl_operations.php:584 msgid "Add constraints" msgstr "新增 constraints" -#: db_operations.php:559 +#: db_operations.php:565 msgid "Switch to copied database" msgstr "切換到複製的資料庫" -#: db_operations.php:582 libraries/Index.class.php:463 -#: 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 libraries/tbl_select.lib.php:93 -#: server_collations.php:38 server_collations.php:50 tbl_operations.php:385 -#: tbl_structure.php:202 tbl_structure.php:926 tbl_tracking.php:305 +#: db_operations.php:588 libraries/Index.class.php:463 +#: 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_tracking.php:371 msgid "Collation" msgstr "排序規則" -#: db_operations.php:599 +#: db_operations.php:605 #, php-format msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "phpMyAdmin 設定儲存功能未能啟動, %s請按此%s 查出問題原因." -#: db_operations.php:633 +#: db_operations.php:639 msgid "Edit or export relational schema" msgstr "編輯或匯出關聯大綱" -#: db_printview.php:100 db_tracking.php:80 db_tracking.php:188 -#: libraries/Menu.class.php:194 libraries/config/messages.inc.php:514 +#: db_printview.php:99 db_tracking.php:81 db_tracking.php:189 +#: libraries/Menu.class.php:186 libraries/config/messages.inc.php:514 #: 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:310 -#: libraries/schema/User_Schema.class.php:275 server_privileges.php:2015 -#: server_privileges.php:2073 server_privileges.php:2342 -#: server_synchronize.php:519 server_synchronize.php:1039 tbl_tracking.php:711 +#: 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 +#: server_synchronize.php:522 server_synchronize.php:1042 tbl_tracking.php:711 msgid "Table" msgstr "表" -#: db_printview.php:101 db_tables_search.php:24 db_tables_search.php:53 +#: 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/db_structure.lib.php:42 libraries/import.lib.php:164 -#: navigation.php:673 navigation.php:706 sql.php:937 tbl_printview.php:376 -#: tbl_structure.php:462 tbl_structure.php:536 tbl_structure.php:936 +#: 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 msgid "Rows" msgstr "行數" -#: db_printview.php:105 libraries/db_structure.lib.php:53 tbl_indexes.php:223 +#: db_printview.php:104 libraries/db_structure.lib.php:53 tbl_indexes.php:230 msgid "Size" msgstr "大小" -#: db_printview.php:159 db_structure.php:592 libraries/export/sql.php:977 +#: db_printview.php:158 db_structure.php:590 libraries/export/sql.php:977 msgid "in use" msgstr "使用中" -#: db_printview.php:185 libraries/db_info.inc.php:76 +#: 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:1287 tbl_printview.php:424 -#: tbl_structure.php:968 +#: libraries/schema/Pdf_Relation_Schema.class.php:1322 tbl_printview.php:417 +#: tbl_structure.php:970 msgid "Creation" msgstr "建立時間" -#: db_printview.php:194 libraries/db_info.inc.php:81 +#: 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:1292 tbl_printview.php:436 -#: tbl_structure.php:976 +#: libraries/schema/Pdf_Relation_Schema.class.php:1327 tbl_printview.php:429 +#: tbl_structure.php:978 msgid "Last update" msgstr "最後更新" -#: db_printview.php:203 libraries/db_info.inc.php:86 +#: 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:1297 tbl_printview.php:448 -#: tbl_structure.php:984 +#: libraries/schema/Pdf_Relation_Schema.class.php:1332 tbl_printview.php:441 +#: tbl_structure.php:986 msgid "Last check" msgstr "最後檢查" -#: db_printview.php:220 db_structure.php:613 +#: db_printview.php:219 db_structure.php:611 #, php-format msgid "%s table" msgid_plural "%s tables" @@ -398,117 +399,117 @@ msgstr[0] "%s 張資料表" msgid "You have to choose at least one column to display" msgstr "您至少需要選擇一個欄位" -#: db_qbe.php:189 +#: db_qbe.php:179 #, php-format msgid "Switch to %svisual builder%s" msgstr "切換至 %svisual builder%s" -#: db_qbe.php:225 libraries/db_structure.lib.php:106 -#: libraries/display_tbl.lib.php:1616 +#: db_qbe.php:216 libraries/DisplayResults.class.php:1689 +#: libraries/db_structure.lib.php:106 msgid "Sort" msgstr "排序" -#: db_qbe.php:234 db_qbe.php:269 libraries/db_structure.lib.php:113 -#: libraries/db_structure.lib.php:122 libraries/display_tbl.lib.php:1155 -#: libraries/display_tbl.lib.php:1552 libraries/display_tbl.lib.php:1560 -#: libraries/tbl_select.lib.php:619 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:282 +#: db_qbe.php:225 db_qbe.php:260 libraries/DisplayResults.class.php:1222 +#: libraries/DisplayResults.class.php:1621 +#: libraries/DisplayResults.class.php:1629 libraries/TableSearch.class.php:786 +#: libraries/db_structure.lib.php:113 libraries/db_structure.lib.php:122 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:288 msgid "Ascending" msgstr "遞增" -#: db_qbe.php:235 db_qbe.php:277 libraries/db_structure.lib.php:114 -#: libraries/db_structure.lib.php:123 libraries/display_tbl.lib.php:1167 -#: libraries/display_tbl.lib.php:1547 libraries/display_tbl.lib.php:1565 -#: libraries/tbl_select.lib.php:620 server_databases.php:187 -#: server_databases.php:204 tbl_operations.php:283 +#: db_qbe.php:226 db_qbe.php:268 libraries/DisplayResults.class.php:1234 +#: libraries/DisplayResults.class.php:1616 +#: libraries/DisplayResults.class.php:1634 libraries/TableSearch.class.php:787 +#: libraries/db_structure.lib.php:114 libraries/db_structure.lib.php:123 +#: server_databases.php:191 server_databases.php:208 tbl_operations.php:289 msgid "Descending" msgstr "遞減" -#: db_qbe.php:290 db_tracking.php:86 libraries/display_tbl.lib.php:606 -#: tbl_change.php:219 tbl_tracking.php:716 +#: db_qbe.php:281 db_tracking.php:87 libraries/DisplayResults.class.php:672 +#: tbl_change.php:216 tbl_tracking.php:716 msgid "Show" msgstr "顯示" -#: db_qbe.php:326 +#: db_qbe.php:317 msgid "Criteria" msgstr "條件" -#: db_qbe.php:380 db_qbe.php:462 db_qbe.php:554 db_qbe.php:585 +#: db_qbe.php:371 db_qbe.php:453 db_qbe.php:545 db_qbe.php:576 msgid "Ins" msgstr "插入" -#: db_qbe.php:384 db_qbe.php:466 db_qbe.php:551 db_qbe.php:582 +#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:542 db_qbe.php:573 msgid "And" msgstr "與" -#: db_qbe.php:393 db_qbe.php:474 db_qbe.php:556 db_qbe.php:587 +#: db_qbe.php:384 db_qbe.php:465 db_qbe.php:547 db_qbe.php:578 msgid "Del" msgstr "刪除" -#: db_qbe.php:397 db_qbe.php:478 db_qbe.php:549 db_qbe.php:580 -#: libraries/insert_edit.lib.php:1054 libraries/tbl_select.lib.php:591 -#: server_privileges.php:486 tbl_indexes.php:301 +#: 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 +#: server_privileges.php:487 tbl_indexes.php:308 msgid "Or" msgstr "或" -#: db_qbe.php:534 +#: db_qbe.php:525 msgid "Modify" msgstr "修改" -#: db_qbe.php:609 +#: db_qbe.php:600 msgid "Add/Delete criteria rows" msgstr "新增/刪除標準行" -#: db_qbe.php:621 +#: db_qbe.php:612 msgid "Add/Delete columns" msgstr "新增/刪除欄位" -#: db_qbe.php:634 db_qbe.php:657 +#: db_qbe.php:625 db_qbe.php:648 msgid "Update Query" msgstr "更新查詢" -#: db_qbe.php:640 +#: db_qbe.php:631 msgid "Use Tables" msgstr "使用表" -#: db_qbe.php:663 +#: db_qbe.php:654 #, php-format msgid "SQL query on database %s:" msgstr "在資料庫 %s 執行 SQL 指令:" -#: db_qbe.php:956 libraries/common.lib.php:1247 +#: db_qbe.php:947 libraries/common.lib.php:1254 msgid "Submit Query" msgstr "送出查詢" -#: db_search.php:31 libraries/auth/config.auth.lib.php:78 -#: libraries/auth/config.auth.lib.php:99 -#: libraries/auth/cookie.auth.lib.php:616 libraries/auth/http.auth.lib.php:54 +#: db_search.php:34 libraries/auth/config.auth.lib.php:79 +#: libraries/auth/config.auth.lib.php:94 +#: libraries/auth/cookie.auth.lib.php:618 libraries/auth/http.auth.lib.php:55 #: libraries/auth/signon.auth.lib.php:247 msgid "Access denied" msgstr "拒絕訪問" -#: db_search.php:43 db_search.php:301 +#: db_search.php:46 db_search.php:304 msgid "at least one of the words" msgstr "至少一個字" -#: db_search.php:44 db_search.php:302 +#: db_search.php:47 db_search.php:305 msgid "all words" msgstr "所有詞" -#: db_search.php:45 db_search.php:303 +#: db_search.php:48 db_search.php:306 msgid "the exact phrase" msgstr "精確短語" -#: db_search.php:46 db_search.php:304 +#: db_search.php:49 db_search.php:307 msgid "as regular expression" msgstr "以正則運算式 (regular expression) 搜索" -#: db_search.php:216 +#: db_search.php:219 #, php-format msgid "Search results for \"%s\" %s:" msgstr "“%s”的搜尋結果 %s:" -#: db_search.php:239 +#: db_search.php:242 #, fuzzy, php-format #| msgid "%s match inside table %s" #| msgid_plural "%s matches inside table %s" @@ -516,279 +517,280 @@ msgid "%1$s match inside table %2$s" msgid_plural "%1$s matches inside table %2$s" msgstr[0] "%s 筆資料符合 - 於資料表 %s" -#: db_search.php:247 libraries/Menu.class.php:263 -#: libraries/common.lib.php:3188 libraries/common.lib.php:3420 -#: libraries/common.lib.php:3421 tbl_structure.php:573 +#: 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:252 +#: db_search.php:255 #, php-format msgid "Delete the matches for the %s table?" msgstr "刪除 %s 資料表中符合的資料?" -#: db_search.php:252 libraries/display_tbl.lib.php:2508 -#: libraries/display_tbl.lib.php:4055 +#: 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:452 +#: 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:266 +#: db_search.php:269 #, php-format msgid "Total: %s match" msgid_plural "Total: %s matches" msgstr[0] "總計: %s 項資料符合" -#: db_search.php:289 +#: db_search.php:292 msgid "Search in database" msgstr "在資料庫中搜尋" -#: db_search.php:292 +#: db_search.php:295 msgid "Words or values to search for (wildcard: \"%\"):" msgstr "要搜尋的文字或數值 (萬用字元:“%”):" -#: db_search.php:297 +#: db_search.php:300 msgid "Find:" msgstr "搜尋:" -#: db_search.php:301 db_search.php:302 +#: db_search.php:304 db_search.php:305 msgid "Words are separated by a space character (\" \")." msgstr "每個單詞用空格 (“ ”) 分隔" -#: db_search.php:315 +#: db_search.php:318 #, fuzzy #| msgid "Inside table(s):" msgid "Inside tables:" msgstr "於以下表:" -#: db_search.php:345 +#: db_search.php:348 msgid "Inside column:" msgstr "於以下欄位:" -#: db_structure.php:84 +#: db_structure.php:87 msgid "No tables found in database" msgstr "沒有在資料庫中找到表" -#: db_structure.php:242 libraries/mysql_charsets.lib.php:411 +#: db_structure.php:240 libraries/mysql_charsets.lib.php:411 #: libraries/mysql_charsets.lib.php:418 msgid "unknown" msgstr "未知" -#: db_structure.php:367 tbl_operations.php:717 +#: db_structure.php:365 tbl_operations.php:723 #, php-format msgid "Table %s has been emptied" msgstr "已清空表 %s" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "View %s has been dropped" msgstr "已刪除 view %s" -#: db_structure.php:384 tbl_operations.php:736 +#: db_structure.php:382 tbl_operations.php:742 #, php-format msgid "Table %s has been dropped" msgstr "已刪除表 %s" -#: db_structure.php:394 tbl_create.php:286 +#: db_structure.php:392 tbl_create.php:285 msgid "Tracking is active." msgstr "追蹤已啓用" -#: db_structure.php:399 tbl_create.php:289 +#: db_structure.php:397 tbl_create.php:288 msgid "Tracking is not active." msgstr "追蹤已停用" -#: db_structure.php:525 libraries/display_tbl.lib.php:3979 +#: 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." msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。" -#: db_structure.php:543 db_structure.php:577 libraries/Menu.class.php:194 -#: libraries/tbl_info.inc.php:60 tbl_structure.php:208 +#: 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:620 libraries/Menu.class.php:504 -#: libraries/db_structure.lib.php:35 server_replication.php:31 -#: server_replication.php:189 server_status.php:613 +#: db_structure.php:618 libraries/Menu.class.php:492 +#: libraries/db_structure.lib.php:35 server_replication.php:33 +#: server_replication.php:191 server_status.php:612 msgid "Replication" msgstr "複製" -#: db_structure.php:624 +#: db_structure.php:622 msgid "Sum" msgstr "總計" -#: db_structure.php:631 libraries/StorageEngine.class.php:345 +#: db_structure.php:629 libraries/StorageEngine.class.php:345 #, php-format msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 伺服器的預設儲存引擎" -#: db_structure.php:679 db_structure.php:696 db_structure.php:697 -#: libraries/display_tbl.lib.php:4097 libraries/display_tbl.lib.php:4103 -#: libraries/mult_submits.inc.php:38 server_databases.php:290 -#: server_databases.php:295 server_privileges.php:1922 -#: server_privileges.php:1930 tbl_structure.php:559 tbl_structure.php:568 +#: 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 msgid "With selected:" msgstr "選中項:" -#: db_structure.php:682 libraries/display_tbl.lib.php:4085 -#: server_databases.php:292 server_privileges.php:783 -#: server_privileges.php:1925 tbl_structure.php:562 +#: db_structure.php:680 libraries/DisplayResults.class.php:4245 +#: server_databases.php:296 server_privileges.php:784 +#: server_privileges.php:1933 tbl_structure.php:564 msgid "Check All" msgstr "全選" -#: db_structure.php:686 libraries/display_tbl.lib.php:4089 -#: libraries/replication_gui.lib.php:35 server_databases.php:294 -#: server_privileges.php:786 server_privileges.php:1929 tbl_structure.php:566 +#: 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:691 +#: db_structure.php:689 msgid "Check tables having overhead" msgstr "僅選擇多餘" -#: db_structure.php:699 libraries/Menu.class.php:288 -#: libraries/Menu.class.php:378 libraries/Menu.class.php:477 -#: libraries/common.lib.php:3433 libraries/common.lib.php:3434 +#: 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 +#: libraries/common.lib.php:3523 libraries/common.lib.php:3524 #: libraries/config/messages.inc.php:168 libraries/display_export.lib.php:82 -#: libraries/display_tbl.lib.php:4118 libraries/display_tbl.lib.php:4292 -#: prefs_manage.php:294 server_privileges.php:1567 server_privileges.php:1934 -#: server_status.php:1628 setup/frames/menu.inc.php:22 +#: prefs_manage.php:292 server_privileges.php:1568 server_privileges.php:1942 +#: server_status.php:1627 setup/frames/menu.inc.php:22 msgid "Export" msgstr "匯出" -#: db_structure.php:701 db_structure.php:749 -#: libraries/display_tbl.lib.php:4226 libraries/header_printview.inc.php:42 -#: tbl_structure.php:654 +#: db_structure.php:699 db_structure.php:747 +#: libraries/DisplayResults.class.php:4353 libraries/Header.class.php:259 +#: tbl_structure.php:656 msgid "Print view" msgstr "列印預覽" -#: db_structure.php:705 libraries/common.lib.php:3429 -#: libraries/common.lib.php:3430 +#: db_structure.php:703 libraries/common.lib.php:3519 +#: libraries/common.lib.php:3520 msgid "Empty" msgstr "清空" -#: db_structure.php:707 db_tracking.php:101 libraries/Index.class.php:507 -#: libraries/common.lib.php:3427 libraries/common.lib.php:3428 -#: server_databases.php:296 tbl_structure.php:146 tbl_structure.php:147 -#: tbl_structure.php:583 +#: db_structure.php:705 db_tracking.php:102 libraries/Index.class.php:507 +#: 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 msgid "Drop" msgstr "刪除" -#: db_structure.php:709 tbl_operations.php:620 +#: db_structure.php:707 tbl_operations.php:626 msgid "Check table" msgstr "檢查表" -#: db_structure.php:712 tbl_operations.php:677 tbl_structure.php:876 +#: db_structure.php:710 tbl_operations.php:683 tbl_structure.php:878 msgid "Optimize table" msgstr "最佳化表" -#: db_structure.php:714 tbl_operations.php:662 +#: db_structure.php:712 tbl_operations.php:668 msgid "Repair table" msgstr "修復表" -#: db_structure.php:717 tbl_operations.php:647 +#: db_structure.php:715 tbl_operations.php:653 msgid "Analyze table" msgstr "分析表" -#: db_structure.php:719 +#: db_structure.php:717 msgid "Add prefix to table" msgstr "資料表名稱增加前綴文字" -#: db_structure.php:721 libraries/mult_submits.inc.php:275 +#: db_structure.php:719 libraries/mult_submits.inc.php:274 msgid "Replace table prefix" msgstr "覆蓋資料表名稱的前綴文字" -#: db_structure.php:723 libraries/mult_submits.inc.php:275 +#: db_structure.php:721 libraries/mult_submits.inc.php:274 msgid "Copy table with prefix" msgstr "複製資料表名稱的前綴文字" -#: db_structure.php:752 libraries/schema/User_Schema.class.php:426 +#: db_structure.php:750 libraries/schema/User_Schema.class.php:426 msgid "Data Dictionary" msgstr "資料字典" -#: db_tracking.php:74 +#: db_tracking.php:75 msgid "Tracked tables" msgstr "已追蹤的表" -#: db_tracking.php:79 libraries/Menu.class.php:171 +#: db_tracking.php:80 libraries/Menu.class.php:163 #: libraries/config/messages.inc.php:508 libraries/export/htmlword.php:119 #: 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:186 server_privileges.php:2010 -#: server_privileges.php:2073 server_privileges.php:2336 -#: server_status.php:1257 server_synchronize.php:1448 -#: server_synchronize.php:1452 sql.php:931 tbl_tracking.php:710 +#: 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_synchronize.php:1455 sql.php:957 tbl_tracking.php:710 msgid "Database" msgstr "資料庫" -#: db_tracking.php:81 +#: db_tracking.php:82 msgid "Last version" msgstr "最新版本" -#: db_tracking.php:82 tbl_tracking.php:713 +#: db_tracking.php:83 tbl_tracking.php:713 msgid "Created" msgstr "建立" -#: db_tracking.php:83 tbl_tracking.php:714 +#: db_tracking.php:84 tbl_tracking.php:714 msgid "Updated" msgstr "更新" -#: db_tracking.php:84 js/messages.php:185 libraries/Menu.class.php:467 -#: libraries/rte/rte_events.lib.php:380 libraries/rte/rte_list.lib.php:78 -#: server_status.php:1260 sql.php:1004 tbl_tracking.php:715 +#: db_tracking.php:85 js/messages.php:185 libraries/Menu.class.php:455 +#: 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 msgid "Status" msgstr "狀態" -#: db_tracking.php:85 libraries/Index.class.php:455 +#: db_tracking.php:86 libraries/Index.class.php:455 #: 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:221 server_privileges.php:1859 -#: server_privileges.php:2077 server_privileges.php:2424 tbl_structure.php:218 +#: server_databases.php:225 server_privileges.php:1867 +#: server_privileges.php:2085 server_privileges.php:2432 tbl_structure.php:220 msgid "Action" msgstr "動作" -#: db_tracking.php:96 js/messages.php:34 +#: db_tracking.php:97 js/messages.php:34 msgid "Delete tracking data for this table" msgstr "刪除追蹤資料" -#: db_tracking.php:118 tbl_tracking.php:667 tbl_tracking.php:725 +#: db_tracking.php:119 tbl_tracking.php:667 tbl_tracking.php:725 msgid "active" msgstr "啓用" -#: db_tracking.php:120 tbl_tracking.php:669 tbl_tracking.php:727 +#: db_tracking.php:121 tbl_tracking.php:669 tbl_tracking.php:727 msgid "not active" msgstr "停用" -#: db_tracking.php:135 +#: db_tracking.php:136 msgid "Versions" msgstr "版本" -#: db_tracking.php:136 tbl_tracking.php:473 tbl_tracking.php:745 +#: db_tracking.php:137 tbl_tracking.php:473 tbl_tracking.php:745 msgid "Tracking report" msgstr "追蹤報告" -#: db_tracking.php:137 tbl_tracking.php:281 tbl_tracking.php:747 +#: db_tracking.php:138 tbl_tracking.php:281 tbl_tracking.php:747 msgid "Structure snapshot" msgstr "結構快照" -#: db_tracking.php:183 +#: db_tracking.php:184 msgid "Untracked tables" msgstr "未追蹤的表" -#: db_tracking.php:202 tbl_structure.php:680 +#: db_tracking.php:203 tbl_structure.php:682 msgid "Track table" msgstr "追蹤資料表" -#: db_tracking.php:228 +#: db_tracking.php:229 msgid "Database Log" msgstr "資料庫日誌" @@ -800,27 +802,27 @@ msgstr "錯誤的類型!" msgid "Selected export type has to be saved in file!" msgstr "選擇的匯出的檔案格式" -#: export.php:119 +#: export.php:118 msgid "Bad parameters!" msgstr "錯誤的參數!" -#: export.php:193 export.php:224 export.php:779 +#: export.php:192 export.php:223 export.php:774 #, php-format msgid "Insufficient space to save the file %s." msgstr "沒有足夠的空間儲存檔案 %s." -#: export.php:358 +#: export.php:357 #, php-format msgid "" "File %s already exists on server, change filename or check overwrite option." msgstr "檔案 %s 已存在, 請更改檔案名稱或選擇「覆寫己存在檔案」選項." -#: export.php:362 export.php:366 +#: export.php:361 export.php:365 #, php-format msgid "The web server does not have permission to save the file %s." msgstr "網站伺服器沒有儲存 %s 檔案的權限" -#: export.php:785 +#: export.php:780 #, php-format msgid "Dump has been saved to file %s." msgstr "備份資料已儲存至檔案 %s." @@ -829,126 +831,126 @@ msgstr "備份資料已儲存至檔案 %s." msgid "Invalid export type" msgstr "無效的輸出類型" -#: gis_data_editor.php:85 +#: gis_data_editor.php:75 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Value for the column \"%s\"" msgstr "%s 欄位的值" -#: gis_data_editor.php:114 tbl_gis_visualization.php:165 +#: gis_data_editor.php:104 tbl_gis_visualization.php:168 msgid "Use OpenStreetMaps as Base Layer" msgstr "使用OpenStreetMaps" -#: gis_data_editor.php:134 +#: gis_data_editor.php:124 msgid "SRID" msgstr "" -#: gis_data_editor.php:151 js/messages.php:326 -#: libraries/display_tbl.lib.php:1320 +#: gis_data_editor.php:141 js/messages.php:326 +#: libraries/DisplayResults.class.php:1386 msgid "Geometry" msgstr "" -#: gis_data_editor.php:171 js/messages.php:322 +#: gis_data_editor.php:161 js/messages.php:322 msgid "Point" msgstr "" -#: gis_data_editor.php:172 gis_data_editor.php:196 gis_data_editor.php:244 -#: gis_data_editor.php:296 js/messages.php:320 +#: gis_data_editor.php:162 gis_data_editor.php:186 gis_data_editor.php:234 +#: gis_data_editor.php:286 js/messages.php:320 msgid "X" msgstr "" -#: gis_data_editor.php:174 gis_data_editor.php:198 gis_data_editor.php:246 -#: gis_data_editor.php:298 js/messages.php:321 +#: gis_data_editor.php:164 gis_data_editor.php:188 gis_data_editor.php:236 +#: gis_data_editor.php:288 js/messages.php:321 msgid "Y" msgstr "" -#: gis_data_editor.php:194 gis_data_editor.php:242 gis_data_editor.php:294 +#: gis_data_editor.php:184 gis_data_editor.php:232 gis_data_editor.php:284 #: js/messages.php:323 #, php-format msgid "Point %d" msgstr "" -#: gis_data_editor.php:203 gis_data_editor.php:249 gis_data_editor.php:301 +#: gis_data_editor.php:193 gis_data_editor.php:239 gis_data_editor.php:291 #: js/messages.php:329 #, fuzzy #| msgid "Add index" msgid "Add a point" msgstr "新增索引" -#: gis_data_editor.php:219 js/messages.php:324 +#: gis_data_editor.php:209 js/messages.php:324 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "資料分行使用字元:" -#: gis_data_editor.php:222 gis_data_editor.php:278 js/messages.php:328 +#: gis_data_editor.php:212 gis_data_editor.php:268 js/messages.php:328 msgid "Outer Ring" msgstr "" -#: gis_data_editor.php:224 gis_data_editor.php:280 js/messages.php:327 +#: gis_data_editor.php:214 gis_data_editor.php:270 js/messages.php:327 msgid "Inner Ring" msgstr "" -#: gis_data_editor.php:251 +#: gis_data_editor.php:241 #, fuzzy #| msgid "Add a new User" msgid "Add a linestring" msgstr "新增新使用者" -#: gis_data_editor.php:251 gis_data_editor.php:303 js/messages.php:330 +#: gis_data_editor.php:241 gis_data_editor.php:293 js/messages.php:330 #, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" msgstr "新增新使用者" -#: gis_data_editor.php:265 js/messages.php:325 +#: gis_data_editor.php:255 js/messages.php:325 msgid "Polygon" msgstr "多邊形" -#: gis_data_editor.php:305 js/messages.php:331 +#: gis_data_editor.php:295 js/messages.php:331 #, fuzzy #| msgid "Add column" msgid "Add a polygon" msgstr "新增欄位" -#: gis_data_editor.php:309 +#: gis_data_editor.php:299 #, fuzzy #| msgid "Add a new server" msgid "Add geometry" msgstr "新增伺服器" -#: gis_data_editor.php:316 +#: gis_data_editor.php:306 msgid "Output" msgstr "輸出" -#: gis_data_editor.php:317 +#: gis_data_editor.php:307 msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -#: import.php:87 +#: 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." msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制." -#: import.php:227 import.php:459 +#: import.php:224 import.php:464 msgid "Showing bookmark" msgstr "顯示書籤" -#: import.php:237 import.php:455 +#: import.php:239 import.php:460 msgid "The bookmark has been deleted." msgstr "書籤已被刪除." -#: import.php:327 import.php:380 libraries/File.class.php:425 -#: libraries/File.class.php:516 +#: import.php:332 import.php:385 libraries/File.class.php:426 +#: libraries/File.class.php:517 msgid "File could not be read" msgstr "檔案無法讀取" -#: import.php:335 import.php:344 import.php:363 import.php:372 -#: libraries/File.class.php:577 +#: import.php:340 import.php:349 import.php:368 import.php:377 +#: libraries/File.class.php:578 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -957,7 +959,7 @@ msgstr "" "您試圖載入無法支援的壓縮檔 (%s). 可能是檔案格式尚未被支援或該檔案的支援功能在" "您的設定檔中被停用." -#: import.php:385 +#: import.php:390 msgid "" "No data was received to import. Either no file name was submitted, or the " "file size exceeded the maximum size permitted by your PHP configuration. See " @@ -966,33 +968,33 @@ msgstr "" "沒有接收到要匯入的資料。可能是檔案名稱沒有送出,也可能是檔案大小超出 PHP 限制" "參見 [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]" -#: import.php:403 +#: import.php:408 msgid "" "Cannot convert file's character set without character set conversion library" msgstr "" -#: import.php:428 libraries/display_import.lib.php:23 +#: import.php:433 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" msgstr "無法載入匯入插件,請檢查您的安裝!" -#: import.php:462 sql.php:1042 +#: import.php:467 sql.php:1069 #, php-format msgid "Bookmark %s created" msgstr "已建立書籤 %s" -#: import.php:470 import.php:476 +#: import.php:475 import.php:481 #, php-format msgid "Import has been successfully finished, %d queries executed." msgstr "匯入成功, 共 %d 個語法被執行." -#: import.php:485 +#: import.php:490 msgid "" "Script timeout passed, if you want to finish import, please resubmit same " "file and import will resume." msgstr "" "指令已逾時, 如果想完成匯入, 請重新送出相同檔案, 送出後匯入動作會繼續執行." -#: import.php:487 +#: import.php:492 msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." @@ -1000,23 +1002,23 @@ msgstr "" "在最後一次執行時沒有資料被解析,建議您增加 PHP 運行時間限制,否則 phpMyAdmin " "將無法完成匯入操作" -#: import.php:515 libraries/Message.class.php:180 -#: libraries/display_tbl.lib.php:3599 libraries/rte/rte_routines.lib.php:1211 +#: 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 -#: tbl_relation.php:290 tbl_row_action.php:122 view_operations.php:55 +#: 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:728 -#: libraries/schema/Export_Relation_Schema.class.php:239 user_password.php:210 +#: import_status.php:119 libraries/common.lib.php:721 +#: libraries/schema/Export_Relation_Schema.class.php:238 user_password.php:216 msgid "Back" msgstr "返回" -#: index.php:167 +#: index.php:173 msgid "phpMyAdmin is more friendly with a frames-capable browser." msgstr "phpMyAdmin 較適合使用在支援頁框的瀏覽器." -#: js/messages.php:27 libraries/import.lib.php:108 sql.php:290 +#: js/messages.php:27 libraries/import.lib.php:108 sql.php:304 msgid "\"DROP DATABASE\" statements are disabled." msgstr "已經停用刪除資料庫 (“DROP DATABASE”) 指令" @@ -1026,7 +1028,7 @@ msgstr "已經停用刪除資料庫 (“DROP DATABASE”) 指令" msgid "Do you really want to execute \"%s\"?" msgstr "您真的要" -#: js/messages.php:31 libraries/mult_submits.inc.php:306 sql.php:388 +#: js/messages.php:31 libraries/mult_submits.inc.php:305 sql.php:409 msgid "You are about to DESTROY a complete database!" msgstr "您將要刪除一個完整的資料庫!" @@ -1070,7 +1072,7 @@ msgstr "新增索引" msgid "Edit Index" msgstr "編輯模式" -#: js/messages.php:44 tbl_indexes.php:311 +#: js/messages.php:44 tbl_indexes.php:318 #, fuzzy, php-format #| msgid "Add %s column(s)" msgid "Add %d column(s) to index" @@ -1089,16 +1091,16 @@ msgstr "主機名不能爲空!" msgid "The user name is empty!" msgstr "帳號不能爲空!" -#: js/messages.php:53 server_privileges.php:1434 user_password.php:103 +#: js/messages.php:53 server_privileges.php:1435 user_password.php:107 msgid "The password is empty!" msgstr "密碼不能爲空!" -#: js/messages.php:54 server_privileges.php:1432 user_password.php:106 +#: js/messages.php:54 server_privileges.php:1433 user_password.php:110 msgid "The passwords aren't the same!" msgstr "兩次密碼不一致!" -#: js/messages.php:55 server_privileges.php:1949 server_privileges.php:1973 -#: server_privileges.php:2385 server_privileges.php:2579 +#: js/messages.php:55 server_privileges.php:1957 server_privileges.php:1981 +#: server_privileges.php:2393 server_privileges.php:2589 msgid "Add user" msgstr "新增使用者" @@ -1115,23 +1117,24 @@ msgstr "正在刪除選中的使用者" msgid "Close" msgstr "關閉" -#: js/messages.php:61 js/messages.php:284 libraries/Index.class.php:485 -#: libraries/common.lib.php:667 libraries/common.lib.php:1222 -#: libraries/common.lib.php:3431 libraries/common.lib.php:3432 -#: libraries/config/messages.inc.php:490 libraries/display_tbl.lib.php:2443 +#: js/messages.php:61 js/messages.php:284 +#: libraries/DisplayResults.class.php:2547 libraries/Index.class.php:485 +#: 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 #: libraries/schema/User_Schema.class.php:199 setup/frames/index.inc.php:147 msgid "Edit" msgstr "編輯" -#: js/messages.php:62 server_status.php:810 +#: js/messages.php:62 server_status.php:809 msgid "Live traffic chart" msgstr "即時流量圖表" -#: js/messages.php:63 server_status.php:813 +#: js/messages.php:63 server_status.php:812 msgid "Live conn./process chart" msgstr "即時連線圖表" -#: js/messages.php:64 server_status.php:831 +#: js/messages.php:64 server_status.php:830 msgid "Live query chart" msgstr "即時查詢圖表" @@ -1141,24 +1144,24 @@ msgstr "靜態資料" #. l10n: Total number of queries #: js/messages.php:68 libraries/build_html_for_db.lib.php:46 -#: libraries/engines/innodb.lib.php:161 server_databases.php:249 -#: server_status.php:1135 server_status.php:1204 tbl_printview.php:337 -#: tbl_structure.php:864 +#: 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 msgid "Total" msgstr "總計" #. l10n: Other, small valued, queries -#: js/messages.php:70 server_status.php:619 server_status.php:1029 +#: js/messages.php:70 server_status.php:618 server_status.php:1028 msgid "Other" msgstr "其他" #. l10n: Thousands separator -#: js/messages.php:72 libraries/common.lib.php:1485 +#: js/messages.php:72 libraries/common.lib.php:1498 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:74 libraries/common.lib.php:1487 +#: js/messages.php:74 libraries/common.lib.php:1500 msgid "." msgstr "." @@ -1178,7 +1181,7 @@ msgstr "伺服器流量(單位為KiB,即2^10)" msgid "Connections since last refresh" msgstr "最後一次連線" -#: js/messages.php:80 js/messages.php:118 server_status.php:1253 +#: js/messages.php:80 js/messages.php:118 server_status.php:1252 msgid "Processes" msgstr "處理" @@ -1198,7 +1201,7 @@ msgstr "最後一次連線" msgid "Questions (executed statements by the server)" msgstr "" -#: js/messages.php:87 server_status.php:792 +#: js/messages.php:87 server_status.php:791 msgid "Query statistics" msgstr "查詢統計" @@ -1247,14 +1250,14 @@ msgid "System swap" msgstr "系統Swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1435 -#: server_status.php:1708 +#: js/messages.php:100 js/messages.php:123 libraries/common.lib.php:1447 +#: server_status.php:1707 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1433 -#: server_status.php:1708 +#: js/messages.php:101 js/messages.php:122 libraries/common.lib.php:1445 +#: server_status.php:1707 msgid "KiB" msgstr "KB" @@ -1312,32 +1315,32 @@ msgstr "Bytes 送出" msgid "Bytes received" msgstr "Bytes 已接收" -#: js/messages.php:117 server_status.php:1158 +#: js/messages.php:117 server_status.php:1157 msgid "Connections" msgstr "連線" #. l10n: shortcuts for Byte -#: js/messages.php:121 libraries/common.lib.php:1431 +#: js/messages.php:121 libraries/common.lib.php:1443 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: js/messages.php:124 libraries/common.lib.php:1437 +#: js/messages.php:124 libraries/common.lib.php:1449 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:125 libraries/common.lib.php:1439 +#: js/messages.php:125 libraries/common.lib.php:1451 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:126 libraries/common.lib.php:1441 +#: js/messages.php:126 libraries/common.lib.php:1453 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:127 libraries/common.lib.php:1443 +#: js/messages.php:127 libraries/common.lib.php:1455 msgid "EiB" msgstr "EB" @@ -1355,11 +1358,11 @@ msgstr "%s 張資料表" msgid "Questions" msgstr "版本" -#: js/messages.php:132 server_status.php:1107 +#: js/messages.php:132 server_status.php:1106 msgid "Traffic" msgstr "流量" -#: js/messages.php:133 libraries/Menu.class.php:485 server_status.php:1583 +#: js/messages.php:133 libraries/Menu.class.php:473 server_status.php:1582 msgid "Settings" msgstr "設定" @@ -1381,11 +1384,11 @@ msgstr "對齊網格" msgid "Please add at least one variable to the series" msgstr "請至少增加一個變數" -#: js/messages.php:139 libraries/display_export.lib.php:323 -#: libraries/display_tbl.lib.php:1171 libraries/export/sql.php:1395 -#: libraries/tbl_properties.inc.php:638 pmd_general.php:539 -#: server_privileges.php:2226 server_status.php:1286 server_status.php:1725 -#: tbl_zoom_select.php:247 tbl_zoom_select.php:296 +#: 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 msgid "None" msgstr "無" @@ -1484,7 +1487,7 @@ msgstr "管理我的設定" msgid "Current settings" msgstr "更多設定" -#: js/messages.php:164 server_status.php:1673 +#: js/messages.php:164 server_status.php:1672 #, fuzzy #| msgid "Report title:" msgid "Chart Title" @@ -1576,7 +1579,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:1259 sql.php:1005 +#: libraries/rte/rte_list.lib.php:68 server_status.php:1258 sql.php:1032 msgid "Time" msgstr "時間" @@ -1685,10 +1688,10 @@ msgid "" "config..." msgstr "" -#: js/messages.php:212 libraries/Menu.class.php:297 -#: libraries/Menu.class.php:384 libraries/Menu.class.php:481 +#: js/messages.php:212 libraries/Menu.class.php:285 +#: libraries/Menu.class.php:372 libraries/Menu.class.php:469 #: libraries/config/messages.inc.php:174 libraries/display_import.lib.php:175 -#: prefs_manage.php:237 server_status.php:1628 setup/frames/menu.inc.php:21 +#: prefs_manage.php:235 server_status.php:1627 setup/frames/menu.inc.php:21 msgid "Import" msgstr "輸入" @@ -1748,9 +1751,9 @@ msgstr "" msgid "Test" msgstr "測試" -#: 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 +#: 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 msgid "Cancel" msgstr "取消" @@ -1762,11 +1765,11 @@ msgstr "載入中" msgid "Processing Request" msgstr "要求處理中" -#: js/messages.php:237 libraries/rte/rte_export.lib.php:39 +#: js/messages.php:237 libraries/rte/rte_export.lib.php:41 msgid "Error in Processing Request" msgstr "要求處理得程序中有錯誤" -#: js/messages.php:238 server_databases.php:88 +#: js/messages.php:238 server_databases.php:89 msgid "No databases selected." msgstr "未選中資料庫" @@ -1778,9 +1781,9 @@ msgstr "刪除欄位" msgid "Adding Primary Key" msgstr "正在新增主鍵" -#: 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 +#: 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 msgid "OK" msgstr "確定" @@ -1824,19 +1827,19 @@ msgstr "新增索引" msgid "Show indexes" msgstr "顯示網格" -#: js/messages.php:257 libraries/mult_submits.inc.php:316 +#: js/messages.php:257 libraries/mult_submits.inc.php:315 #, fuzzy #| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "關閉外鍵 (Foreign Key) 檢查" -#: js/messages.php:258 libraries/mult_submits.inc.php:320 +#: js/messages.php:258 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Enabled" msgid "(Enabled)" msgstr "已啓用" -#: js/messages.php:259 libraries/mult_submits.inc.php:320 +#: js/messages.php:259 libraries/mult_submits.inc.php:319 #, fuzzy #| msgid "Disabled" msgid "(Disabled)" @@ -1866,7 +1869,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:691 +#: js/messages.php:272 libraries/rte/rte_routines.lib.php:694 msgid "ENUM/SET editor" msgstr "" @@ -1911,8 +1914,8 @@ msgstr "顯示查詢框" msgid "No rows selected" msgstr "沒有選中任何行" -#: js/messages.php:286 libraries/display_tbl.lib.php:4107 querywindow.php:88 -#: tbl_structure.php:145 tbl_structure.php:579 +#: js/messages.php:286 libraries/DisplayResults.class.php:4267 +#: querywindow.php:82 tbl_structure.php:147 tbl_structure.php:581 msgid "Change" msgstr "修改" @@ -1922,18 +1925,18 @@ msgstr "修改" msgid "Query execution time" msgstr "最長執行時間" -#: js/messages.php:288 libraries/display_tbl.lib.php:441 -#: libraries/display_tbl.lib.php:448 +#: js/messages.php:288 libraries/DisplayResults.class.php:495 +#: libraries/DisplayResults.class.php:503 #, php-format msgid "%d is not valid row number." msgstr "%d 不是有效行數" #: js/messages.php:291 libraries/config/FormDisplay.tpl.php:385 -#: libraries/insert_edit.lib.php:1304 +#: libraries/insert_edit.lib.php:1303 #: 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:186 -#: tbl_indexes.php:298 tbl_relation.php:569 +#: setup/frames/index.inc.php:246 tbl_gis_visualization.php:189 +#: tbl_indexes.php:305 tbl_relation.php:572 msgid "Save" msgstr "儲存" @@ -1945,7 +1948,7 @@ msgstr "隱藏搜尋條件" msgid "Show search criteria" msgstr "顯示搜尋條件" -#: js/messages.php:298 libraries/tbl_select.lib.php:118 +#: js/messages.php:298 libraries/TableSearch.class.php:212 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1997,12 +2000,12 @@ msgstr "查詢結果選項" msgid "Data point content" msgstr "資料指標大小" -#: js/messages.php:318 tbl_change.php:245 tbl_indexes.php:237 -#: tbl_indexes.php:272 +#: js/messages.php:318 tbl_change.php:242 tbl_indexes.php:244 +#: tbl_indexes.php:279 msgid "Ignore" msgstr "忽略" -#: js/messages.php:319 libraries/display_tbl.lib.php:2444 +#: js/messages.php:319 libraries/DisplayResults.class.php:2548 msgid "Copy" msgstr "複製" @@ -2024,7 +2027,7 @@ msgstr "選擇外部鍵" msgid "Please select the primary key or a unique key" msgstr "請選擇主鍵或唯一鍵" -#: js/messages.php:340 pmd_general.php:95 tbl_relation.php:551 +#: js/messages.php:340 pmd_general.php:97 tbl_relation.php:554 msgid "Choose column to display" msgstr "選擇要顯示的欄位" @@ -2115,7 +2118,7 @@ msgstr "產生" msgid "Change Password" msgstr "修改密碼" -#: js/messages.php:368 tbl_structure.php:467 +#: js/messages.php:368 tbl_structure.php:469 msgid "More" msgstr "更多" @@ -2210,63 +2213,63 @@ msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:427 libraries/common.lib.php:1643 +#: js/messages.php:427 libraries/common.lib.php:1660 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:429 libraries/common.lib.php:1645 +#: js/messages.php:429 libraries/common.lib.php:1662 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:431 libraries/common.lib.php:1647 +#: js/messages.php:431 libraries/common.lib.php:1664 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:433 libraries/common.lib.php:1649 +#: js/messages.php:433 libraries/common.lib.php:1666 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:435 libraries/common.lib.php:1651 +#: js/messages.php:435 libraries/common.lib.php:1668 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:437 libraries/common.lib.php:1653 +#: js/messages.php:437 libraries/common.lib.php:1670 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:439 libraries/common.lib.php:1655 +#: js/messages.php:439 libraries/common.lib.php:1672 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:441 libraries/common.lib.php:1657 +#: js/messages.php:441 libraries/common.lib.php:1674 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:443 libraries/common.lib.php:1659 +#: js/messages.php:443 libraries/common.lib.php:1676 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:445 libraries/common.lib.php:1661 +#: js/messages.php:445 libraries/common.lib.php:1678 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:447 libraries/common.lib.php:1663 +#: js/messages.php:447 libraries/common.lib.php:1680 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:449 libraries/common.lib.php:1665 +#: js/messages.php:449 libraries/common.lib.php:1682 msgid "Dec" msgstr "十二月" @@ -2304,32 +2307,32 @@ msgid "Sun" msgstr "週日" #. l10n: Short week day name -#: js/messages.php:470 libraries/common.lib.php:1670 +#: js/messages.php:470 libraries/common.lib.php:1687 msgid "Mon" msgstr "週一" #. l10n: Short week day name -#: js/messages.php:472 libraries/common.lib.php:1672 +#: js/messages.php:472 libraries/common.lib.php:1689 msgid "Tue" msgstr "週二" #. l10n: Short week day name -#: js/messages.php:474 libraries/common.lib.php:1674 +#: js/messages.php:474 libraries/common.lib.php:1691 msgid "Wed" msgstr "週三" #. l10n: Short week day name -#: js/messages.php:476 libraries/common.lib.php:1676 +#: js/messages.php:476 libraries/common.lib.php:1693 msgid "Thu" msgstr "週四" #. l10n: Short week day name -#: js/messages.php:478 libraries/common.lib.php:1678 +#: js/messages.php:478 libraries/common.lib.php:1695 msgid "Fri" msgstr "週五" #. l10n: Short week day name -#: js/messages.php:480 libraries/common.lib.php:1680 +#: js/messages.php:480 libraries/common.lib.php:1697 msgid "Sat" msgstr "週六" @@ -2445,16 +2448,16 @@ msgstr "" msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"" msgstr "" -#: libraries/Advisor.class.php:425 server_status.php:959 +#: libraries/Advisor.class.php:425 server_status.php:958 msgid "per second" msgstr "每秒" -#: libraries/Advisor.class.php:428 server_status.php:954 +#: libraries/Advisor.class.php:428 server_status.php:953 msgid "per minute" msgstr "每分鐘" -#: libraries/Advisor.class.php:431 server_status.php:950 server_status.php:986 -#: server_status.php:1108 server_status.php:1159 +#: libraries/Advisor.class.php:431 server_status.php:949 server_status.php:985 +#: server_status.php:1107 server_status.php:1158 msgid "per hour" msgstr "每小時" @@ -2475,45 +2478,250 @@ msgstr "" msgid "Font size" msgstr "字體大小" +#: libraries/DisplayResults.class.php:472 +#, fuzzy +#| msgid "Save directory" +msgid "Save edited data" +msgstr "保存文件夾" + +#: libraries/DisplayResults.class.php:478 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Restore column order" +msgstr "文字框列" + +#: libraries/DisplayResults.class.php:546 libraries/common.lib.php:2556 +#: libraries/common.lib.php:2560 +#, fuzzy +#| msgid "Begin" +msgctxt "First page" +msgid "Begin" +msgstr "開始" + +#: libraries/DisplayResults.class.php:549 libraries/common.lib.php:2558 +#: libraries/common.lib.php:2561 server_binlog.php:130 server_binlog.php:132 +#, fuzzy +#| msgid "Previous" +msgctxt "Previous page" +msgid "Previous" +msgstr "上一個" + +# 這應該使用於選擇日期的小月曆 +#: libraries/DisplayResults.class.php:605 libraries/common.lib.php:2593 +#: libraries/common.lib.php:2596 server_binlog.php:165 server_binlog.php:167 +#, fuzzy +#| msgid "Next" +msgctxt "Next page" +msgid "Next" +msgstr "下個月" + +#: libraries/DisplayResults.class.php:630 libraries/common.lib.php:2594 +#: libraries/common.lib.php:2597 +#, fuzzy +#| msgid "End" +msgctxt "Last page" +msgid "End" +msgstr "結束" + +#: libraries/DisplayResults.class.php:673 +#, fuzzy +#| msgid "Textarea rows" +msgid "Start row" +msgstr "文字框行" + +#: libraries/DisplayResults.class.php:677 +#, fuzzy +#| msgid "Number of rows:" +msgid "Number of rows" +msgstr "記錄數:" + +#: libraries/DisplayResults.class.php:686 +#, fuzzy +#| msgid "More" +msgid "Mode" +msgstr "更多" + +#: libraries/DisplayResults.class.php:688 +msgid "horizontal" +msgstr "水平" + +#: libraries/DisplayResults.class.php:689 +msgid "horizontal (rotated headers)" +msgstr "水平 (旋轉標題)" + +#: libraries/DisplayResults.class.php:690 +msgid "vertical" +msgstr "垂直" + +#: libraries/DisplayResults.class.php:702 +#, php-format +msgid "Headers every %s rows" +msgstr "" + +#: libraries/DisplayResults.class.php:1180 +msgid "Sort by key" +msgstr "主鍵排序" + +#: libraries/DisplayResults.class.php:1324 libraries/TableSearch.class.php:734 +#: libraries/export/codegen.php:42 libraries/export/csv.php:23 +#: libraries/export/excel.php:22 libraries/export/htmlword.php:23 +#: libraries/export/json.php:22 libraries/export/latex.php:31 +#: libraries/export/mediawiki.php:19 libraries/export/ods.php:23 +#: libraries/export/odt.php:29 libraries/export/pdf.php:23 +#: libraries/export/php_array.php:22 libraries/export/sql.php:31 +#: libraries/export/texytext.php:22 libraries/export/xml.php:23 +#: libraries/export/yaml.php:23 libraries/import.lib.php:1173 +#: libraries/import.lib.php:1199 libraries/import/csv.php:25 +#: 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 +msgid "Options" +msgstr "選項" + +#: libraries/DisplayResults.class.php:1329 +#: libraries/DisplayResults.class.php:1435 +msgid "Partial texts" +msgstr "部分內容" + +#: libraries/DisplayResults.class.php:1330 +#: libraries/DisplayResults.class.php:1439 +msgid "Full texts" +msgstr "完整內容" + +#: libraries/DisplayResults.class.php:1344 +msgid "Relational key" +msgstr "關聯鍵" + +#: libraries/DisplayResults.class.php:1345 +msgid "Relational display column" +msgstr "關聯顯示字段" + +#: libraries/DisplayResults.class.php:1357 +msgid "Show binary contents" +msgstr "顯示二進制內容" + +#: libraries/DisplayResults.class.php:1362 +msgid "Show BLOB contents" +msgstr "顯示 BLOB 內容" + +#: libraries/DisplayResults.class.php:1367 +#: libraries/config/messages.inc.php:61 +msgid "Show binary contents as HEX" +msgstr "以十六進制顯示二進制內容" + +#: libraries/DisplayResults.class.php:1378 +#, fuzzy +#| msgid "Browser transformation" +msgid "Hide browser transformation" +msgstr "瀏覽器轉換" + +#: libraries/DisplayResults.class.php:1387 +msgid "Well Known Text" +msgstr "" + +#: libraries/DisplayResults.class.php:1388 +msgid "Well Known Binary" +msgstr "" + +#: libraries/DisplayResults.class.php:2586 +#: libraries/DisplayResults.class.php:2601 +msgid "The row has been deleted" +msgstr "已刪除該行" + +#: libraries/DisplayResults.class.php:2636 +#: libraries/DisplayResults.class.php:4215 server_status.php:1281 +msgid "Kill" +msgstr "中止" + +#: libraries/DisplayResults.class.php:3683 libraries/db_structure.lib.php:43 +msgid "" +"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " +"3.11[/a]" +msgstr "" +"可能接近。參見 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" + +#: libraries/DisplayResults.class.php:4103 +msgid "in query" +msgstr "查詢中" + +#: libraries/DisplayResults.class.php:4152 +msgid "Showing rows" +msgstr "顯示行" + +#: libraries/DisplayResults.class.php:4166 +msgid "total" +msgstr "總計" + +#: libraries/DisplayResults.class.php:4177 sql.php:832 +#, php-format +msgid "Query took %01.4f sec" +msgstr "查詢花費 %01.4f 秒" + +#: libraries/DisplayResults.class.php:4331 +msgid "Query results operations" +msgstr "查詢結果選項" + +#: libraries/DisplayResults.class.php:4365 +msgid "Print view (with full texts)" +msgstr "列印預覽 (全文顯示)" + +#: libraries/DisplayResults.class.php:4427 tbl_chart.php:80 +msgid "Display chart" +msgstr "顯示圖表" + +#: libraries/DisplayResults.class.php:4446 +msgid "Visualize GIS data" +msgstr "" + +#: libraries/DisplayResults.class.php:4474 view_create.php:120 +msgid "Create view" +msgstr "新建視圖" + +#: libraries/DisplayResults.class.php:4645 +msgid "Link not found" +msgstr "找不到連結" + #: libraries/Error_Handler.class.php:65 msgid "Too many error messages, some are not displayed." msgstr "" -#: libraries/File.class.php:234 +#: libraries/File.class.php:235 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:272 +#: libraries/File.class.php:273 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "上傳檔案的大小超過 php.ini 檔案中 upload_max_filesize 的限制" -#: libraries/File.class.php:275 +#: libraries/File.class.php:276 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "上傳檔案的大小超過 HTML 表單中指定的 MAX_FILE_SIZE 值" -#: libraries/File.class.php:278 +#: libraries/File.class.php:279 msgid "The uploaded file was only partially uploaded." msgstr "僅上傳了檔案的一部分內容" -#: libraries/File.class.php:281 +#: libraries/File.class.php:282 msgid "Missing a temporary folder." msgstr "找不到臨時資料夾" -#: libraries/File.class.php:284 +#: libraries/File.class.php:285 msgid "Failed to write file to disk." msgstr "將檔案寫入硬碟失敗" -#: libraries/File.class.php:287 +#: libraries/File.class.php:288 msgid "File upload stopped by extension." msgstr "因外掛而停止檔案上傳" -#: libraries/File.class.php:290 +#: libraries/File.class.php:291 msgid "Unknown error in file upload." msgstr "上傳檔案時發生未知錯誤" -#: libraries/File.class.php:466 +#: libraries/File.class.php:467 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2521,26 +2729,41 @@ msgstr "" "移動上傳文件時發生錯誤,參見 [a@./Documentation.html#faq1_11@Documentation]" "FAQ 1.11[/a]。" -#: libraries/File.class.php:484 +#: libraries/File.class.php:485 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:492 +#: libraries/File.class.php:493 msgid "Cannot read (moved) upload file." msgstr "" -#: libraries/Index.class.php:430 tbl_relation.php:532 +#: libraries/Footer.class.php:197 libraries/Footer.class.php:201 +#: libraries/Footer.class.php:204 +msgid "Open new phpMyAdmin window" +msgstr "開啟新 phpMyAdmin 視窗" + +#: libraries/Header.class.php:493 libraries/auth/cookie.auth.lib.php:296 +msgid "Cookies must be enabled past this point." +msgstr "必須啟用 Cookies 才能登入。" + +#: libraries/Header.class.php:498 libraries/auth/cookie.auth.lib.php:208 +#, fuzzy +#| msgid "Cookies must be enabled past this point." +msgid "Javascript must be enabled past this point" +msgstr "必須啟用 Cookies 才能登入。" + +#: libraries/Index.class.php:430 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:733 +#: libraries/build_html_for_db.lib.php:41 tbl_structure.php:735 #: tbl_tracking.php:361 msgid "Indexes" msgstr "索引" #: libraries/Index.class.php:459 libraries/tbl_properties.inc.php:524 -#: tbl_structure.php:150 tbl_structure.php:155 tbl_structure.php:592 +#: tbl_structure.php:152 tbl_structure.php:157 tbl_structure.php:594 #: tbl_tracking.php:367 msgid "Unique" msgstr "唯一" @@ -2553,8 +2776,8 @@ msgstr "緊湊" msgid "Cardinality" msgstr "基數" -#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:958 tbl_tracking.php:309 +#: libraries/Index.class.php:465 libraries/rte/rte_events.lib.php:484 +#: libraries/rte/rte_routines.lib.php:961 tbl_tracking.php:309 #: tbl_tracking.php:373 msgid "Comment" msgstr "註解" @@ -2575,130 +2798,130 @@ msgid "" "removed." msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除" -#: libraries/List_Database.class.php:403 libraries/Menu.class.php:459 -#: libraries/config/messages.inc.php:181 server_databases.php:128 -#: server_privileges.php:2010 +#: libraries/List_Database.class.php:403 libraries/Menu.class.php:447 +#: libraries/config/messages.inc.php:181 server_databases.php:132 +#: server_privileges.php:2018 msgid "Databases" msgstr "資料庫" -#: libraries/Menu.class.php:154 libraries/common.inc.php:684 -#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:791 -#: server_synchronize.php:1428 +#: libraries/Menu.class.php:146 libraries/common.inc.php:648 +#: libraries/config/messages.inc.php:512 main.php:180 server_status.php:790 +#: server_synchronize.php:1431 msgid "Server" msgstr "伺服器" -#: libraries/Menu.class.php:269 libraries/Menu.class.php:362 -#: libraries/common.lib.php:3184 libraries/common.lib.php:3191 -#: libraries/common.lib.php:3426 libraries/config/setup.forms.php:295 +#: libraries/Menu.class.php:257 libraries/Menu.class.php:350 +#: 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 #: libraries/config/user_preferences.forms.php:196 #: libraries/config/user_preferences.forms.php:233 #: libraries/config/user_preferences.forms.php:259 #: libraries/export/latex.php:458 libraries/import.lib.php:1199 -#: libraries/tbl_properties.inc.php:742 pmd_general.php:165 -#: server_privileges.php:713 server_replication.php:343 tbl_tracking.php:299 +#: libraries/tbl_properties.inc.php:742 pmd_general.php:167 +#: server_privileges.php:714 server_replication.php:344 tbl_tracking.php:299 msgid "Structure" msgstr "結構" -#: libraries/Menu.class.php:273 libraries/Menu.class.php:367 -#: libraries/Menu.class.php:463 libraries/common.lib.php:3185 -#: libraries/common.lib.php:3192 libraries/config/messages.inc.php:218 -#: libraries/export/sql.php:27 libraries/import/sql.php:18 querywindow.php:65 +#: libraries/Menu.class.php:261 libraries/Menu.class.php:355 +#: libraries/Menu.class.php:451 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:282 libraries/common.lib.php:3187 -#: libraries/common.lib.php:3424 libraries/common.lib.php:3425 +#: libraries/Menu.class.php:270 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 msgid "Insert" msgstr "插入" -#: libraries/Menu.class.php:301 libraries/Menu.class.php:324 -#: libraries/Menu.class.php:388 libraries/common.lib.php:3194 +#: libraries/Menu.class.php:289 libraries/Menu.class.php:312 +#: libraries/Menu.class.php:376 libraries/common.lib.php:3317 #: view_operations.php:82 msgid "Operations" msgstr "操作" -#: libraries/Menu.class.php:305 libraries/Menu.class.php:422 -#: libraries/relation.lib.php:267 +#: libraries/Menu.class.php:293 libraries/Menu.class.php:410 +#: libraries/relation.lib.php:236 msgid "Tracking" msgstr "追蹤" -#: libraries/Menu.class.php:314 libraries/Menu.class.php:416 +#: libraries/Menu.class.php:302 libraries/Menu.class.php:404 #: 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:328 libraries/Menu.class.php:329 +#: libraries/Menu.class.php:316 libraries/Menu.class.php:317 msgid "Table seems to be empty!" msgstr "資料表是空的!" -#: libraries/Menu.class.php:356 libraries/Menu.class.php:357 -#: libraries/Menu.class.php:358 +#: libraries/Menu.class.php:344 libraries/Menu.class.php:345 +#: libraries/Menu.class.php:346 msgid "Database seems to be empty!" msgstr "資料庫是空的!" -#: libraries/Menu.class.php:374 +#: libraries/Menu.class.php:362 msgid "Query" msgstr "查詢" -#: libraries/Menu.class.php:396 server_privileges.php:181 -#: server_privileges.php:1684 server_privileges.php:2074 -#: server_privileges.php:2422 +#: libraries/Menu.class.php:384 server_privileges.php:182 +#: server_privileges.php:1689 server_privileges.php:2082 +#: server_privileges.php:2430 msgid "Privileges" msgstr "權限" -#: libraries/Menu.class.php:401 libraries/rte/rte_words.lib.php:29 +#: libraries/Menu.class.php:389 libraries/rte/rte_words.lib.php:29 msgid "Routines" msgstr "一般" -#: libraries/Menu.class.php:409 libraries/export/sql.php:780 +#: libraries/Menu.class.php:397 libraries/export/sql.php:780 #: libraries/rte/rte_words.lib.php:53 msgid "Events" msgstr "事件" -#: libraries/Menu.class.php:428 libraries/relation.lib.php:228 +#: libraries/Menu.class.php:416 libraries/relation.lib.php:203 msgid "Designer" msgstr "設計器" -#: libraries/Menu.class.php:472 +#: libraries/Menu.class.php:460 #, fuzzy #| msgid "User" msgid "Users" msgstr "使用者" -#: libraries/Menu.class.php:493 server_synchronize.php:1317 -#: server_synchronize.php:1324 +#: libraries/Menu.class.php:481 server_synchronize.php:1320 +#: server_synchronize.php:1327 msgid "Synchronize" msgstr "同步" -#: libraries/Menu.class.php:498 server_binlog.php:72 server_status.php:608 +#: libraries/Menu.class.php:486 server_binlog.php:72 server_status.php:607 msgid "Binary log" msgstr "二進制日誌" -#: libraries/Menu.class.php:509 server_engines.php:94 server_engines.php:98 -#: server_status.php:661 +#: libraries/Menu.class.php:497 server_engines.php:94 server_engines.php:98 +#: server_status.php:660 msgid "Variables" msgstr "變數" -#: libraries/Menu.class.php:513 +#: libraries/Menu.class.php:501 msgid "Charsets" msgstr "字集" -#: libraries/Menu.class.php:518 server_plugins.php:30 server_plugins.php:63 +#: libraries/Menu.class.php:506 server_plugins.php:33 server_plugins.php:66 msgid "Plugins" msgstr "" -#: libraries/Menu.class.php:522 +#: libraries/Menu.class.php:510 msgid "Engines" msgstr "引擎" -#: libraries/Message.class.php:199 libraries/common.lib.php:629 +#: 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:1050 tbl_operations.php:231 -#: tbl_relation.php:288 view_operations.php:55 +#: libraries/insert_edit.lib.php:1049 tbl_operations.php:231 +#: tbl_relation.php:291 view_operations.php:55 msgid "Error" msgstr "錯誤" @@ -2720,7 +2943,7 @@ msgid "%1$d row inserted." msgid_plural "%1$d rows inserted." msgstr[0] "插入了 %1$d 行。" -#: libraries/PDF.class.php:89 +#: libraries/PDF.class.php:88 #, fuzzy #| msgid "Allows reading data." msgid "Error while creating PDF:" @@ -2814,16 +3037,110 @@ 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 +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 +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 +msgid "Value" +msgstr "值" + +#: libraries/TableSearch.class.php:205 +#, fuzzy +#| msgid "Search" +msgid "Table Search" +msgstr "搜尋" + +#: libraries/TableSearch.class.php:234 libraries/insert_edit.lib.php:1208 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "插入" + +#: libraries/TableSearch.class.php:739 +msgid "Select columns (at least one):" +msgstr "選擇欄位 (至少一個):" + +#: libraries/TableSearch.class.php:758 +msgid "Add search conditions (body of the \"where\" clause):" +msgstr "新增搜尋條件 (“where”指令的主體):" + +#: libraries/TableSearch.class.php:768 +msgid "Number of rows per page" +msgstr "每頁行數" + +#: libraries/TableSearch.class.php:777 +msgid "Display order:" +msgstr "顯示順序:" + +#: libraries/TableSearch.class.php:813 +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 "顯示的最多行數" + +#: libraries/TableSearch.class.php:861 libraries/TableSearch.class.php:1139 +#: sql.php:143 tbl_change.php:211 +msgid "Browse foreign values" +msgstr "瀏覽不相關的值" + +#: libraries/TableSearch.class.php:947 +#, fuzzy +#| msgid "Hide search criteria" +msgid "Additional search criteria" +msgstr "隱藏搜尋條件" + +#: 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 "執行“依例查詢”(萬用字元:“%”)" + +#: libraries/TableSearch.class.php:1088 +msgid "Do a \"query by example\" (wildcard: \"%\")" +msgstr "執行“依例查詢”(萬用字元:“%”)" + +#: libraries/TableSearch.class.php:1148 +msgid "Browse/Edit the points" +msgstr "" + +#: libraries/TableSearch.class.php:1155 +#, fuzzy +#| msgid "Control user" +msgid "How to use" +msgstr "控制使用者" + +#: libraries/TableSearch.class.php:1160 +#, fuzzy +#| msgid "Reset" +msgid "Reset zoom" +msgstr "重置" + #: libraries/Theme.class.php:169 #, php-format msgid "No valid image path for theme %s found!" msgstr "找不到佈景主題 %s 指定圖片路徑!" -#: libraries/Theme.class.php:455 +#: libraries/Theme.class.php:458 msgid "No preview available." msgstr "沒有可用的預覽。" -#: libraries/Theme.class.php:458 +#: libraries/Theme.class.php:460 msgid "take it" msgstr "確定" @@ -2842,7 +3159,7 @@ msgstr "未找到主題 %s !" msgid "Theme path not found for theme %s!" msgstr "找不到主題 %s 的路徑" -#: libraries/Theme_Manager.class.php:363 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:363 themes.php:16 themes.php:21 msgid "Theme" msgstr "主題" @@ -3141,13 +3458,13 @@ msgstr "" msgid "Cannot connect: invalid settings." msgstr "無法連線: 設定錯誤." -#: libraries/auth/config.auth.lib.php:88 -#: libraries/auth/cookie.auth.lib.php:191 libraries/auth/http.auth.lib.php:67 +#: libraries/auth/config.auth.lib.php:85 +#: libraries/auth/cookie.auth.lib.php:195 libraries/auth/http.auth.lib.php:61 #, php-format msgid "Welcome to %s" msgstr "歡迎使用 %s" -#: libraries/auth/config.auth.lib.php:103 +#: libraries/auth/config.auth.lib.php:98 #, php-format msgid "" "You probably did not create a configuration file. You might want to use the " @@ -3155,7 +3472,7 @@ msgid "" msgstr "" "您可能還沒有建立設定檔案。您可以使用 %1$s設定指令%2$s 來建立一個設定檔案" -#: libraries/auth/config.auth.lib.php:115 +#: libraries/auth/config.auth.lib.php:110 msgid "" "phpMyAdmin tried to connect to the MySQL server, and the server rejected the " "connection. You should check the host, username and password in your " @@ -3169,60 +3486,54 @@ msgstr "" msgid "Failed to use Blowfish from mcrypt!" msgstr "" -#: libraries/auth/cookie.auth.lib.php:204 libraries/header.inc.php:92 -#, fuzzy -#| msgid "Cookies must be enabled past this point." -msgid "Javascript must be enabled past this point" -msgstr "必須啟用 Cookies 才能登入。" +#: libraries/auth/cookie.auth.lib.php:139 +msgid "Your session has expired. Please login again." +msgstr "" -#: libraries/auth/cookie.auth.lib.php:223 +#: libraries/auth/cookie.auth.lib.php:227 msgid "Log in" msgstr "登錄" -#: libraries/auth/cookie.auth.lib.php:230 -#: libraries/auth/cookie.auth.lib.php:231 +#: libraries/auth/cookie.auth.lib.php:234 +#: libraries/auth/cookie.auth.lib.php:235 msgid "You can enter hostname/IP address and port separated by space." msgstr "您可以輸入以空格分隔的主機名/IP網址和連結埠" -#: libraries/auth/cookie.auth.lib.php:230 +#: libraries/auth/cookie.auth.lib.php:234 msgid "Server:" msgstr "伺服器:" -#: libraries/auth/cookie.auth.lib.php:235 +#: libraries/auth/cookie.auth.lib.php:239 msgid "Username:" msgstr "使用者名稱" -#: libraries/auth/cookie.auth.lib.php:239 +#: libraries/auth/cookie.auth.lib.php:243 msgid "Password:" msgstr "密碼:" -#: libraries/auth/cookie.auth.lib.php:246 +#: libraries/auth/cookie.auth.lib.php:250 msgid "Server Choice" msgstr "選擇伺服器" -#: libraries/auth/cookie.auth.lib.php:292 libraries/header.inc.php:88 -msgid "Cookies must be enabled past this point." -msgstr "必須啟用 Cookies 才能登入。" - -#: libraries/auth/cookie.auth.lib.php:614 +#: libraries/auth/cookie.auth.lib.php:616 #: libraries/auth/signon.auth.lib.php:245 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "空密碼登錄被禁止 (參見 允許空密碼)" -#: libraries/auth/cookie.auth.lib.php:618 +#: libraries/auth/cookie.auth.lib.php:620 #: libraries/auth/signon.auth.lib.php:249 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "登錄超時 (%s 秒未操作),請重新登錄" -#: libraries/auth/cookie.auth.lib.php:629 #: libraries/auth/cookie.auth.lib.php:631 +#: libraries/auth/cookie.auth.lib.php:633 #: libraries/auth/signon.auth.lib.php:253 msgid "Cannot log in to the MySQL server" msgstr "無法登錄 MySQL 伺服器" -#: libraries/auth/http.auth.lib.php:72 +#: libraries/auth/http.auth.lib.php:66 msgid "Wrong username/password. Access denied." msgstr "帳號/密碼錯誤。拒絕訪問" @@ -3254,7 +3565,7 @@ msgstr "已共享" #: libraries/build_html_for_db.lib.php:26 #: libraries/config/messages.inc.php:187 libraries/export/xml.php:61 -#: server_status.php:615 +#: server_status.php:614 msgid "Tables" msgstr "資料表" @@ -3266,13 +3577,13 @@ msgstr "資料表" #: libraries/config/user_preferences.forms.php:264 #: libraries/config/user_preferences.forms.php:269 #: libraries/export/latex.php:284 libraries/export/sql.php:1395 -#: server_privileges.php:713 server_replication.php:344 tbl_printview.php:303 -#: tbl_structure.php:833 +#: server_privileges.php:714 server_replication.php:345 tbl_printview.php:296 +#: tbl_structure.php:835 msgid "Data" msgstr "資料" #: libraries/build_html_for_db.lib.php:51 libraries/db_structure.lib.php:55 -#: tbl_printview.php:322 tbl_structure.php:850 +#: tbl_printview.php:315 tbl_structure.php:852 msgid "Overhead" msgstr "多餘" @@ -3297,32 +3608,24 @@ msgstr "檢查資料庫 「%s」 之權限." msgid "Check Privileges" msgstr "檢查權限" -#: libraries/common.inc.php:156 -msgid "possible exploit" -msgstr "" - -#: libraries/common.inc.php:165 -msgid "numeric key detected" -msgstr "" - -#: libraries/common.inc.php:608 +#: libraries/common.inc.php:572 #, fuzzy #| msgid "Could not save configuration" msgid "Failed to read configuration file" msgstr "無法儲存設定" -#: libraries/common.inc.php:610 +#: libraries/common.inc.php:574 msgid "" "This usually means there is a syntax error in it, please check any errors " "shown below." msgstr "" -#: libraries/common.inc.php:617 +#: libraries/common.inc.php:581 #, php-format msgid "Could not load default configuration from: %1$s" msgstr "無法載入預設設定: %1$s" -#: libraries/common.inc.php:624 +#: libraries/common.inc.php:588 #, fuzzy #| msgid "" #| "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " @@ -3332,217 +3635,194 @@ msgid "" "configuration file!" msgstr "必須在您的設定檔案中設定 $cfg['PmaAbsoluteUri'] !" -#: libraries/common.inc.php:657 +#: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" msgstr "無效的伺服器索引: %s" -#: libraries/common.inc.php:668 +#: libraries/common.inc.php:632 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "伺服器 %1$s 主機名稱錯誤, 請檢查設定檔案." -#: libraries/common.inc.php:877 +#: libraries/common.inc.php:844 msgid "Invalid authentication method set in configuration:" msgstr "設定檔案中設定的認證方式無效:" -#: libraries/common.inc.php:1000 +#: libraries/common.inc.php:964 #, php-format msgid "You should upgrade to %s %s or later." msgstr "您應升級到 %s %s 或更高版本。" -#: libraries/common.lib.php:195 +#: libraries/common.inc.php:1067 +msgid "GLOBALS overwrite attempt" +msgstr "" + +#: libraries/common.inc.php:1074 +msgid "possible exploit" +msgstr "" + +#: libraries/common.inc.php:1083 +msgid "numeric key detected" +msgstr "" + +#: libraries/common.lib.php:206 #, php-format msgid "Max: %s%s" msgstr "最大限制:%s %s" -#: libraries/common.lib.php:403 libraries/common.lib.php:493 +#: libraries/common.lib.php:420 libraries/common.lib.php:512 #: libraries/config/FormDisplay.tpl.php:147 -#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:109 -#: libraries/relation.lib.php:94 main.php:246 server_variables.php:133 +#: libraries/display_export.lib.php:238 libraries/engines/pbxt.lib.php:112 +#: libraries/relation.lib.php:88 main.php:246 server_variables.php:129 msgid "Documentation" msgstr "文件" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:469 +#: libraries/common.lib.php:488 msgctxt "MySQL 5.5 documentation language" msgid "en" msgstr "zh" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:473 +#: libraries/common.lib.php:492 msgctxt "MySQL 5.1 documentation language" msgid "en" msgstr "en" #. l10n: Please check that translation actually exists. -#: libraries/common.lib.php:477 +#: libraries/common.lib.php:496 msgctxt "MySQL 5.0 documentation language" msgid "en" msgstr "zh" -#: libraries/common.lib.php:642 server_status.php:602 server_status.php:1262 -#: sql.php:934 +#: libraries/common.lib.php:632 server_status.php:601 server_status.php:1261 +#: sql.php:960 msgid "SQL query" msgstr "SQL 查詢" -#: libraries/common.lib.php:686 libraries/rte/rte_events.lib.php:103 +#: 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:1266 +#: libraries/rte/rte_routines.lib.php:1269 #: 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 msgid "MySQL said: " msgstr "MySQL 返回: " -#: libraries/common.lib.php:1148 +#: libraries/common.lib.php:1155 msgid "Failed to connect to SQL validator!" msgstr "連線到 SQL 檢驗器失敗!" -#: libraries/common.lib.php:1190 libraries/config/messages.inc.php:491 +#: libraries/common.lib.php:1197 libraries/config/messages.inc.php:491 msgid "Explain SQL" msgstr "SQL說明" -#: libraries/common.lib.php:1196 +#: libraries/common.lib.php:1203 msgid "Skip Explain SQL" msgstr "略過SQL說明" -#: libraries/common.lib.php:1235 +#: libraries/common.lib.php:1242 msgid "Without PHP Code" msgstr "無 PHP 程式碼" -#: libraries/common.lib.php:1238 libraries/config/messages.inc.php:493 +#: libraries/common.lib.php:1245 libraries/config/messages.inc.php:493 msgid "Create PHP Code" msgstr "建立 PHP 程式碼" -#: libraries/common.lib.php:1260 libraries/config/messages.inc.php:492 -#: server_status.php:802 server_status.php:824 server_status.php:844 +#: libraries/common.lib.php:1267 libraries/config/messages.inc.php:492 +#: server_status.php:801 server_status.php:823 server_status.php:843 msgid "Refresh" msgstr "重新整理" -#: libraries/common.lib.php:1270 +#: libraries/common.lib.php:1277 msgid "Skip Validate SQL" msgstr "略過檢驗 SQL" -#: libraries/common.lib.php:1273 libraries/config/messages.inc.php:495 +#: libraries/common.lib.php:1280 libraries/config/messages.inc.php:495 msgid "Validate SQL" msgstr "檢驗 SQL" -#: libraries/common.lib.php:1336 +#: libraries/common.lib.php:1342 msgid "Inline edit of this query" msgstr "在本頁面編輯此查詢" -#: libraries/common.lib.php:1338 +#: libraries/common.lib.php:1344 msgctxt "Inline edit query" msgid "Inline" msgstr "行間" -#: libraries/common.lib.php:1404 sql.php:1000 +#: libraries/common.lib.php:1415 sql.php:1027 msgid "Profiling" msgstr "概要" #. l10n: Short week day name -#: libraries/common.lib.php:1668 +#: libraries/common.lib.php:1685 msgctxt "Short week day name" msgid "Sun" msgstr "週日" #. l10n: See http://www.php.net/manual/en/function.strftime.php -#: libraries/common.lib.php:1684 +#: libraries/common.lib.php:1701 #: libraries/transformations/text_plain__dateformat.inc.php:37 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/common.lib.php:2017 +#: libraries/common.lib.php:2047 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小時,%s 分 %s 秒" -#: libraries/common.lib.php:2106 +#: libraries/common.lib.php:2138 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "一般" -#: libraries/common.lib.php:2488 libraries/common.lib.php:2492 -#: libraries/display_tbl.lib.php:486 -#, fuzzy -#| msgid "Begin" -msgctxt "First page" -msgid "Begin" -msgstr "開始" - -#: libraries/common.lib.php:2490 libraries/common.lib.php:2493 -#: libraries/display_tbl.lib.php:489 server_binlog.php:130 -#: server_binlog.php:132 -#, fuzzy -#| msgid "Previous" -msgctxt "Previous page" -msgid "Previous" -msgstr "上一個" - -# 這應該使用於選擇日期的小月曆 -#: libraries/common.lib.php:2521 libraries/common.lib.php:2524 -#: libraries/display_tbl.lib.php:543 server_binlog.php:165 -#: server_binlog.php:167 -#, fuzzy -#| msgid "Next" -msgctxt "Next page" -msgid "Next" -msgstr "下個月" - -#: libraries/common.lib.php:2522 libraries/common.lib.php:2525 -#: libraries/display_tbl.lib.php:568 -#, fuzzy -#| msgid "End" -msgctxt "Last page" -msgid "End" -msgstr "結束" - -#: libraries/common.lib.php:2592 +#: libraries/common.lib.php:2673 #, php-format msgid "Jump to database "%s"." msgstr "跳轉到資料庫“%s”" -#: libraries/common.lib.php:2614 +#: libraries/common.lib.php:2697 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一個已知的缺陷 (bug) 影響,參見 %s" -#: libraries/common.lib.php:2782 +#: libraries/common.lib.php:2880 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "點擊選取" -#: libraries/common.lib.php:3350 libraries/sql_query_form.lib.php:442 -#: prefs_manage.php:247 +#: libraries/common.lib.php:3426 libraries/sql_query_form.lib.php:442 +#: prefs_manage.php:245 msgid "Browse your computer:" msgstr "從計算機中上傳:" -#: libraries/common.lib.php:3372 +#: libraries/common.lib.php:3454 #, php-format msgid "Select from the web server upload directory %s:" msgstr "選擇 Web 伺服器上傳目錄 %s:" -#: libraries/common.lib.php:3397 libraries/insert_edit.lib.php:1051 +#: libraries/common.lib.php:3483 libraries/insert_edit.lib.php:1050 #: libraries/sql_query_form.lib.php:451 msgid "The directory you set for upload work cannot be reached" msgstr "設定之上傳目錄錯誤,無法使用" -#: libraries/common.lib.php:3407 +#: libraries/common.lib.php:3493 msgid "There are no files to upload" msgstr "沒有可上傳的檔案" -#: libraries/common.lib.php:3435 libraries/common.lib.php:3436 +#: libraries/common.lib.php:3525 libraries/common.lib.php:3526 msgid "Execute" msgstr "執行" -#: libraries/common.lib.php:3945 +#: libraries/common.lib.php:4064 msgid "Print" msgstr "列印" @@ -3572,8 +3852,8 @@ msgid "Closed" msgstr "關閉" #: libraries/config.values.php:100 libraries/config/FormDisplay.tpl.php:220 -#: libraries/relation.lib.php:101 libraries/relation.lib.php:108 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:96 libraries/relation.lib.php:103 +#: pmd_relation_new.php:81 msgid "Disabled" msgstr "已關閉" @@ -3714,9 +3994,9 @@ msgstr "還原預設值" msgid "Allow users to customize this value" msgstr "允許使用者自訂該值" -#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1373 -#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:326 -#: prefs_manage.php:331 +#: libraries/config/FormDisplay.tpl.php:386 libraries/insert_edit.lib.php:1372 +#: libraries/schema/User_Schema.class.php:510 prefs_manage.php:323 +#: prefs_manage.php:328 msgid "Reset" msgstr "重置" @@ -3932,10 +4212,6 @@ msgstr "規劃表結構" msgid "Show binary contents as HEX by default" msgstr "預設以十六進制顯示二進制內容" -#: libraries/config/messages.inc.php:61 libraries/display_tbl.lib.php:1301 -msgid "Show binary contents as HEX" -msgstr "以十六進制顯示二進制內容" - #: libraries/config/messages.inc.php:62 msgid "Show database listing as a list instead of a drop down" msgstr "直接顯示資料庫列表而不使用下拉選單" @@ -3990,7 +4266,7 @@ msgstr "設定指令最大運行時間 (單位:秒,[kbd]0[/kbd] 爲不限制 msgid "Maximum execution time" msgstr "最長執行時間" -#: libraries/config/messages.inc.php:74 prefs_manage.php:305 +#: libraries/config/messages.inc.php:74 prefs_manage.php:302 msgid "Save as file" msgstr "另存檔案" @@ -3999,7 +4275,7 @@ msgid "Character set of the file" msgstr "檔案字集" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:92 -#: tbl_gis_visualization.php:174 tbl_printview.php:358 tbl_structure.php:896 +#: tbl_gis_visualization.php:177 tbl_printview.php:351 tbl_structure.php:898 msgid "Format" msgstr "格式" @@ -4103,7 +4379,7 @@ msgid "MIME type" msgstr "MIME 類型" #: libraries/config/messages.inc.php:104 libraries/config/messages.inc.php:116 -#: libraries/config/messages.inc.php:140 tbl_relation.php:398 +#: libraries/config/messages.inc.php:140 tbl_relation.php:401 msgid "Relations" msgstr "關聯" @@ -5636,9 +5912,9 @@ msgstr "需要啓用 SQL 檢驗器" #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63 #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 -#: libraries/replication_gui.lib.php:355 server_privileges.php:981 -#: server_privileges.php:985 server_privileges.php:996 -#: server_privileges.php:1855 server_synchronize.php:1444 +#: libraries/replication_gui.lib.php:355 server_privileges.php:982 +#: server_privileges.php:986 server_privileges.php:997 +#: server_privileges.php:1863 server_synchronize.php:1447 msgid "Password" msgstr "密碼" @@ -5920,31 +6196,24 @@ msgstr "" msgid "Details..." msgstr "詳細..." -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:3548 -msgid "" -"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " -"3.11[/a]" -msgstr "" -"可能接近。參見 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" - #: libraries/dbi/drizzle.dbi.lib.php:117 libraries/dbi/mysql.dbi.lib.php:120 #: libraries/dbi/mysqli.dbi.lib.php:192 msgid "Connection for controluser as defined in your configuration failed." msgstr "使用設定檔案中定義的控制使用者連線失敗" #: libraries/display_change_password.lib.php:29 main.php:104 -#: user_password.php:207 +#: user_password.php:213 msgid "Change password" msgstr "修改密碼" #: libraries/display_change_password.lib.php:34 -#: libraries/replication_gui.lib.php:351 server_privileges.php:992 +#: libraries/replication_gui.lib.php:351 server_privileges.php:993 msgid "No Password" msgstr "無密碼" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:359 libraries/replication_gui.lib.php:362 -#: server_privileges.php:1000 server_privileges.php:1003 +#: server_privileges.php:1001 server_privileges.php:1004 msgid "Re-type" msgstr "重新輸入" @@ -5967,22 +6236,22 @@ msgstr "建立新資料庫" msgid "Create" msgstr "建立" -#: libraries/display_create_database.lib.php:43 server_privileges.php:183 -#: server_privileges.php:1740 server_replication.php:33 +#: libraries/display_create_database.lib.php:43 server_privileges.php:184 +#: server_privileges.php:1748 server_replication.php:35 msgid "No Privileges" msgstr "無權限" -#: libraries/display_create_table.lib.php:46 pmd_general.php:89 -#: server_synchronize.php:525 server_synchronize.php:1045 +#: libraries/display_create_table.lib.php:46 pmd_general.php:91 +#: server_synchronize.php:528 server_synchronize.php:1048 msgid "Create table" 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:861 -#: libraries/rte/rte_routines.lib.php:1378 libraries/tbl_properties.inc.php:84 -#: setup/frames/index.inc.php:135 tbl_structure.php:200 +#: 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 +#: setup/frames/index.inc.php:135 tbl_structure.php:202 msgid "Name" msgstr "名字" @@ -6135,26 +6404,26 @@ msgstr "請下拉至所選格式並設定選項,其它格式請忽略" msgid "Encoding Conversion:" msgstr "編碼轉換:" -#: libraries/display_git_revision.lib.php:54 +#: libraries/display_git_revision.lib.php:56 #, php-format msgid "%1$s from %2$s branch" msgstr "" -#: libraries/display_git_revision.lib.php:56 +#: libraries/display_git_revision.lib.php:58 msgid "no branch" msgstr "" -#: libraries/display_git_revision.lib.php:63 +#: libraries/display_git_revision.lib.php:64 msgid "Git revision" msgstr "" -#: libraries/display_git_revision.lib.php:66 +#: libraries/display_git_revision.lib.php:67 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "committed on %1$s by %2$s" msgstr "爲 %2$s.%3$s 建立版本 %1$s" -#: libraries/display_git_revision.lib.php:74 +#: libraries/display_git_revision.lib.php:75 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "authored on %1$s by %2$s" @@ -6269,272 +6538,115 @@ msgstr "格式特定選項:" msgid "Language" msgstr "語系" -#: libraries/display_tbl.lib.php:419 -#, fuzzy -#| msgid "Save directory" -msgid "Save edited data" -msgstr "保存文件夾" - -#: libraries/display_tbl.lib.php:425 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Restore column order" -msgstr "文字框列" - -#: libraries/display_tbl.lib.php:607 -#, fuzzy -#| msgid "Textarea rows" -msgid "Start row" -msgstr "文字框行" - -#: libraries/display_tbl.lib.php:611 -#, fuzzy -#| msgid "Number of rows:" -msgid "Number of rows" -msgstr "記錄數:" - -#: libraries/display_tbl.lib.php:620 -#, fuzzy -#| msgid "More" -msgid "Mode" -msgstr "更多" - -#: libraries/display_tbl.lib.php:622 -msgid "horizontal" -msgstr "水平" - -#: libraries/display_tbl.lib.php:623 -msgid "horizontal (rotated headers)" -msgstr "水平 (旋轉標題)" - -#: libraries/display_tbl.lib.php:624 -msgid "vertical" -msgstr "垂直" - -#: libraries/display_tbl.lib.php:636 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/display_tbl.lib.php:1113 -msgid "Sort by key" -msgstr "主鍵排序" - -#: libraries/display_tbl.lib.php:1258 libraries/export/codegen.php:42 -#: libraries/export/csv.php:23 libraries/export/excel.php:22 -#: libraries/export/htmlword.php:23 libraries/export/json.php:22 -#: libraries/export/latex.php:31 libraries/export/mediawiki.php:19 -#: libraries/export/ods.php:23 libraries/export/odt.php:29 -#: libraries/export/pdf.php:23 libraries/export/php_array.php:22 -#: libraries/export/sql.php:31 libraries/export/texytext.php:22 -#: libraries/export/xml.php:23 libraries/export/yaml.php:23 -#: libraries/import.lib.php:1173 libraries/import.lib.php:1199 -#: libraries/import/csv.php:25 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:864 libraries/tbl_select.lib.php:568 -#: tbl_structure.php:912 -msgid "Options" -msgstr "選項" - -#: libraries/display_tbl.lib.php:1263 libraries/display_tbl.lib.php:1372 -msgid "Partial texts" -msgstr "部分內容" - -#: libraries/display_tbl.lib.php:1264 libraries/display_tbl.lib.php:1376 -msgid "Full texts" -msgstr "完整內容" - -#: libraries/display_tbl.lib.php:1278 -msgid "Relational key" -msgstr "關聯鍵" - -#: libraries/display_tbl.lib.php:1279 -msgid "Relational display column" -msgstr "關聯顯示字段" - -#: libraries/display_tbl.lib.php:1291 -msgid "Show binary contents" -msgstr "顯示二進制內容" - -#: libraries/display_tbl.lib.php:1296 -msgid "Show BLOB contents" -msgstr "顯示 BLOB 內容" - -#: libraries/display_tbl.lib.php:1312 -#, fuzzy -#| msgid "Browser transformation" -msgid "Hide browser transformation" -msgstr "瀏覽器轉換" - -#: libraries/display_tbl.lib.php:1321 -msgid "Well Known Text" -msgstr "" - -#: libraries/display_tbl.lib.php:1322 -msgid "Well Known Binary" -msgstr "" - -#: libraries/display_tbl.lib.php:2483 libraries/display_tbl.lib.php:2498 -msgid "The row has been deleted" -msgstr "已刪除該行" - -#: libraries/display_tbl.lib.php:2533 libraries/display_tbl.lib.php:4055 -#: server_status.php:1282 -msgid "Kill" -msgstr "中止" - -#: libraries/display_tbl.lib.php:3944 -msgid "in query" -msgstr "查詢中" - -#: libraries/display_tbl.lib.php:3990 -msgid "Showing rows" -msgstr "顯示行" - -#: libraries/display_tbl.lib.php:4004 -msgid "total" -msgstr "總計" - -#: libraries/display_tbl.lib.php:4015 sql.php:811 -#, php-format -msgid "Query took %01.4f sec" -msgstr "查詢花費 %01.4f 秒" - -#: libraries/display_tbl.lib.php:4205 -msgid "Query results operations" -msgstr "查詢結果選項" - -#: libraries/display_tbl.lib.php:4238 -msgid "Print view (with full texts)" -msgstr "列印預覽 (全文顯示)" - -#: libraries/display_tbl.lib.php:4300 tbl_chart.php:77 -msgid "Display chart" -msgstr "顯示圖表" - -#: libraries/display_tbl.lib.php:4318 -msgid "Visualize GIS data" -msgstr "" - -#: libraries/display_tbl.lib.php:4345 view_create.php:108 -msgid "Create view" -msgstr "新建視圖" - -#: libraries/display_tbl.lib.php:4499 -msgid "Link not found" -msgstr "找不到連結" - -#: libraries/engines/bdb.lib.php:23 main.php:245 +#: libraries/engines/bdb.lib.php:25 main.php:245 msgid "Version information" msgstr "版本資訊" -#: libraries/engines/innodb.lib.php:23 +#: libraries/engines/innodb.lib.php:28 msgid "Data home directory" msgstr "資料主資料夾" -#: libraries/engines/innodb.lib.php:24 +#: libraries/engines/innodb.lib.php:29 msgid "The common part of the directory path for all InnoDB data files." msgstr "所有 InnoDB 資料檔案的公共路徑." -#: libraries/engines/innodb.lib.php:27 +#: libraries/engines/innodb.lib.php:32 msgid "Data files" msgstr "資料檔案" -#: libraries/engines/innodb.lib.php:30 +#: libraries/engines/innodb.lib.php:35 msgid "Autoextend increment" msgstr "自動增加" -#: libraries/engines/innodb.lib.php:31 +#: libraries/engines/innodb.lib.php:36 msgid "" "The increment size for extending the size of an autoextending tablespace " "when it becomes full." msgstr "資料表空間不足時自動增加的大小" -#: libraries/engines/innodb.lib.php:35 +#: libraries/engines/innodb.lib.php:40 msgid "Buffer pool size" msgstr "快取池大小" -#: libraries/engines/innodb.lib.php:36 +#: libraries/engines/innodb.lib.php:41 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." msgstr "InnoDB 用於快取資料和索引要使用的記憶體快取大小" -#: libraries/engines/innodb.lib.php:133 +#: libraries/engines/innodb.lib.php:141 msgid "Buffer Pool" msgstr "快取池" -#: libraries/engines/innodb.lib.php:134 server_status.php:663 +#: libraries/engines/innodb.lib.php:142 server_status.php:662 msgid "InnoDB Status" msgstr "InnoDB 狀態" -#: libraries/engines/innodb.lib.php:156 +#: libraries/engines/innodb.lib.php:164 msgid "Buffer Pool Usage" msgstr "快取池使用情況" -#: libraries/engines/innodb.lib.php:163 +#: libraries/engines/innodb.lib.php:171 msgid "pages" msgstr "頁數" -#: libraries/engines/innodb.lib.php:174 +#: libraries/engines/innodb.lib.php:182 msgid "Free pages" msgstr "空閒頁" -#: libraries/engines/innodb.lib.php:180 +#: libraries/engines/innodb.lib.php:188 msgid "Dirty pages" msgstr "髒頁" -#: libraries/engines/innodb.lib.php:186 +#: libraries/engines/innodb.lib.php:194 msgid "Pages containing data" msgstr "非空頁" -#: libraries/engines/innodb.lib.php:192 +#: libraries/engines/innodb.lib.php:200 msgid "Pages to be flushed" msgstr "要重新整理的頁" -#: libraries/engines/innodb.lib.php:198 +#: libraries/engines/innodb.lib.php:206 msgid "Busy pages" msgstr "負載頁" -#: libraries/engines/innodb.lib.php:207 +#: libraries/engines/innodb.lib.php:215 msgid "Latched pages" msgstr "鎖定頁" -#: libraries/engines/innodb.lib.php:218 +#: libraries/engines/innodb.lib.php:226 msgid "Buffer Pool Activity" msgstr "快取池操作" -#: libraries/engines/innodb.lib.php:222 +#: libraries/engines/innodb.lib.php:230 msgid "Read requests" msgstr "讀請求" -#: libraries/engines/innodb.lib.php:228 +#: libraries/engines/innodb.lib.php:236 msgid "Write requests" msgstr "寫請求" -#: libraries/engines/innodb.lib.php:234 +#: libraries/engines/innodb.lib.php:242 msgid "Read misses" msgstr "讀缺失數" -#: libraries/engines/innodb.lib.php:240 +#: libraries/engines/innodb.lib.php:248 msgid "Write waits" msgstr "寫等待數" -#: libraries/engines/innodb.lib.php:246 +#: libraries/engines/innodb.lib.php:254 msgid "Read misses in %" msgstr "讀缺失率" -#: libraries/engines/innodb.lib.php:254 +#: libraries/engines/innodb.lib.php:262 msgid "Write waits in %" msgstr "寫等待率" -#: libraries/engines/myisam.lib.php:25 +#: libraries/engines/myisam.lib.php:28 msgid "Data pointer size" msgstr "資料指標大小" -#: libraries/engines/myisam.lib.php:26 +#: libraries/engines/myisam.lib.php:29 msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." @@ -6542,22 +6654,22 @@ msgstr "" "預設資料指標的大小 (單位:字元),用於在沒有指定 MAX_ROWS 選項的情況下建立 " "MyISAM 資料表" -#: libraries/engines/myisam.lib.php:30 +#: libraries/engines/myisam.lib.php:33 msgid "Automatic recovery mode" msgstr "自動恢復模式" -#: libraries/engines/myisam.lib.php:31 +#: libraries/engines/myisam.lib.php:34 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" "該模式用於自動恢復崩潰的 MyISAM 表,可在啓動時使用 --myisam-recover 參數" -#: libraries/engines/myisam.lib.php:34 +#: libraries/engines/myisam.lib.php:37 msgid "Maximum size for temporary sort files" msgstr "臨時排序檔案的最大大小" -#: libraries/engines/myisam.lib.php:35 +#: libraries/engines/myisam.lib.php:38 msgid "" "The maximum size of the temporary file MySQL is allowed to use while re-" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " @@ -6566,11 +6678,11 @@ msgstr "" "重建 MyISAM 索引時 MySQL 最多可以使用的臨時檔案大小 (在 REPAIR TABLE、ALTER " "TABLE 或 LOAD DATA INFILE 時)" -#: libraries/engines/myisam.lib.php:39 +#: libraries/engines/myisam.lib.php:42 msgid "Maximum size for temporary files on index creation" msgstr "建立索引的臨時檔案最大大小" -#: libraries/engines/myisam.lib.php:40 +#: libraries/engines/myisam.lib.php:43 msgid "" "If the temporary file used for fast MyISAM index creation would be larger " "than using the key cache by the amount specified here, prefer the key cache " @@ -6578,11 +6690,11 @@ msgid "" msgstr "" "如果用於建立 MyISAM 快速索引的臨時檔案大於在此指定的鍵快取,則建議使用鍵緩存" -#: libraries/engines/myisam.lib.php:44 +#: libraries/engines/myisam.lib.php:47 msgid "Repair threads" msgstr "修復程序" -#: libraries/engines/myisam.lib.php:45 +#: libraries/engines/myisam.lib.php:48 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." @@ -6590,11 +6702,11 @@ msgstr "" "如果該值大於 1,在進行排序過程的修復操作時 MyISAM 表的索引將會同時 (每個索引" "都有自己的程序) 建立" -#: libraries/engines/myisam.lib.php:49 +#: libraries/engines/myisam.lib.php:52 msgid "Sort buffer size" msgstr "排序快取大小" -#: libraries/engines/myisam.lib.php:50 +#: libraries/engines/myisam.lib.php:53 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." @@ -6602,21 +6714,21 @@ msgstr "" "在修復表 (REPAIR TABLE) 的過程中進行排序 MyISAM 的索引或透過建立索引 (CREATE " "INDEX) 和修改表 (ALTER TABLE) 建立索引時所要分配的快取大小" -#: libraries/engines/pbxt.lib.php:25 +#: libraries/engines/pbxt.lib.php:28 msgid "Index cache size" msgstr "索引快取大小" -#: libraries/engines/pbxt.lib.php:26 +#: libraries/engines/pbxt.lib.php:29 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." msgstr "用於索引快取的記憶體大小。預設值爲 32MB。該快取僅用於快取索引頁" -#: libraries/engines/pbxt.lib.php:30 +#: libraries/engines/pbxt.lib.php:33 msgid "Record cache size" msgstr "記錄快取大小" -#: libraries/engines/pbxt.lib.php:31 +#: libraries/engines/pbxt.lib.php:34 msgid "" "This is the amount of memory allocated to the record cache used to cache " "table data. The default value is 32MB. This memory is used to cache changes " @@ -6625,51 +6737,51 @@ msgstr "" "用於快取表資料的快取記憶體大小。預設值爲 32MB。該快取用於記錄處理器資料 (*." "xtd) 和行指標 (*.xtr) 檔案" -#: libraries/engines/pbxt.lib.php:35 +#: libraries/engines/pbxt.lib.php:38 msgid "Log cache size" msgstr "日誌快取大小" -#: libraries/engines/pbxt.lib.php:36 +#: libraries/engines/pbxt.lib.php:39 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." msgstr "用於快取交易日誌的記憶體快取區大小。預設值爲 16MB" -#: libraries/engines/pbxt.lib.php:40 +#: libraries/engines/pbxt.lib.php:43 msgid "Log file threshold" msgstr "日志檔案閾值" -#: libraries/engines/pbxt.lib.php:41 +#: libraries/engines/pbxt.lib.php:44 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." msgstr "回滾和新日誌建立前交易日誌的大小。預設值爲 16MB" -#: libraries/engines/pbxt.lib.php:45 +#: libraries/engines/pbxt.lib.php:48 msgid "Transaction buffer size" msgstr "交易快取大小" -#: libraries/engines/pbxt.lib.php:46 +#: libraries/engines/pbxt.lib.php:49 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." msgstr "全域交易日誌快取 (資料引擎會分配兩個該大小的快取區)。預設值爲 1MB" -#: libraries/engines/pbxt.lib.php:50 +#: libraries/engines/pbxt.lib.php:53 msgid "Checkpoint frequency" msgstr "檢查點頻率" -#: libraries/engines/pbxt.lib.php:51 +#: libraries/engines/pbxt.lib.php:54 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." msgstr "在檢查點前最大可以寫入交易日誌的最大資料大小。預設值爲 24MB" -#: libraries/engines/pbxt.lib.php:55 +#: libraries/engines/pbxt.lib.php:58 msgid "Data log threshold" msgstr "資料日誌閾值" -#: libraries/engines/pbxt.lib.php:56 +#: libraries/engines/pbxt.lib.php:59 msgid "" "The maximum size of a data log file. The default value is 64MB. PBXT can " "create a maximum of 32000 data logs, which are used by all tables. So the " @@ -6679,21 +6791,21 @@ msgstr "" "資料日志檔案的最大大小。預設值爲 64MB。PBXT 最多可以建立 32000 個資料日誌,可" "用於所有的表。增加該值可以增加資料庫所能儲存資料的大小" -#: libraries/engines/pbxt.lib.php:60 +#: libraries/engines/pbxt.lib.php:63 msgid "Garbage threshold" msgstr "垃圾閾值" -#: libraries/engines/pbxt.lib.php:61 +#: libraries/engines/pbxt.lib.php:64 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." msgstr "資料日志檔案中壓縮前無效資料所佔的比率。值域爲 1 到 99,預設值爲50" -#: libraries/engines/pbxt.lib.php:65 +#: libraries/engines/pbxt.lib.php:68 msgid "Log buffer size" msgstr "日誌快取大小" -#: libraries/engines/pbxt.lib.php:66 +#: libraries/engines/pbxt.lib.php:69 msgid "" "The size of the buffer used when writing a data log. The default is 256MB. " "The engine allocates one buffer per thread, but only if the thread is " @@ -6702,27 +6814,27 @@ msgstr "" "寫入資料日誌時使用的快取大小。預設值爲 256MB。資料引擎會爲每一個需要進行資料" "日誌寫入的程序分配一個快取區" -#: libraries/engines/pbxt.lib.php:70 +#: libraries/engines/pbxt.lib.php:73 msgid "Data file grow size" msgstr "資料檔案增長大小" -#: libraries/engines/pbxt.lib.php:71 +#: libraries/engines/pbxt.lib.php:74 msgid "The grow size of the handle data (.xtd) files." msgstr "處理器資料檔案 (*.xtd) 增長大小" -#: libraries/engines/pbxt.lib.php:75 +#: libraries/engines/pbxt.lib.php:78 msgid "Row file grow size" msgstr "行檔案增長大小" -#: libraries/engines/pbxt.lib.php:76 +#: libraries/engines/pbxt.lib.php:79 msgid "The grow size of the row pointer (.xtr) files." msgstr "行指標檔案 (*.xtr) 增長大小" -#: libraries/engines/pbxt.lib.php:80 +#: libraries/engines/pbxt.lib.php:83 msgid "Log file count" msgstr "日志檔案總數" -#: libraries/engines/pbxt.lib.php:81 +#: libraries/engines/pbxt.lib.php:84 msgid "" "This is the number of transaction log files (pbxt/system/xlog*.xt) the " "system will maintain. If the number of logs exceeds this value then old logs " @@ -6732,18 +6844,18 @@ msgstr "" "系統維護的交易日誌數量 (pbxt/system/*.xt)。如果日誌數量大於此值,舊的日誌將會" "被刪除,或者被以升序數字序列重命名" -#: libraries/engines/pbxt.lib.php:128 +#: 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." msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s" -#: libraries/engines/pbxt.lib.php:130 +#: libraries/engines/pbxt.lib.php:133 msgid "Related Links" msgstr "相關連結" -#: libraries/engines/pbxt.lib.php:132 +#: libraries/engines/pbxt.lib.php:135 msgid "The PrimeBase XT Blog by Paul McCullagh" msgstr "PrimeBase XT 博客 —— Paul McCullagh 著" @@ -6790,14 +6902,14 @@ msgstr "轉存資料表中的資料" #: libraries/export/htmlword.php:450 libraries/export/odt.php:537 #: libraries/export/texytext.php:409 libraries/rte/rte_list.lib.php:69 -#: libraries/rte/rte_triggers.lib.php:340 +#: libraries/rte/rte_triggers.lib.php:348 msgid "Event" msgstr "事件" #: libraries/export/htmlword.php:451 libraries/export/odt.php:540 -#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:465 -#: libraries/rte/rte_routines.lib.php:924 -#: libraries/rte/rte_triggers.lib.php:354 +#: libraries/export/texytext.php:410 libraries/rte/rte_events.lib.php:469 +#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_triggers.lib.php:362 #, fuzzy #| msgid "Description" msgid "Definition" @@ -6857,14 +6969,14 @@ msgstr "顯示 MIME 類型" #: libraries/export/xml.php:143 libraries/replication_gui.lib.php:66 #: libraries/replication_gui.lib.php:179 libraries/replication_gui.lib.php:275 #: libraries/replication_gui.lib.php:278 libraries/replication_gui.lib.php:335 -#: server_privileges.php:916 server_privileges.php:919 -#: server_privileges.php:975 server_privileges.php:1854 -#: server_privileges.php:2420 server_status.php:1256 sql.php:930 +#: 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 msgid "Host" msgstr "主機" #: libraries/export/latex.php:209 libraries/export/sql.php:591 -#: libraries/export/xml.php:148 sql.php:932 +#: libraries/export/xml.php:148 sql.php:958 msgid "Generation Time" msgstr "產生日期" @@ -7072,23 +7184,14 @@ msgstr "view" msgid "Export contents" msgstr "匯出內容" -#: libraries/footer.inc.php:166 libraries/footer.inc.php:168 -#: libraries/footer.inc.php:171 -msgid "Open new phpMyAdmin window" -msgstr "開啟新 phpMyAdmin 視窗" - #: libraries/gis_visualization.lib.php:135 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." msgstr "未找到圖表所需資料" -#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15 -msgid "GLOBALS overwrite attempt" -msgstr "" - #: libraries/import.lib.php:170 libraries/insert_edit.lib.php:128 -#: libraries/rte/rte_routines.lib.php:1255 sql.php:807 tbl_get_field.php:36 +#: libraries/rte/rte_routines.lib.php:1258 sql.php:828 tbl_get_field.php:36 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查詢結果爲空 (即零行)" @@ -7193,12 +7296,12 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:33 libraries/tbl_properties.inc.php:701 -#: server_synchronize.php:524 server_synchronize.php:1044 +#: server_synchronize.php:527 server_synchronize.php:1047 msgid "Table name" msgstr "資料資料表名稱" #: libraries/import/ldi.php:83 libraries/schema/User_Schema.class.php:354 -#: view_create.php:138 +#: view_create.php:150 msgid "Column names" msgstr "欄位名稱" @@ -7266,93 +7369,75 @@ msgstr "SQL 相容模式:" msgid "Do not use AUTO_INCREMENT for zero values" msgstr "不要給零值使用自動新增 (AUTO_INCREMENT)" -#: libraries/insert_edit.lib.php:200 libraries/insert_edit.lib.php:202 -#: libraries/rte/rte_routines.lib.php:1381 libraries/tbl_select.lib.php:87 -msgid "Function" -msgstr "函數" - -#: libraries/insert_edit.lib.php:202 libraries/insert_edit.lib.php:227 -#: pmd_general.php:172 +#: libraries/insert_edit.lib.php:201 libraries/insert_edit.lib.php:226 +#: pmd_general.php:174 msgid "Hide" msgstr "隱藏" -#: libraries/insert_edit.lib.php:433 libraries/mysql_charsets.lib.php:214 +#: libraries/insert_edit.lib.php:432 libraries/mysql_charsets.lib.php:214 #: libraries/mysql_charsets.lib.php:415 msgid "Binary" msgstr "二進制" -#: libraries/insert_edit.lib.php:593 +#: libraries/insert_edit.lib.php:592 msgid "Because of its length,
    this column might not be editable" msgstr "因長度問題,
    該欄位可能無法編輯" -#: libraries/insert_edit.lib.php:969 +#: libraries/insert_edit.lib.php:968 msgid "Binary - do not edit" msgstr "二進制 - 無法編輯" -#: libraries/insert_edit.lib.php:1054 libraries/sql_query_form.lib.php:454 +#: libraries/insert_edit.lib.php:1053 libraries/sql_query_form.lib.php:454 msgid "web server upload directory" msgstr "網站伺服器上傳資料夾" -#: libraries/insert_edit.lib.php:1209 libraries/tbl_select.lib.php:193 -#, fuzzy -#| msgid "Insert" -msgid "Edit/Insert" -msgstr "插入" - -#: libraries/insert_edit.lib.php:1250 +#: libraries/insert_edit.lib.php:1249 #, php-format msgid "Continue insertion with %s rows" msgstr "繼續插入 %s 行" -#: libraries/insert_edit.lib.php:1277 +#: libraries/insert_edit.lib.php:1276 msgid "and then" msgstr "然後" -#: libraries/insert_edit.lib.php:1306 +#: libraries/insert_edit.lib.php:1305 msgid "Insert as new row" msgstr "以新行插入" -#: libraries/insert_edit.lib.php:1307 +#: libraries/insert_edit.lib.php:1306 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略錯誤)" -#: libraries/insert_edit.lib.php:1308 +#: libraries/insert_edit.lib.php:1307 msgid "Show insert query" msgstr "顯示插入指令" -#: libraries/insert_edit.lib.php:1327 +#: libraries/insert_edit.lib.php:1326 msgid "Go back to previous page" msgstr "返回上一頁" -#: libraries/insert_edit.lib.php:1329 +#: libraries/insert_edit.lib.php:1328 msgid "Insert another new row" msgstr "插入新資料" -#: libraries/insert_edit.lib.php:1333 +#: libraries/insert_edit.lib.php:1332 msgid "Go back to this page" msgstr "返回到本頁" -#: libraries/insert_edit.lib.php:1348 +#: libraries/insert_edit.lib.php:1347 msgid "Edit next row" msgstr "編輯下一行" -#: libraries/insert_edit.lib.php:1368 +#: libraries/insert_edit.lib.php:1367 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動" -#: libraries/insert_edit.lib.php:1400 libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1383 libraries/tbl_select.lib.php:95 -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 server_status.php:1498 tbl_zoom_select.php:456 -msgid "Value" -msgstr "值" - -#: libraries/insert_edit.lib.php:1684 sql.php:803 +#: libraries/insert_edit.lib.php:1685 sql.php:824 msgid "Showing SQL query" msgstr "顯示 SQL 查詢" -#: libraries/insert_edit.lib.php:1709 sql.php:783 +#: libraries/insert_edit.lib.php:1710 sql.php:804 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -7367,36 +7452,36 @@ msgstr "無" msgid "Convert to Kana" msgstr "轉換爲假名" -#: libraries/mult_submits.inc.php:278 +#: libraries/mult_submits.inc.php:277 #, fuzzy #| msgid "Fri" msgid "From" msgstr "Fri" -#: libraries/mult_submits.inc.php:281 +#: libraries/mult_submits.inc.php:280 msgid "To" msgstr "" -#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299 +#: libraries/mult_submits.inc.php:285 libraries/mult_submits.inc.php:298 #: libraries/sql_query_form.lib.php:402 msgid "Submit" msgstr "送出" -#: libraries/mult_submits.inc.php:291 +#: libraries/mult_submits.inc.php:290 msgid "Add table prefix" msgstr "" -#: libraries/mult_submits.inc.php:294 +#: libraries/mult_submits.inc.php:293 msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:308 +#: libraries/mult_submits.inc.php:307 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" msgstr "您真的要" -#: libraries/mult_submits.inc.php:532 tbl_replace.php:265 +#: libraries/mult_submits.inc.php:531 tbl_replace.php:268 msgid "No change" msgstr "無更改" @@ -7606,82 +7691,82 @@ msgstr "重新整理導覽框架" msgid "This format has no options" msgstr "該格式沒有選項" -#: libraries/relation.lib.php:91 +#: libraries/relation.lib.php:85 msgid "not OK" msgstr "錯誤" -#: libraries/relation.lib.php:98 +#: libraries/relation.lib.php:92 #, fuzzy #| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "確定" -#: libraries/relation.lib.php:100 +#: libraries/relation.lib.php:95 msgid "Enabled" msgstr "已啓用" -#: libraries/relation.lib.php:107 libraries/relation.lib.php:130 -#: pmd_relation_new.php:71 +#: libraries/relation.lib.php:102 libraries/relation.lib.php:120 +#: pmd_relation_new.php:81 msgid "General relation features" msgstr "一般關聯功能" -#: libraries/relation.lib.php:143 +#: libraries/relation.lib.php:131 msgid "Display Features" msgstr "顯示功能" -#: libraries/relation.lib.php:163 +#: libraries/relation.lib.php:148 msgid "Creation of PDFs" msgstr "建立 PDF" -#: libraries/relation.lib.php:176 +#: libraries/relation.lib.php:159 msgid "Displaying Column Comments" msgstr "顯示欄位註釋" -#: libraries/relation.lib.php:183 libraries/tbl_properties.inc.php:138 -#: transformation_overview.php:46 +#: libraries/relation.lib.php:165 libraries/tbl_properties.inc.php:138 +#: transformation_overview.php:43 msgid "Browser transformation" msgstr "瀏覽器轉換" -#: libraries/relation.lib.php:190 +#: libraries/relation.lib.php:171 msgid "" "Please see the documentation on how to update your column_comments table" msgstr "請參見檔案中關於如何更新您的 column_comments 表" -#: libraries/relation.lib.php:202 libraries/sql_query_form.lib.php:382 +#: libraries/relation.lib.php:181 libraries/sql_query_form.lib.php:382 msgid "Bookmarked SQL query" msgstr "SQL 查詢書籤" -#: libraries/relation.lib.php:215 querywindow.php:75 querywindow.php:171 +#: libraries/relation.lib.php:192 querywindow.php:69 querywindow.php:151 msgid "SQL history" msgstr "SQL 歷史" -#: libraries/relation.lib.php:241 +#: libraries/relation.lib.php:214 msgid "Persistent recently used tables" msgstr "" -#: libraries/relation.lib.php:254 +#: libraries/relation.lib.php:225 msgid "Persistent tables' UI preferences" msgstr "" -#: libraries/relation.lib.php:280 +#: libraries/relation.lib.php:247 msgid "User preferences" msgstr "使用者偏好" -#: libraries/relation.lib.php:287 +#: libraries/relation.lib.php:253 msgid "Quick steps to setup advanced features:" msgstr "快速設定進階功能:" -#: libraries/relation.lib.php:290 +#: libraries/relation.lib.php:257 msgid "" "Create the needed tables with the examples/create_tables.sql." msgstr "透過 examples/create_tables.sql 建立必需的資料表" -#: libraries/relation.lib.php:294 +#: libraries/relation.lib.php:263 msgid "Create a pma user and give access to these tables." msgstr "建立一個使用者並授予其訪問上一步操作中建立的資料表的權限" -#: libraries/relation.lib.php:298 +#: libraries/relation.lib.php:268 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." @@ -7689,11 +7774,11 @@ msgstr "" "在設定檔案 (config.inc.php) 中啓用進階功能,參見 config." "sample.inc.php 中的範例" -#: libraries/relation.lib.php:302 +#: libraries/relation.lib.php:276 msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "請重新登錄 phpMyAdmin 以載入新設定並使其生效" -#: libraries/relation.lib.php:1378 +#: libraries/relation.lib.php:1358 msgid "no description" msgstr "無說明" @@ -7701,7 +7786,7 @@ msgstr "無說明" msgid "Slave configuration" msgstr "從伺服器設定" -#: libraries/replication_gui.lib.php:54 server_replication.php:383 +#: libraries/replication_gui.lib.php:54 server_replication.php:384 msgid "Change or reconfigure master server" msgstr "修改或重新設定主伺服器" @@ -7715,13 +7800,13 @@ msgstr "" #: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59 #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 -#: libraries/replication_gui.lib.php:265 server_privileges.php:893 -#: server_privileges.php:896 server_privileges.php:903 -#: server_synchronize.php:1440 +#: libraries/replication_gui.lib.php:265 server_privileges.php:894 +#: server_privileges.php:897 server_privileges.php:904 +#: server_synchronize.php:1443 msgid "User name" msgstr "帳號" -#: libraries/replication_gui.lib.php:70 server_synchronize.php:1432 +#: libraries/replication_gui.lib.php:70 server_synchronize.php:1435 msgid "Port" msgstr "連接埠" @@ -7734,7 +7819,7 @@ msgid "Slave status" msgstr "從伺服器狀態" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:394 -#: server_status.php:1497 server_variables.php:127 +#: server_status.php:1496 server_variables.php:123 msgid "Variable" msgstr "變數" @@ -7748,38 +7833,38 @@ msgid "" "this list." msgstr "僅透過 --report-host=主機名 參數啓動的從伺服器可見" -#: libraries/replication_gui.lib.php:246 server_replication.php:221 +#: libraries/replication_gui.lib.php:246 server_replication.php:223 msgid "Add slave replication user" msgstr "新增 slave replication 使用者" -#: libraries/replication_gui.lib.php:260 server_privileges.php:898 +#: libraries/replication_gui.lib.php:260 server_privileges.php:899 msgid "Any user" msgstr "任意使用者" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 -#: libraries/replication_gui.lib.php:352 server_privileges.php:899 -#: server_privileges.php:969 server_privileges.php:993 -#: server_privileges.php:2285 server_privileges.php:2315 +#: 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 msgid "Use text field" msgstr "使用文字域" -#: libraries/replication_gui.lib.php:308 server_privileges.php:949 +#: libraries/replication_gui.lib.php:308 server_privileges.php:950 msgid "Any host" msgstr "任意主機" -#: libraries/replication_gui.lib.php:312 server_privileges.php:953 +#: libraries/replication_gui.lib.php:312 server_privileges.php:954 msgid "Local" msgstr "本地" -#: libraries/replication_gui.lib.php:318 server_privileges.php:958 +#: libraries/replication_gui.lib.php:318 server_privileges.php:959 msgid "This Host" msgstr "此主機" -#: libraries/replication_gui.lib.php:324 server_privileges.php:964 +#: libraries/replication_gui.lib.php:324 server_privileges.php:965 msgid "Use Host Table" msgstr "使用主機表" -#: libraries/replication_gui.lib.php:337 server_privileges.php:977 +#: libraries/replication_gui.lib.php:337 server_privileges.php:978 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." @@ -7793,7 +7878,7 @@ msgstr "產生密碼" #: 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:1262 +#: libraries/rte/rte_routines.lib.php:1265 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7827,103 +7912,104 @@ msgstr "建立資料表 %1$s 成功" msgid "One or more errors have occured while processing your request:" msgstr "" -#: libraries/rte/rte_events.lib.php:185 +#: libraries/rte/rte_events.lib.php:186 #, fuzzy #| msgid "Edit server" msgid "Edit event" msgstr "編輯伺服器" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1324 -#: libraries/rte/rte_triggers.lib.php:187 +#: 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_triggers.lib.php:192 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "要求處理得程序中有錯誤" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:829 -#: libraries/rte/rte_triggers.lib.php:302 +#: libraries/rte/rte_events.lib.php:375 libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_triggers.lib.php:310 #, fuzzy #| msgid "Details..." msgid "Details" msgstr "詳細..." -#: libraries/rte/rte_events.lib.php:374 +#: libraries/rte/rte_events.lib.php:378 #, fuzzy #| msgid "Event type" msgid "Event name" msgstr "事件類型" -#: libraries/rte/rte_events.lib.php:395 server_binlog.php:177 +#: libraries/rte/rte_events.lib.php:399 server_binlog.php:177 msgid "Event type" msgstr "事件類型" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:850 +#: libraries/rte/rte_events.lib.php:420 libraries/rte/rte_routines.lib.php:853 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" msgstr "修改" -#: libraries/rte/rte_events.lib.php:422 +#: libraries/rte/rte_events.lib.php:426 msgid "Execute at" msgstr "" -#: libraries/rte/rte_events.lib.php:430 +#: libraries/rte/rte_events.lib.php:434 msgid "Execute every" msgstr "" -#: libraries/rte/rte_events.lib.php:449 +#: libraries/rte/rte_events.lib.php:453 #, fuzzy #| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" msgstr "起始頁" -#: libraries/rte/rte_events.lib.php:457 +#: libraries/rte/rte_events.lib.php:461 #, fuzzy #| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "結束" -#: libraries/rte/rte_events.lib.php:471 +#: libraries/rte/rte_events.lib.php:475 #, fuzzy #| msgid "complete inserts" msgid "On completion preserve" msgstr "完整插入" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:934 -#: libraries/rte/rte_triggers.lib.php:360 +#: libraries/rte/rte_events.lib.php:479 libraries/rte/rte_routines.lib.php:937 +#: libraries/rte/rte_triggers.lib.php:368 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:998 -#: libraries/rte/rte_triggers.lib.php:398 +#: libraries/rte/rte_events.lib.php:522 +#: libraries/rte/rte_routines.lib.php:1001 +#: libraries/rte/rte_triggers.lib.php:406 msgid "The definer must be in the \"username@hostname\" format" msgstr "" -#: libraries/rte/rte_events.lib.php:525 +#: libraries/rte/rte_events.lib.php:529 msgid "You must provide an event name" msgstr "" -#: libraries/rte/rte_events.lib.php:537 +#: libraries/rte/rte_events.lib.php:541 msgid "You must provide a valid interval value for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:549 +#: libraries/rte/rte_events.lib.php:553 msgid "You must provide a valid execution time for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:553 +#: libraries/rte/rte_events.lib.php:557 msgid "You must provide a valid type for the event." msgstr "" -#: libraries/rte/rte_events.lib.php:572 +#: libraries/rte/rte_events.lib.php:576 msgid "You must provide an event definition." msgstr "" -#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2576 +#: libraries/rte/rte_footer.lib.php:29 server_privileges.php:2586 msgid "New" msgstr "" @@ -7954,7 +8040,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:1006 +#: libraries/rte/rte_routines.lib.php:1009 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7976,119 +8062,119 @@ msgstr "已刪除欄位 %s " msgid "Routine %1$s has been created." msgstr "建立資料表 %1$s 成功" -#: libraries/rte/rte_routines.lib.php:346 +#: libraries/rte/rte_routines.lib.php:347 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "編輯模式" -#: libraries/rte/rte_routines.lib.php:832 +#: libraries/rte/rte_routines.lib.php:835 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "一般" -#: libraries/rte/rte_routines.lib.php:855 +#: libraries/rte/rte_routines.lib.php:858 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:860 +#: libraries/rte/rte_routines.lib.php:863 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "直接連線" -#: libraries/rte/rte_routines.lib.php:863 libraries/tbl_properties.inc.php:87 +#: libraries/rte/rte_routines.lib.php:866 libraries/tbl_properties.inc.php:87 msgid "Length/Values" msgstr "長度/值" -#: libraries/rte/rte_routines.lib.php:878 +#: libraries/rte/rte_routines.lib.php:881 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:882 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "刪除資料庫" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:890 msgid "Return type" msgstr "返回類型" -#: libraries/rte/rte_routines.lib.php:893 +#: libraries/rte/rte_routines.lib.php:896 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "長度/值" -#: libraries/rte/rte_routines.lib.php:899 +#: libraries/rte/rte_routines.lib.php:902 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "表選項" -#: libraries/rte/rte_routines.lib.php:930 +#: libraries/rte/rte_routines.lib.php:933 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:939 +#: libraries/rte/rte_routines.lib.php:942 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "安全" -#: libraries/rte/rte_routines.lib.php:946 +#: libraries/rte/rte_routines.lib.php:949 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:1011 +#: libraries/rte/rte_routines.lib.php:1014 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 +#: libraries/rte/rte_routines.lib.php:1040 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1051 -#: libraries/rte/rte_routines.lib.php:1091 +#: libraries/rte/rte_routines.lib.php:1054 +#: libraries/rte/rte_routines.lib.php:1094 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1069 +#: libraries/rte/rte_routines.lib.php:1072 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1079 +#: libraries/rte/rte_routines.lib.php:1082 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1125 +#: libraries/rte/rte_routines.lib.php:1128 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1216 +#: libraries/rte/rte_routines.lib.php:1219 #, 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:1232 +#: libraries/rte/rte_routines.lib.php:1235 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "允許運行 Procedure" -#: libraries/rte/rte_routines.lib.php:1312 -#: libraries/rte/rte_routines.lib.php:1318 +#: libraries/rte/rte_routines.lib.php:1315 +#: libraries/rte/rte_routines.lib.php:1323 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1371 -#: libraries/rte/rte_routines.lib.php:1374 +#: libraries/rte/rte_routines.lib.php:1379 +#: libraries/rte/rte_routines.lib.php:1382 #, fuzzy #| msgid "Routines" msgid "Routine parameters" @@ -8110,44 +8196,44 @@ msgstr "已刪除欄位 %s " msgid "Trigger %1$s has been created." msgstr "建立資料表 %1$s 成功" -#: libraries/rte/rte_triggers.lib.php:161 +#: libraries/rte/rte_triggers.lib.php:166 #, fuzzy #| msgid "Add a new server" msgid "Edit trigger" msgstr "新增伺服器" -#: libraries/rte/rte_triggers.lib.php:305 +#: libraries/rte/rte_triggers.lib.php:313 #, fuzzy #| msgid "Triggers" msgid "Trigger name" msgstr "觸發器" -#: libraries/rte/rte_triggers.lib.php:326 +#: libraries/rte/rte_triggers.lib.php:334 #, fuzzy #| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "時間" -#: libraries/rte/rte_triggers.lib.php:405 +#: libraries/rte/rte_triggers.lib.php:413 msgid "You must provide a trigger name" msgstr "" -#: libraries/rte/rte_triggers.lib.php:410 +#: libraries/rte/rte_triggers.lib.php:418 msgid "You must provide a valid timing for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:415 +#: libraries/rte/rte_triggers.lib.php:423 msgid "You must provide a valid event for the trigger" msgstr "" -#: libraries/rte/rte_triggers.lib.php:421 +#: libraries/rte/rte_triggers.lib.php:429 #, fuzzy #| msgid "Invalid table name" msgid "You must provide a valid table name" msgstr "無效的資料資料表名稱" -#: libraries/rte/rte_triggers.lib.php:427 +#: libraries/rte/rte_triggers.lib.php:435 msgid "You must provide a trigger definition." msgstr "" @@ -8261,7 +8347,7 @@ msgstr "沒有可上傳的檔案" #: libraries/schema/Dia_Relation_Schema.class.php:233 #: libraries/schema/Eps_Relation_Schema.class.php:424 -#: libraries/schema/Pdf_Relation_Schema.class.php:396 +#: libraries/schema/Pdf_Relation_Schema.class.php:410 #: libraries/schema/Svg_Relation_Schema.class.php:391 #: libraries/schema/Visio_Relation_Schema.class.php:222 #, php-format @@ -8270,7 +8356,7 @@ msgstr "資料表 %s 不存在!" #: libraries/schema/Dia_Relation_Schema.class.php:268 #: libraries/schema/Eps_Relation_Schema.class.php:473 -#: libraries/schema/Pdf_Relation_Schema.class.php:436 +#: libraries/schema/Pdf_Relation_Schema.class.php:450 #: libraries/schema/Svg_Relation_Schema.class.php:442 #: libraries/schema/Visio_Relation_Schema.class.php:273 #, php-format @@ -8278,7 +8364,7 @@ msgid "Please configure the coordinates for table %s" msgstr "請設定表 %s 的座標" #: libraries/schema/Eps_Relation_Schema.class.php:827 -#: libraries/schema/Pdf_Relation_Schema.class.php:839 +#: libraries/schema/Pdf_Relation_Schema.class.php:864 #: libraries/schema/Svg_Relation_Schema.class.php:807 #: libraries/schema/Visio_Relation_Schema.class.php:537 #, php-format @@ -8289,27 +8375,27 @@ msgstr "資料庫 %s 的大綱 - 第 %s 頁" msgid "This page does not contain any tables!" msgstr "此頁沒有包含任何資料表!" -#: libraries/schema/Export_Relation_Schema.class.php:230 +#: libraries/schema/Export_Relation_Schema.class.php:229 msgid "SCHEMA ERROR: " msgstr "大綱錯誤: " -#: libraries/schema/Pdf_Relation_Schema.class.php:861 -#: libraries/schema/Pdf_Relation_Schema.class.php:1174 +#: libraries/schema/Pdf_Relation_Schema.class.php:886 +#: libraries/schema/Pdf_Relation_Schema.class.php:1207 msgid "Relational schema" msgstr "關聯大綱" -#: libraries/schema/Pdf_Relation_Schema.class.php:1137 +#: libraries/schema/Pdf_Relation_Schema.class.php:1170 msgid "Table of contents" msgstr "目錄" -#: libraries/schema/Pdf_Relation_Schema.class.php:1310 -#: libraries/schema/Pdf_Relation_Schema.class.php:1331 -#: libraries/tbl_properties.inc.php:91 tbl_structure.php:203 +#: libraries/schema/Pdf_Relation_Schema.class.php:1345 +#: libraries/schema/Pdf_Relation_Schema.class.php:1366 +#: libraries/tbl_properties.inc.php:91 tbl_structure.php:205 msgid "Attributes" msgstr "屬性" -#: libraries/schema/Pdf_Relation_Schema.class.php:1313 -#: libraries/schema/Pdf_Relation_Schema.class.php:1334 tbl_structure.php:206 +#: libraries/schema/Pdf_Relation_Schema.class.php:1348 +#: libraries/schema/Pdf_Relation_Schema.class.php:1369 tbl_structure.php:208 #: tbl_tracking.php:308 msgid "Extra" msgstr "額外" @@ -8415,7 +8501,7 @@ msgstr "未知的語言:%1$s." msgid "Current Server" msgstr "目前伺服器" -#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1350 +#: libraries/server_synchronize.lib.php:1517 server_synchronize.php:1353 msgid "Source database" msgstr "來源資料庫" @@ -8433,7 +8519,7 @@ msgstr "遠程伺服器" msgid "Difference" msgstr "差異" -#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1352 +#: libraries/server_synchronize.lib.php:1527 server_synchronize.php:1355 msgid "Target database" msgstr "目標資料庫" @@ -8452,7 +8538,7 @@ msgstr "在伺服器 %s 運行 SQL 查詢" msgid "Run SQL query/queries on database %s" msgstr "在資料庫 %s 運行 SQL 查詢" -#: libraries/sql_query_form.lib.php:267 navigation.php:221 navigation.php:290 +#: libraries/sql_query_form.lib.php:267 navigation.php:169 navigation.php:238 #: setup/frames/index.inc.php:260 msgid "Clear" msgstr "清除" @@ -8461,11 +8547,11 @@ msgstr "清除" msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:307 sql.php:1082 sql.php:1099 +#: libraries/sql_query_form.lib.php:307 sql.php:1109 sql.php:1126 msgid "Bookmark this SQL query" msgstr "將此 SQL 查詢加爲書籤" -#: libraries/sql_query_form.lib.php:313 sql.php:1093 +#: libraries/sql_query_form.lib.php:313 sql.php:1120 msgid "Let every user access this bookmark" msgstr "讓所有使用者均可訪問此書籤" @@ -8556,7 +8642,7 @@ msgid "" msgstr "" "SQL 檢驗程序無法原始化。請檢查是否已經安裝了%s檔案%s內說明的必需 PHP 外掛" -#: libraries/tbl_common.inc.php:58 +#: libraries/tbl_common.inc.php:53 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking of %s is activated." @@ -8579,8 +8665,8 @@ msgid "" msgstr "對於預設值,請只輸入單個值,不要加反斜槓或引號,請用此格式:a" #: libraries/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:531 -#: tbl_printview.php:312 tbl_structure.php:149 tbl_structure.php:154 -#: tbl_structure.php:596 tbl_structure.php:841 +#: tbl_printview.php:305 tbl_structure.php:151 tbl_structure.php:156 +#: tbl_structure.php:598 tbl_structure.php:843 msgid "Index" msgstr "索引" @@ -8628,13 +8714,13 @@ msgstr "無" msgid "As defined:" msgstr "定義:" -#: libraries/tbl_properties.inc.php:517 tbl_structure.php:148 -#: tbl_structure.php:153 tbl_structure.php:588 +#: libraries/tbl_properties.inc.php:517 tbl_structure.php:150 +#: tbl_structure.php:155 tbl_structure.php:590 msgid "Primary" msgstr "主鍵" -#: libraries/tbl_properties.inc.php:539 tbl_structure.php:152 -#: tbl_structure.php:157 tbl_structure.php:613 +#: libraries/tbl_properties.inc.php:539 tbl_structure.php:154 +#: tbl_structure.php:159 tbl_structure.php:615 msgid "Fulltext" msgstr "全文搜尋" @@ -8648,17 +8734,17 @@ msgstr "" msgid "after %s" msgstr "於 %s 之後" -#: libraries/tbl_properties.inc.php:715 tbl_structure.php:697 +#: libraries/tbl_properties.inc.php:715 tbl_structure.php:699 #, php-format msgid "Add %s column(s)" msgstr "增加 %s 個字段" -#: libraries/tbl_properties.inc.php:723 tbl_structure.php:691 +#: libraries/tbl_properties.inc.php:723 tbl_structure.php:693 msgid "You have to add at least one column." msgstr "至少要增加一個字段。" #: libraries/tbl_properties.inc.php:816 server_engines.php:41 -#: tbl_operations.php:377 +#: tbl_operations.php:383 msgid "Storage Engine" msgstr "儲存引擎" @@ -8666,43 +8752,6 @@ msgstr "儲存引擎" msgid "PARTITION definition" msgstr "分區定義" -#: libraries/tbl_select.lib.php:94 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/tbl_select.lib.php:111 -#, fuzzy -#| msgid "Search" -msgid "Table Search" -msgstr "搜尋" - -#: libraries/tbl_select.lib.php:573 -msgid "Select columns (at least one):" -msgstr "選擇欄位 (至少一個):" - -#: libraries/tbl_select.lib.php:592 -msgid "Add search conditions (body of the \"where\" clause):" -msgstr "新增搜尋條件 (“where”指令的主體):" - -#: libraries/tbl_select.lib.php:601 -msgid "Number of rows per page" -msgstr "每頁行數" - -#: libraries/tbl_select.lib.php:610 -msgid "Display order:" -msgstr "顯示順序:" - -#: libraries/tbl_select.lib.php:654 sql.php:136 tbl_change.php:214 -#: tbl_zoom_select.php:106 tbl_zoom_select.php:142 -msgid "Browse foreign values" -msgstr "瀏覽不相關的值" - -#: libraries/tbl_select.lib.php:740 -msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "執行“依例查詢”(萬用字元:“%”)" - #: libraries/transformations.lib.php:148 #, php-format msgid "" @@ -8834,11 +8883,11 @@ msgstr "" msgid "Manage your settings" msgstr "管理我的設定" -#: libraries/user_preferences.inc.php:46 prefs_manage.php:297 +#: libraries/user_preferences.inc.php:46 prefs_manage.php:295 msgid "Configuration has been saved" msgstr "設定已儲存" -#: libraries/user_preferences.inc.php:67 +#: libraries/user_preferences.inc.php:66 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " @@ -8849,7 +8898,7 @@ msgstr "您的偏好將僅作用於本次連線。要想永久儲存需要 %sphp msgid "Could not save configuration" msgstr "無法儲存設定" -#: libraries/user_preferences.lib.php:291 +#: libraries/user_preferences.lib.php:299 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" @@ -8878,7 +8927,7 @@ msgstr "MySQL 連線校對" msgid "Appearance Settings" msgstr "外觀設定" -#: main.php:162 prefs_manage.php:280 +#: main.php:162 prefs_manage.php:278 msgid "More settings" msgstr "更多設定" @@ -8902,9 +8951,9 @@ msgstr "查看版本" msgid "Protocol version" msgstr "協定版本" -#: main.php:188 server_privileges.php:1698 server_privileges.php:1853 -#: server_privileges.php:2000 server_privileges.php:2419 -#: server_status.php:1255 +#: main.php:188 server_privileges.php:1703 server_privileges.php:1861 +#: server_privileges.php:2008 server_privileges.php:2427 +#: server_status.php:1254 msgid "User" msgstr "使用者" @@ -9034,132 +9083,132 @@ msgid "" "issues." msgstr "伺服器上運行了 Suhosin。請先查看%s檔案%s中是否有類似的情況" -#: navigation.php:186 server_databases.php:311 server_synchronize.php:1465 +#: navigation.php:134 server_databases.php:315 server_synchronize.php:1468 msgid "No databases" msgstr "無資料庫" -#: navigation.php:222 +#: navigation.php:170 #, fuzzy #| msgid "filter tables by name" msgid "Filter databases by name" msgstr "請輸入部分或完整的表名" -#: navigation.php:291 +#: navigation.php:239 #, fuzzy #| msgid "filter tables by name" msgid "Filter tables by name" msgstr "請輸入部分或完整的表名" -#: navigation.php:338 navigation.php:341 +#: navigation.php:286 navigation.php:289 msgctxt "short form" msgid "Create table" msgstr "新建資料表" -#: navigation.php:347 navigation.php:541 +#: navigation.php:295 navigation.php:489 msgid "Please select a database" msgstr "請選擇資料庫" -#: pmd_general.php:81 +#: pmd_general.php:83 msgid "Show/Hide left menu" msgstr "顯示/隱藏左側選單" -#: pmd_general.php:85 +#: pmd_general.php:87 msgid "Save position" msgstr "儲存位置" -#: pmd_general.php:92 pmd_general.php:381 +#: pmd_general.php:94 pmd_general.php:383 msgid "Create relation" msgstr "建立關聯" -#: pmd_general.php:98 +#: pmd_general.php:100 msgid "Reload" msgstr "重新載入" -#: pmd_general.php:101 +#: pmd_general.php:103 msgid "Help" msgstr "幫助" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Angular links" msgstr "規則連線" -#: pmd_general.php:105 +#: pmd_general.php:107 msgid "Direct links" msgstr "直接連線" -#: pmd_general.php:109 +#: pmd_general.php:111 msgid "Snap to grid" msgstr "對齊網格" -#: pmd_general.php:113 +#: pmd_general.php:115 msgid "Small/Big All" msgstr "全部收縮/展開" -#: pmd_general.php:117 +#: pmd_general.php:119 msgid "Toggle small/big" msgstr "反向收縮/展開" -#: pmd_general.php:120 +#: pmd_general.php:122 #, fuzzy #| msgid "To select relation, click :" msgid "Toggle relation lines" msgstr "要選擇關聯,點選:" -#: pmd_general.php:126 pmd_pdf.php:96 +#: pmd_general.php:128 pmd_pdf.php:97 msgid "Import/Export coordinates for PDF schema" msgstr "爲 PDF 大綱匯入/匯出座標" -#: pmd_general.php:133 +#: pmd_general.php:135 msgid "Build Query" msgstr "產生查詢" -#: pmd_general.php:140 +#: pmd_general.php:142 msgid "Move Menu" msgstr "移動選單" -#: pmd_general.php:151 +#: pmd_general.php:153 msgid "Hide/Show all" msgstr "全部隱藏/顯示" -#: pmd_general.php:155 +#: pmd_general.php:157 msgid "Hide/Show Tables with no relation" msgstr "隱藏/顯示沒有關聯的表" -#: pmd_general.php:195 +#: pmd_general.php:197 msgid "Number of tables" msgstr "資料表數量" -#: pmd_general.php:447 +#: pmd_general.php:449 msgid "Delete relation" msgstr "刪除關聯" -#: pmd_general.php:489 pmd_general.php:548 +#: pmd_general.php:491 pmd_general.php:550 msgid "Relation operator" msgstr "關聯運算符" -#: pmd_general.php:499 pmd_general.php:558 pmd_general.php:681 -#: pmd_general.php:798 +#: pmd_general.php:501 pmd_general.php:560 pmd_general.php:683 +#: pmd_general.php:800 msgid "Except" msgstr "例外" -#: pmd_general.php:505 pmd_general.php:564 pmd_general.php:687 -#: pmd_general.php:804 +#: pmd_general.php:507 pmd_general.php:566 pmd_general.php:689 +#: pmd_general.php:806 msgid "subquery" msgstr "子查詢" -#: pmd_general.php:509 pmd_general.php:605 +#: pmd_general.php:511 pmd_general.php:607 msgid "Rename to" msgstr "改名爲" -#: pmd_general.php:511 pmd_general.php:610 +#: pmd_general.php:513 pmd_general.php:612 msgid "New name" msgstr "新名稱" -#: pmd_general.php:514 pmd_general.php:729 +#: pmd_general.php:516 pmd_general.php:731 msgid "Aggregate" msgstr "聚合" -#: pmd_general.php:839 +#: pmd_general.php:841 msgid "Active options" msgstr "目前選項" @@ -9171,51 +9220,51 @@ msgstr "已建立頁面" msgid "Page creation failed" msgstr "頁面建立失敗" -#: pmd_pdf.php:107 +#: pmd_pdf.php:108 msgid "Page" msgstr "頁面" -#: pmd_pdf.php:117 +#: pmd_pdf.php:118 msgid "Import from selected page" msgstr "從所選頁匯入" -#: pmd_pdf.php:118 +#: pmd_pdf.php:119 msgid "Export to selected page" msgstr "匯出至所選頁" -#: pmd_pdf.php:120 +#: pmd_pdf.php:121 msgid "Create a page and export to it" msgstr "匯出至新頁" -#: pmd_pdf.php:129 +#: pmd_pdf.php:130 msgid "New page name: " msgstr "新頁面名: " -#: pmd_pdf.php:132 +#: pmd_pdf.php:133 msgid "Export/Import to scale" msgstr "按比例匯出/匯入" -#: pmd_pdf.php:137 +#: pmd_pdf.php:138 msgid "recommended" msgstr "推薦" -#: pmd_relation_new.php:29 +#: pmd_relation_new.php:32 msgid "Error: relation already exists." msgstr "錯誤:關聯已存在" -#: pmd_relation_new.php:64 pmd_relation_new.php:89 +#: pmd_relation_new.php:74 pmd_relation_new.php:99 msgid "Error: Relation not added." msgstr "錯誤:關聯未新增" -#: pmd_relation_new.php:65 +#: pmd_relation_new.php:75 msgid "FOREIGN KEY relation added" msgstr "已新增外部鍵關聯" -#: pmd_relation_new.php:87 +#: pmd_relation_new.php:97 msgid "Internal relation added" msgstr "已新增行內部關聯" -#: pmd_relation_upd.php:60 +#: pmd_relation_upd.php:63 msgid "Relation deleted" msgstr "已刪除關聯" @@ -9227,87 +9276,87 @@ msgstr "儲存設計器座標時出錯" msgid "Modifications have been saved" msgstr "已儲存修改" -#: prefs_forms.php:82 +#: prefs_forms.php:85 msgid "Cannot save settings, submitted form contains errors" msgstr "無法儲存設定,送出的表單中有錯誤" -#: prefs_manage.php:82 +#: prefs_manage.php:79 msgid "Could not import configuration" msgstr "無法匯入設定" -#: prefs_manage.php:114 +#: prefs_manage.php:110 msgid "Configuration contains incorrect data for some fields." msgstr "部分設定含有錯誤的資料" -#: prefs_manage.php:130 +#: prefs_manage.php:126 msgid "Do you want to import remaining settings?" msgstr "是否匯入其餘的設定?" -#: prefs_manage.php:231 prefs_manage.php:257 +#: prefs_manage.php:229 prefs_manage.php:255 msgid "Saved on: @DATE@" msgstr "儲存於:@DATE@" -#: prefs_manage.php:245 +#: prefs_manage.php:243 msgid "Import from file" msgstr "從檔案匯入" -#: prefs_manage.php:251 +#: prefs_manage.php:249 msgid "Import from browser's storage" msgstr "從瀏覽器儲存中匯入" -#: prefs_manage.php:254 +#: prefs_manage.php:252 msgid "Settings will be imported from your browser's local storage." msgstr "設定將從瀏覽器的本地儲存中匯入" -#: prefs_manage.php:260 +#: prefs_manage.php:258 msgid "You have no saved settings!" msgstr "您沒有已儲存的設定!" -#: prefs_manage.php:264 prefs_manage.php:318 +#: prefs_manage.php:262 prefs_manage.php:315 msgid "This feature is not supported by your web browser" msgstr "您所使用的瀏覽器不支援此功能" -#: prefs_manage.php:269 +#: prefs_manage.php:267 msgid "Merge with current configuration" msgstr "與目前設定合併" -#: prefs_manage.php:283 +#: prefs_manage.php:281 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "您可以透過修改 config.inc.php 檔案進行更多設定,如透過使用%s安裝指令%s" -#: prefs_manage.php:308 +#: prefs_manage.php:305 msgid "Save to browser's storage" msgstr "儲存到瀏覽器儲存" -#: prefs_manage.php:312 +#: prefs_manage.php:309 msgid "Settings will be saved in your browser's local storage." msgstr "設定將儲存到瀏覽器的本地儲存" -#: prefs_manage.php:314 +#: prefs_manage.php:311 msgid "Existing settings will be overwritten!" msgstr "現有設定將被覆蓋!" -#: prefs_manage.php:329 +#: prefs_manage.php:326 msgid "You can reset all your settings and restore them to default values." msgstr "您可以重置並將所有設定恢復爲預設值" -#: querywindow.php:70 +#: querywindow.php:64 msgid "Import files" msgstr "匯入檔案" -#: querywindow.php:81 +#: querywindow.php:75 msgid "All" msgstr "全部" -#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 +#: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format msgid "%s table not found or not set in %s" msgstr "找不到 %s 表或還未在 %s 設定" -#: schema_export.php:61 +#: schema_export.php:59 msgid "File doesn't exist" msgstr "檔案不存在" @@ -9315,17 +9364,17 @@ msgstr "檔案不存在" msgid "Select binary log to view" msgstr "選擇要查看的二進制日誌" -#: server_binlog.php:98 server_status.php:617 +#: server_binlog.php:98 server_status.php:616 msgid "Files" msgstr "檔案" -#: server_binlog.php:145 server_binlog.php:147 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:145 server_binlog.php:147 server_status.php:1265 +#: server_status.php:1267 msgid "Truncate Shown Queries" msgstr "截斷顯示的查詢" -#: server_binlog.php:153 server_binlog.php:155 server_status.php:1266 -#: server_status.php:1268 +#: server_binlog.php:153 server_binlog.php:155 server_status.php:1265 +#: server_status.php:1267 msgid "Show Full Queries" msgstr "顯示完整查詢" @@ -9341,7 +9390,7 @@ msgstr "位置" msgid "Original position" msgstr "原始位置" -#: server_binlog.php:180 tbl_structure.php:826 +#: server_binlog.php:180 tbl_structure.php:828 msgid "Information" msgstr "資訊" @@ -9349,31 +9398,31 @@ msgstr "資訊" msgid "Character Sets and Collations" msgstr "字集和排序規則" -#: server_databases.php:114 +#: server_databases.php:115 #, fuzzy, php-format #| msgid "%s databases have been dropped successfully." msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." msgstr[0] "已成功刪除 %s 個資料庫" -#: server_databases.php:128 +#: server_databases.php:132 msgid "Databases statistics" msgstr "資料庫統計" -#: server_databases.php:211 server_replication.php:206 -#: server_replication.php:236 +#: server_databases.php:215 server_replication.php:208 +#: server_replication.php:238 msgid "Master replication" msgstr "主複製" -#: server_databases.php:213 server_replication.php:275 +#: server_databases.php:217 server_replication.php:276 msgid "Slave replication" msgstr "從複製" -#: server_databases.php:302 server_databases.php:303 +#: server_databases.php:306 server_databases.php:307 msgid "Enable Statistics" msgstr "啓用統計" -#: server_databases.php:305 +#: server_databases.php:309 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." @@ -9384,210 +9433,210 @@ msgstr "" msgid "Storage Engines" msgstr "儲存引擎" -#: server_export.php:16 +#: server_export.php:20 msgid "View dump (schema) of databases" msgstr "查看資料庫的轉存(大綱)" -#: server_plugins.php:64 +#: server_plugins.php:67 msgid "Modules" msgstr "" -#: server_plugins.php:85 +#: server_plugins.php:88 msgid "Begin" msgstr "開始" -#: server_plugins.php:92 +#: server_plugins.php:95 msgid "Plugin" msgstr "" -#: server_plugins.php:93 server_plugins.php:127 +#: server_plugins.php:96 server_plugins.php:130 msgid "Module" msgstr "" -#: server_plugins.php:94 server_plugins.php:129 +#: server_plugins.php:97 server_plugins.php:132 msgid "Library" msgstr "" -#: server_plugins.php:95 server_plugins.php:130 tbl_tracking.php:712 +#: server_plugins.php:98 server_plugins.php:133 tbl_tracking.php:712 msgid "Version" msgstr "版本" -#: server_plugins.php:96 server_plugins.php:131 +#: server_plugins.php:99 server_plugins.php:134 msgid "Author" msgstr "" -#: server_plugins.php:97 server_plugins.php:132 +#: server_plugins.php:100 server_plugins.php:135 msgid "License" msgstr "" -#: server_plugins.php:163 +#: server_plugins.php:166 #, fuzzy #| msgid "Disabled" msgid "disabled" msgstr "已關閉" -#: server_privileges.php:94 server_privileges.php:443 +#: server_privileges.php:96 server_privileges.php:444 msgid "Includes all privileges except GRANT." msgstr "除了授權 (GRANT) 以外的所有權限" -#: server_privileges.php:95 server_privileges.php:308 -#: server_privileges.php:729 +#: server_privileges.php:97 server_privileges.php:309 +#: server_privileges.php:730 msgid "Allows altering the structure of existing tables." msgstr "允許修改現有資料表的結構" -#: server_privileges.php:96 server_privileges.php:366 -#: server_privileges.php:735 +#: server_privileges.php:98 server_privileges.php:367 +#: server_privileges.php:736 msgid "Allows altering and dropping stored routines." msgstr "允許修改或刪除 Procedure" -#: server_privileges.php:97 server_privileges.php:276 -#: server_privileges.php:728 +#: server_privileges.php:99 server_privileges.php:277 +#: server_privileges.php:729 msgid "Allows creating new databases and tables." msgstr "允許建立新資料庫和資料表" -#: server_privileges.php:98 server_privileges.php:362 -#: server_privileges.php:734 +#: server_privileges.php:100 server_privileges.php:363 +#: server_privileges.php:735 msgid "Allows creating stored routines." msgstr "允許建立 stored routines." -#: server_privileges.php:99 server_privileges.php:728 +#: server_privileges.php:101 server_privileges.php:729 msgid "Allows creating new tables." msgstr "允許建立新資料表" -#: server_privileges.php:100 server_privileges.php:320 -#: server_privileges.php:732 +#: server_privileges.php:102 server_privileges.php:321 +#: server_privileges.php:733 msgid "Allows creating temporary tables." msgstr "允許建立臨時表" -#: server_privileges.php:101 server_privileges.php:370 -#: server_privileges.php:768 +#: server_privileges.php:103 server_privileges.php:371 +#: server_privileges.php:769 msgid "Allows creating, dropping and renaming user accounts." msgstr "允許建立、刪除和重命名使用者帳號" -#: server_privileges.php:102 server_privileges.php:336 -#: server_privileges.php:349 server_privileges.php:740 -#: server_privileges.php:744 +#: server_privileges.php:104 server_privileges.php:337 +#: server_privileges.php:350 server_privileges.php:741 +#: server_privileges.php:745 msgid "Allows creating new views." msgstr "允許建立 views." -#: server_privileges.php:103 server_privileges.php:272 -#: server_privileges.php:720 +#: server_privileges.php:105 server_privileges.php:273 +#: server_privileges.php:721 msgid "Allows deleting data." msgstr "允許刪除資料" -#: server_privileges.php:104 server_privileges.php:280 -#: server_privileges.php:731 +#: server_privileges.php:106 server_privileges.php:281 +#: server_privileges.php:732 msgid "Allows dropping databases and tables." msgstr "允許刪除資料庫和資料表" -#: server_privileges.php:105 server_privileges.php:731 +#: server_privileges.php:107 server_privileges.php:732 msgid "Allows dropping tables." msgstr "允許刪除資料表" -#: server_privileges.php:106 server_privileges.php:340 -#: server_privileges.php:748 +#: server_privileges.php:108 server_privileges.php:341 +#: server_privileges.php:749 msgid "Allows to set up events for the event scheduler" msgstr "允許爲事件觸發器設定事件" -#: server_privileges.php:107 server_privileges.php:374 -#: server_privileges.php:736 +#: server_privileges.php:109 server_privileges.php:375 +#: server_privileges.php:737 msgid "Allows executing stored routines." msgstr "允許運行 Procedure" -#: server_privileges.php:108 server_privileges.php:296 -#: server_privileges.php:723 +#: server_privileges.php:110 server_privileges.php:297 +#: server_privileges.php:724 msgid "Allows importing data from and exporting data into files." msgstr "允許從檔案中匯入資料以及將資料匯出至檔案" -#: server_privileges.php:109 server_privileges.php:754 +#: server_privileges.php:111 server_privileges.php:755 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允許新增使用者和權限,而不允許重新載入權限表" -#: server_privileges.php:110 server_privileges.php:304 -#: server_privileges.php:730 +#: server_privileges.php:112 server_privileges.php:305 +#: server_privileges.php:731 msgid "Allows creating and dropping indexes." msgstr "允許建立和刪除索引" -#: server_privileges.php:111 server_privileges.php:264 -#: server_privileges.php:649 server_privileges.php:718 +#: server_privileges.php:113 server_privileges.php:265 +#: server_privileges.php:650 server_privileges.php:719 msgid "Allows inserting and replacing data." msgstr "允許插入和替換資料" -#: server_privileges.php:112 server_privileges.php:324 -#: server_privileges.php:763 +#: server_privileges.php:114 server_privileges.php:325 +#: server_privileges.php:764 msgid "Allows locking tables for the current thread." msgstr "允許鎖定目前程序的表" -#: server_privileges.php:113 server_privileges.php:827 -#: server_privileges.php:829 +#: server_privileges.php:115 server_privileges.php:828 +#: server_privileges.php:830 msgid "Limits the number of new connections the user may open per hour." msgstr "限制使用者每小時開啟的新連線數" -#: server_privileges.php:114 server_privileges.php:815 -#: server_privileges.php:817 +#: server_privileges.php:116 server_privileges.php:816 +#: server_privileges.php:818 msgid "Limits the number of queries the user may send to the server per hour." msgstr "限制使用者每小時可發送到伺服器的查詢數" -#: server_privileges.php:115 server_privileges.php:821 -#: server_privileges.php:823 +#: server_privileges.php:117 server_privileges.php:822 +#: server_privileges.php:824 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." msgstr "限制使用者每小時可執行的修改任何資料表或資料庫的命令數" -#: server_privileges.php:116 server_privileges.php:833 -#: server_privileges.php:835 +#: server_privileges.php:118 server_privileges.php:834 +#: server_privileges.php:836 msgid "Limits the number of simultaneous connections the user may have." msgstr "限制該使用者的同時連線數" -#: server_privileges.php:117 server_privileges.php:292 -#: server_privileges.php:758 +#: server_privileges.php:119 server_privileges.php:293 +#: server_privileges.php:759 msgid "Allows viewing processes of all users" msgstr "允許查看所有使用者的程序" -#: server_privileges.php:118 server_privileges.php:300 -#: server_privileges.php:659 server_privileges.php:764 +#: server_privileges.php:120 server_privileges.php:301 +#: server_privileges.php:660 server_privileges.php:765 msgid "Has no effect in this MySQL version." msgstr "在此版本的 MySQL 中無效" -#: server_privileges.php:119 server_privileges.php:284 -#: server_privileges.php:759 +#: server_privileges.php:121 server_privileges.php:285 +#: server_privileges.php:760 msgid "Allows reloading server settings and flushing the server's caches." msgstr "允許重新載入伺服器設定並重新整理伺服器的快取" -#: server_privileges.php:120 server_privileges.php:332 -#: server_privileges.php:766 +#: server_privileges.php:122 server_privileges.php:333 +#: server_privileges.php:767 msgid "Allows the user to ask where the slaves / masters are." msgstr "使用者有權詢問附屬者/控制者在哪裏" -#: server_privileges.php:121 server_privileges.php:328 -#: server_privileges.php:767 +#: server_privileges.php:123 server_privileges.php:329 +#: server_privileges.php:768 msgid "Needed for the replication slaves." msgstr "replication slaves所需" -#: server_privileges.php:122 server_privileges.php:260 -#: server_privileges.php:644 server_privileges.php:717 +#: server_privileges.php:124 server_privileges.php:261 +#: server_privileges.php:645 server_privileges.php:718 msgid "Allows reading data." msgstr "允許讀取資料" -#: server_privileges.php:123 server_privileges.php:312 -#: server_privileges.php:761 +#: server_privileges.php:125 server_privileges.php:313 +#: server_privileges.php:762 msgid "Gives access to the complete list of databases." msgstr "允許訪問完整的資料庫列表" -#: server_privileges.php:124 server_privileges.php:353 -#: server_privileges.php:358 server_privileges.php:733 +#: server_privileges.php:126 server_privileges.php:354 +#: server_privileges.php:359 server_privileges.php:734 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "允許執行 SHOW CREATE VIEW 查詢" -#: server_privileges.php:125 server_privileges.php:288 -#: server_privileges.php:760 +#: server_privileges.php:127 server_privileges.php:289 +#: server_privileges.php:761 msgid "Allows shutting down the server." msgstr "允許關閉伺服器" -#: server_privileges.php:126 server_privileges.php:316 -#: server_privileges.php:757 +#: server_privileges.php:128 server_privileges.php:317 +#: server_privileges.php:758 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9596,168 +9645,168 @@ msgstr "" "允許在達到最大連線數時連線,對於大多數像設定全域變數或中止其它使用者程序這樣" "的管理操作是必需的" -#: server_privileges.php:127 server_privileges.php:344 -#: server_privileges.php:749 +#: server_privileges.php:129 server_privileges.php:345 +#: server_privileges.php:750 msgid "Allows creating and dropping triggers" msgstr "允許建立和刪除 triggers" -#: server_privileges.php:128 server_privileges.php:268 -#: server_privileges.php:654 server_privileges.php:719 +#: server_privileges.php:130 server_privileges.php:269 +#: server_privileges.php:655 server_privileges.php:720 msgid "Allows changing data." msgstr "允許修改資料" -#: server_privileges.php:129 server_privileges.php:433 +#: server_privileges.php:131 server_privileges.php:434 msgid "No privileges." msgstr "無權限" -#: server_privileges.php:492 server_privileges.php:493 +#: server_privileges.php:493 server_privileges.php:494 msgctxt "None privileges" msgid "None" msgstr "無" -#: server_privileges.php:635 server_privileges.php:780 -#: server_privileges.php:2070 server_privileges.php:2076 +#: server_privileges.php:636 server_privileges.php:781 +#: server_privileges.php:2078 server_privileges.php:2084 msgid "Table-specific privileges" msgstr "按表指定權限" -#: server_privileges.php:636 server_privileges.php:788 -#: server_privileges.php:1857 +#: server_privileges.php:637 server_privileges.php:789 +#: server_privileges.php:1865 msgid "Note: MySQL privilege names are expressed in English" msgstr "注意:MySQL 權限名稱會以英文顯示" -#: server_privileges.php:713 +#: server_privileges.php:714 msgid "Administration" msgstr "管理" -#: server_privileges.php:777 server_privileges.php:1856 +#: server_privileges.php:778 server_privileges.php:1864 msgid "Global privileges" msgstr "全域權限" -#: server_privileges.php:779 server_privileges.php:2070 +#: server_privileges.php:780 server_privileges.php:2078 msgid "Database-specific privileges" msgstr "按資料庫指定權限" -#: server_privileges.php:811 +#: server_privileges.php:812 msgid "Resource limits" msgstr "資源限制" -#: server_privileges.php:812 +#: server_privileges.php:813 msgid "Note: Setting these options to 0 (zero) removes the limit." msgstr "注意:若將這些選項設爲 0(零) 即不限制" -#: server_privileges.php:890 +#: server_privileges.php:891 msgid "Login Information" msgstr "登錄資訊" -#: server_privileges.php:987 +#: server_privileges.php:988 msgid "Do not change the password" msgstr "保持原密碼" -#: server_privileges.php:1039 server_privileges.php:2562 +#: server_privileges.php:1040 server_privileges.php:2570 msgid "No user found." msgstr "未找到使用者" -#: server_privileges.php:1083 +#: server_privileges.php:1084 #, php-format msgid "The user %s already exists!" msgstr "使用者 %s 己存在!" -#: server_privileges.php:1167 +#: server_privileges.php:1168 msgid "You have added a new user." msgstr "您已新增了一個新使用者" -#: server_privileges.php:1391 +#: server_privileges.php:1392 #, php-format msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的權限" -#: server_privileges.php:1413 +#: server_privileges.php:1414 #, php-format msgid "You have revoked the privileges for %s" msgstr "您已移除 %s 的權限" -#: server_privileges.php:1449 +#: server_privileges.php:1450 #, php-format msgid "The password for %s was changed successfully." msgstr "%s 的密碼已修改" -#: server_privileges.php:1469 +#: server_privileges.php:1470 #, php-format msgid "Deleting %s" msgstr "正在刪除 %s" -#: server_privileges.php:1483 +#: server_privileges.php:1484 msgid "No users selected for deleting!" msgstr "沒有選擇要刪除的使用者!" -#: server_privileges.php:1486 +#: server_privileges.php:1487 msgid "Reloading the privileges" msgstr "重新載入權限" -#: server_privileges.php:1504 +#: server_privileges.php:1505 msgid "The selected users have been deleted successfully." msgstr "已成功刪除選中的使用者" -#: server_privileges.php:1539 +#: server_privileges.php:1540 msgid "The privileges were reloaded successfully." msgstr "已成功重新載入權限" -#: server_privileges.php:1550 server_privileges.php:1999 +#: server_privileges.php:1551 server_privileges.php:2007 msgid "Edit Privileges" msgstr "編輯權限" -#: server_privileges.php:1559 +#: server_privileges.php:1560 msgid "Revoke" msgstr "移除" -#: server_privileges.php:1575 +#: server_privileges.php:1576 #, fuzzy #| msgid "Export" msgid "Export all" msgstr "匯出" -#: server_privileges.php:1594 server_privileges.php:1880 -#: server_privileges.php:2512 +#: server_privileges.php:1595 server_privileges.php:1888 +#: server_privileges.php:2520 msgid "Any" msgstr "任意" -#: server_privileges.php:1677 +#: server_privileges.php:1682 #, fuzzy #| msgid "Privileges" msgid "Privileges for all users" msgstr "權限" -#: server_privileges.php:1690 +#: server_privileges.php:1695 #, fuzzy, php-format #| msgid "Privileges" msgid "Privileges for %s" msgstr "權限" -#: server_privileges.php:1718 +#: server_privileges.php:1726 #, fuzzy #| msgid "User overview" msgid "Users overview" msgstr "查看使用者" -#: server_privileges.php:1858 server_privileges.php:2075 -#: server_privileges.php:2423 +#: server_privileges.php:1866 server_privileges.php:2083 +#: server_privileges.php:2431 msgid "Grant" msgstr "授權" -#: server_privileges.php:1954 +#: server_privileges.php:1962 msgid "Remove selected users" msgstr "刪除選中的使用者" -#: server_privileges.php:1957 +#: server_privileges.php:1965 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "移除使用者所有權限,然後刪除使用者" -#: server_privileges.php:1958 server_privileges.php:1959 -#: server_privileges.php:1960 +#: server_privileges.php:1966 server_privileges.php:1967 +#: server_privileges.php:1968 msgid "Drop the databases that have the same names as the users." msgstr "刪除與使用者同名的資料庫" -#: server_privileges.php:1981 +#: server_privileges.php:1989 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9769,130 +9818,130 @@ msgstr "" "內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入" "權限%s" -#: server_privileges.php:2034 +#: server_privileges.php:2042 msgid "The selected user was not found in the privilege table." msgstr "在權限表內找不到選中的使用者" -#: server_privileges.php:2076 +#: server_privileges.php:2084 msgid "Column-specific privileges" msgstr "按欄位指定權限" -#: server_privileges.php:2282 +#: server_privileges.php:2290 msgid "Add privileges on the following database" msgstr "在下列資料庫新增權限" -#: server_privileges.php:2300 +#: server_privileges.php:2308 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "要使用萬用字元 _ 和 % 本身,應使用用 \\ 轉義" -#: server_privileges.php:2303 +#: server_privileges.php:2311 msgid "Add privileges on the following table" msgstr "在下列資料表新增權限" -#: server_privileges.php:2360 +#: server_privileges.php:2368 msgid "Change Login Information / Copy User" msgstr "修改登錄資訊/複製使用者" -#: server_privileges.php:2363 +#: server_privileges.php:2371 msgid "Create a new user with the same privileges and ..." msgstr "建立具有相同權限的新使用者然後 ..." -#: server_privileges.php:2365 +#: server_privileges.php:2373 msgid "... keep the old one." msgstr "... 保留舊使用者" -#: server_privileges.php:2366 +#: server_privileges.php:2374 msgid "... delete the old one from the user tables." msgstr "... 從使用者資料表中刪除舊使用者" -#: server_privileges.php:2367 +#: server_privileges.php:2375 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... 移除舊使用者的所有權限,然後刪除舊使用者" -#: server_privileges.php:2368 +#: server_privileges.php:2376 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... 從使用者資料表中刪除舊使用者,然後重新載入權限" -#: server_privileges.php:2391 +#: server_privileges.php:2399 msgid "Database for user" msgstr "使用者資料庫" -#: server_privileges.php:2393 +#: server_privileges.php:2401 msgid "Create database with same name and grant all privileges" msgstr "建立與使用者同名的資料庫並授予所有權限" -#: server_privileges.php:2395 +#: server_privileges.php:2403 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "給以 帳號_ 開頭的資料庫 (username\\_%) 授予所有權限" -#: server_privileges.php:2399 +#: server_privileges.php:2407 #, php-format msgid "Grant all privileges on database "%s"" msgstr "授予資料庫“%s”的所有權限" -#: server_privileges.php:2415 +#: server_privileges.php:2423 #, php-format msgid "Users having access to "%s"" msgstr "使用者可以訪問“%s”" -#: server_privileges.php:2524 +#: server_privileges.php:2532 msgid "global" msgstr "全域" -#: server_privileges.php:2526 +#: server_privileges.php:2534 msgid "database-specific" msgstr "按資料庫指定" -#: server_privileges.php:2528 +#: server_privileges.php:2536 msgid "wildcard" msgstr "萬用字元" -#: server_privileges.php:2571 +#: server_privileges.php:2578 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." msgstr "已刪除 view %s" -#: server_replication.php:79 +#: server_replication.php:81 msgid "Unknown error" msgstr "未知錯誤" -#: server_replication.php:86 +#: server_replication.php:88 #, php-format msgid "Unable to connect to master %s." msgstr "無法連線到主伺服器 %s" -#: server_replication.php:93 +#: server_replication.php:95 msgid "" "Unable to read master log position. Possible privilege problem on master." msgstr "無法讀取主伺服器日誌。主伺服器的權限設定可能有問題" -#: server_replication.php:99 +#: server_replication.php:101 msgid "Unable to change master" msgstr "無法修改主伺服器" -#: server_replication.php:102 +#: server_replication.php:104 #, fuzzy, php-format #| msgid "The privileges were reloaded successfully." msgid "Master server changed successfully to %s" msgstr "權限已成功重新讀取." -#: server_replication.php:207 +#: server_replication.php:209 msgid "This server is configured as master in a replication process." msgstr "此伺服器已被設定爲一個複製程序中的主伺服器" -#: server_replication.php:209 server_status.php:638 +#: server_replication.php:211 server_status.php:637 msgid "Show master status" msgstr "查看主伺服器狀態" -#: server_replication.php:213 +#: server_replication.php:215 msgid "Show connected slaves" msgstr "查看已連線的從伺服器" -#: server_replication.php:237 +#: server_replication.php:239 #, php-format msgid "" "This server is not configured as master in a replication process. Would you " @@ -9901,11 +9950,11 @@ msgstr "" "此伺服器尚未設定爲一個複製程序中的主伺服器。您想現在設定" "嗎?" -#: server_replication.php:244 +#: server_replication.php:246 msgid "Master configuration" msgstr "主伺服器設定" -#: server_replication.php:245 +#: server_replication.php:247 msgid "" "This server is not configured as master server in a replication process. You " "can choose from either replicating all databases and ignoring certain " @@ -9916,25 +9965,25 @@ msgstr "" "此伺服器尚未設定爲一個複製程序中的主伺服器。您可以選擇複製所有但忽略某些資料" "庫 (當您想複製大多數資料庫時很有用) 或者僅複製某些資料庫。請選擇模式:" -#: server_replication.php:248 +#: server_replication.php:250 msgid "Replicate all databases; Ignore:" msgstr "複製所有資料庫,除了:" -#: server_replication.php:249 +#: server_replication.php:251 msgid "Ignore all databases; Replicate:" msgstr "忽略所有資料庫;備援(Replicate):" -#: server_replication.php:252 +#: server_replication.php:254 msgid "Please select databases:" msgstr "請選擇資料庫:" -#: server_replication.php:255 +#: server_replication.php:257 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." msgstr "現在,將下列行新增到您的 my.cnf 檔案最後,然後重新啓動 MySQL 伺服器" -#: server_replication.php:257 +#: server_replication.php:259 msgid "" "Once you restarted MySQL server, please click on Go button. Afterwards, you " "should see a message informing you, that this server is configured as " @@ -9943,80 +9992,80 @@ msgstr "" "當 MySQL 伺服器重新啓動後,請點選 執行 按鈕。您應該看見一條提示資訊說此伺服器" "已經被設定爲主伺服器" -#: server_replication.php:320 +#: server_replication.php:321 msgid "Slave SQL Thread not running!" msgstr "從 SQL 程序未啓動!" -#: server_replication.php:323 +#: server_replication.php:324 msgid "Slave IO Thread not running!" msgstr "從 IO 程序未啓動!" -#: server_replication.php:332 +#: server_replication.php:333 msgid "" "Server is configured as slave in a replication process. Would you like to:" msgstr "伺服器已被設定爲一個複製程序中的從伺服器。您是否要:" -#: server_replication.php:335 +#: server_replication.php:336 msgid "See slave status table" msgstr "查看從伺服器狀態" -#: server_replication.php:339 +#: server_replication.php:340 msgid "Synchronize databases with master" msgstr "根據主伺服器同步資料庫" -#: server_replication.php:350 +#: server_replication.php:351 msgid "Control slave:" msgstr "控制 slave 伺服器:" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full start" msgstr "全部啓動" -#: server_replication.php:353 +#: server_replication.php:354 msgid "Full stop" msgstr "全部停止" -#: server_replication.php:354 +#: server_replication.php:355 msgid "Reset slave" msgstr "重置從伺服器" -#: server_replication.php:356 +#: server_replication.php:357 msgid "Start SQL Thread only" msgstr "僅啓動 SQL 程序" -#: server_replication.php:358 +#: server_replication.php:359 msgid "Stop SQL Thread only" msgstr "僅停止 SQL 程序" -#: server_replication.php:361 +#: server_replication.php:362 msgid "Start IO Thread only" msgstr "僅啓動 IO 程序" -#: server_replication.php:363 +#: server_replication.php:364 msgid "Stop IO Thread only" msgstr "僅停止 IO 程序" -#: server_replication.php:368 +#: server_replication.php:369 msgid "Error management:" msgstr "錯誤管理:" -#: server_replication.php:370 +#: server_replication.php:371 msgid "Skipping errors might lead into unsynchronized master and slave!" msgstr "忽略錯誤可能導致主從伺服器間不同步!" -#: server_replication.php:372 +#: server_replication.php:373 msgid "Skip current error" msgstr "忽略目前錯誤" -#: server_replication.php:373 +#: server_replication.php:374 msgid "Skip next" msgstr "忽略下" -#: server_replication.php:376 +#: server_replication.php:377 msgid "errors." msgstr "個錯誤" -#: server_replication.php:392 +#: server_replication.php:393 #, php-format msgid "" "This server is not configured as slave in a replication process. Would you " @@ -10025,162 +10074,162 @@ msgstr "" "此伺服器尚未設定爲一個複製程序中的從伺服器。您想現在設定" "嗎?" -#: server_status.php:471 +#: server_status.php:470 #, php-format msgid "Thread %s was successfully killed." msgstr "已中止程序 %s" -#: server_status.php:473 +#: server_status.php:472 #, php-format msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉" -#: server_status.php:605 +#: server_status.php:604 msgid "Handler" msgstr "處理器" -#: server_status.php:606 +#: server_status.php:605 msgid "Query cache" msgstr "查詢快取" -#: server_status.php:607 +#: server_status.php:606 msgid "Threads" msgstr "程序" -#: server_status.php:609 +#: server_status.php:608 msgid "Temporary data" msgstr "臨時資料" -#: server_status.php:610 +#: server_status.php:609 msgid "Delayed inserts" msgstr "延遲插入" -#: server_status.php:611 +#: server_status.php:610 msgid "Key cache" msgstr "鍵快取" -#: server_status.php:612 +#: server_status.php:611 msgid "Joins" msgstr "多表查詢" -#: server_status.php:614 +#: server_status.php:613 msgid "Sorting" msgstr "排序" -#: server_status.php:616 +#: server_status.php:615 msgid "Transaction coordinator" msgstr "交易協調" -#: server_status.php:628 +#: server_status.php:627 msgid "Flush (close) all tables" msgstr "強制更新 (關閉) 所有表" -#: server_status.php:630 +#: server_status.php:629 msgid "Show open tables" msgstr "顯示開啟的表" -#: server_status.php:635 +#: server_status.php:634 msgid "Show slave hosts" msgstr "顯示從伺服器" -#: server_status.php:641 +#: server_status.php:640 msgid "Show slave status" msgstr "顯示從伺服器狀態" -#: server_status.php:646 +#: server_status.php:645 msgid "Flush query cache" msgstr "強制更新查詢快取" -#: server_status.php:786 +#: server_status.php:785 msgid "Runtime Information" msgstr "運行資訊" -#: server_status.php:793 +#: server_status.php:792 #, fuzzy #| msgid "See slave status table" msgid "All status variables" msgstr "查看從伺服器狀態" -#: server_status.php:794 +#: server_status.php:793 msgid "Monitor" msgstr "" -#: server_status.php:795 +#: server_status.php:794 msgid "Advisor" msgstr "" -#: server_status.php:805 server_status.php:827 +#: server_status.php:804 server_status.php:826 #, fuzzy #| msgid "Refresh" msgid "Refresh rate: " msgstr "重新整理" -#: server_status.php:840 server_variables.php:119 +#: server_status.php:839 server_variables.php:115 #, fuzzy msgid "Filters" msgstr "過濾" -#: server_status.php:848 server_variables.php:121 +#: server_status.php:847 server_variables.php:117 #, fuzzy #| msgid "Do not change the password" msgid "Containing the word:" msgstr "保持原密碼" -#: server_status.php:853 +#: server_status.php:852 #, fuzzy #| msgid "Show open tables" msgid "Show only alert values" msgstr "顯示開啟的表" -#: server_status.php:857 +#: server_status.php:856 msgid "Filter by category..." msgstr "" -#: server_status.php:871 +#: server_status.php:870 #, fuzzy #| msgid "Show open tables" msgid "Show unformatted values" msgstr "顯示開啟的表" -#: server_status.php:875 +#: server_status.php:874 #, fuzzy #| msgid "Related Links" msgid "Related links:" msgstr "相關連結" -#: server_status.php:908 +#: server_status.php:907 #, fuzzy #| msgid "Query type" msgid "Run analyzer" msgstr "查詢方式" -#: server_status.php:909 +#: server_status.php:908 #, fuzzy msgid "Instructions" msgstr "資料" -#: server_status.php:916 +#: server_status.php:915 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." msgstr "" -#: server_status.php:918 +#: server_status.php:917 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:920 +#: server_status.php:919 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:922 +#: server_status.php:921 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 " @@ -10188,47 +10237,47 @@ msgid "" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: server_status.php:944 +#: server_status.php:943 #, fuzzy, php-format #| msgid "Customize startup page" msgid "Questions since startup: %s" msgstr "自訂起始頁" -#: server_status.php:980 +#: server_status.php:979 msgid "Statements" msgstr "說明" #. l10n: # = Amount of queries -#: server_status.php:983 +#: server_status.php:982 msgid "#" msgstr "" -#: server_status.php:1056 +#: server_status.php:1055 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:1065 +#: server_status.php:1064 #, 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:1076 +#: server_status.php:1075 msgid "" "This MySQL server works as master and slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:1078 +#: server_status.php:1077 msgid "This MySQL server works as master in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:1080 +#: server_status.php:1079 msgid "This MySQL server works as slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:1083 +#: server_status.php:1082 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -10236,11 +10285,11 @@ msgstr "" "要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊" "" -#: server_status.php:1092 +#: server_status.php:1091 msgid "Replication status" msgstr "複製狀態" -#: server_status.php:1107 +#: server_status.php:1106 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10248,47 +10297,47 @@ msgstr "" "在高負載的伺服器上,字元計數器可能會溢出,因此由 MySQL 返回的統計值可能會不正" "確" -#: server_status.php:1113 +#: server_status.php:1112 msgid "Received" msgstr "已接收" -#: server_status.php:1124 +#: server_status.php:1123 msgid "Sent" msgstr "已發送" -#: server_status.php:1165 +#: server_status.php:1164 msgid "max. concurrent connections" msgstr "最大同時連線數" -#: server_status.php:1172 +#: server_status.php:1171 msgid "Failed attempts" msgstr "已失敗" -#: server_status.php:1188 +#: server_status.php:1187 msgid "Aborted" msgstr "已取消" -#: server_status.php:1254 +#: server_status.php:1253 msgid "ID" msgstr "ID" -#: server_status.php:1258 +#: server_status.php:1257 msgid "Command" msgstr "命令" -#: server_status.php:1320 +#: server_status.php:1319 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1321 +#: server_status.php:1320 #, 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:1322 +#: server_status.php:1321 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 " @@ -10297,16 +10346,16 @@ msgstr "" "因交易使用的臨時二進制日誌快取超出 binlog_cache_size 的設定而使用臨時檔案儲存" "的數量" -#: server_status.php:1323 +#: server_status.php:1322 msgid "The number of transactions that used the temporary binary log cache." msgstr "交易所用的臨時二進制日誌快取的數量" -#: server_status.php:1324 +#: server_status.php:1323 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1325 +#: server_status.php:1324 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 " @@ -10316,46 +10365,46 @@ msgstr "" "伺服器執行指令時自動在硬碟上建立的臨時表的數量。如果 Created_tmp_disk_tables " "很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存臨時表而非硬碟" -#: server_status.php:1326 +#: server_status.php:1325 msgid "How many temporary files mysqld has created." msgstr "mysqld 已建立的臨時檔案的數量" -#: server_status.php:1327 +#: server_status.php:1326 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "伺服器執行指令時自動在記憶體中建立的臨時表的數量" -#: server_status.php:1328 +#: server_status.php:1327 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值)" -#: server_status.php:1329 +#: server_status.php:1328 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:1330 +#: server_status.php:1329 msgid "The number of INSERT DELAYED rows written." msgstr "延遲插入已寫入的行數" -#: server_status.php:1331 +#: server_status.php:1330 msgid "The number of executed FLUSH statements." msgstr "已執行的強制更新 (FLUSH) 指令數" -#: server_status.php:1332 +#: server_status.php:1331 msgid "The number of internal COMMIT statements." msgstr "已執行的內部送出 (COMMIT) 指令數" -#: server_status.php:1333 +#: server_status.php:1332 msgid "The number of times a row was deleted from a table." msgstr "從資料表中刪除行的次數" -#: server_status.php:1334 +#: 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 " @@ -10364,7 +10413,7 @@ msgstr "" "如果知道一個資料表的名字,MySQL 伺服器可以詢問 NDB 集羣儲存引擎,這被稱爲“發" "現”Handler_discovery 表明瞭一個資料表被發現的次數" -#: server_status.php:1335 +#: 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, " @@ -10373,14 +10422,14 @@ msgstr "" "讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃" "描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo" -#: server_status.php:1336 +#: server_status.php:1335 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:1337 +#: server_status.php:1336 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 " @@ -10389,7 +10438,7 @@ msgstr "" "根據索引順序讀取下一行的請求數。如果您在查詢一個已索引的欄位且限制了範圍,或" "進行完整表掃描,該值將會不斷增長" -#: server_status.php:1338 +#: server_status.php:1337 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10397,7 +10446,7 @@ msgstr "" "根據索引順序讀取上一行的請求數。這種讀取方式通常用於最佳化帶有 ORDER BY ... " "DESC 的查詢" -#: server_status.php:1339 +#: 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 " @@ -10407,7 +10456,7 @@ msgstr "" "根據固定位置讀取行的請求數。如果您執行很多需要排序的查詢,該值會很高。您可能" "有很多需要完整表掃描的查詢,或者您使用了不正確的索引用來多表查詢" -#: server_status.php:1340 +#: server_status.php:1339 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 " @@ -10417,35 +10466,35 @@ msgstr "" "從資料檔案中讀取行的請求數。如果您在掃描很多表,該值會很大。通常情況下這意味" "着您的表沒有做好索引,或者您的查詢指令沒有使用好索引欄位" -#: server_status.php:1341 +#: server_status.php:1340 msgid "The number of internal ROLLBACK statements." msgstr "內部回滾 (ROLLBACK) 指令數" -#: server_status.php:1342 +#: server_status.php:1341 msgid "The number of requests to update a row in a table." msgstr "資料表中更新行的請求數" -#: server_status.php:1343 +#: server_status.php:1342 msgid "The number of requests to insert a row in a table." msgstr "資料表中插入行的請求數" -#: server_status.php:1344 +#: server_status.php:1343 msgid "The number of pages containing data (dirty or clean)." msgstr "非空頁數 (含髒頁)" -#: server_status.php:1345 +#: server_status.php:1344 msgid "The number of pages currently dirty." msgstr "目前髒頁數" -#: server_status.php:1346 +#: server_status.php:1345 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "請求更新的快取池頁數" -#: server_status.php:1347 +#: server_status.php:1346 msgid "The number of free pages." msgstr "空閒頁數" -#: server_status.php:1348 +#: 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 " @@ -10454,7 +10503,7 @@ msgstr "" "InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能" "被重新整理或刪除的" -#: server_status.php:1349 +#: server_status.php:1348 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 " @@ -10465,11 +10514,11 @@ msgstr "" "公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data" -#: server_status.php:1350 +#: server_status.php:1349 msgid "Total size of buffer pool, in pages." msgstr "快取池總大小 (單位:頁)" -#: server_status.php:1351 +#: 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." @@ -10477,23 +10526,23 @@ msgstr "" "InnoDB 原始化的“隨機”預讀數。這通常會在對一個資料表進行大範圍的隨機排序查詢時" "發生" -#: server_status.php:1352 +#: server_status.php:1351 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:1353 +#: server_status.php:1352 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的邏輯讀請求數" -#: server_status.php:1354 +#: 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 "InnoDB 進行邏輯讀取時無法從快取池中取得而執行單頁讀取的次數" -#: server_status.php:1355 +#: server_status.php:1354 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 " @@ -10505,85 +10554,85 @@ msgstr "" "必要先等待頁被重新整理。該計數器統計了這種等待的數量。如果快取池大小設定正" "確,這個值應該會很小" -#: server_status.php:1356 +#: server_status.php:1355 msgid "The number writes done to the InnoDB buffer pool." msgstr "寫入 InnoDB 快取池的次數" -#: server_status.php:1357 +#: server_status.php:1356 msgid "The number of fsync() operations so far." msgstr "fsync() 總操作的次數" -#: server_status.php:1358 +#: server_status.php:1357 msgid "The current number of pending fsync() operations." msgstr "目前掛起 fsync() 操作的數量" -#: server_status.php:1359 +#: server_status.php:1358 msgid "The current number of pending reads." msgstr "目前掛起的讀操作數" -#: server_status.php:1360 +#: server_status.php:1359 msgid "The current number of pending writes." msgstr "目前掛起的寫操作數" -#: server_status.php:1361 +#: server_status.php:1360 msgid "The amount of data read so far, in bytes." msgstr "讀取的總資料量 (單位:字元)" -#: server_status.php:1362 +#: server_status.php:1361 msgid "The total number of data reads." msgstr "資料讀取總數" -#: server_status.php:1363 +#: server_status.php:1362 msgid "The total number of data writes." msgstr "資料寫入總數" -#: server_status.php:1364 +#: server_status.php:1363 msgid "The amount of data written so far, in bytes." msgstr "寫入的總資料量 (單位:字元)" -#: server_status.php:1365 +#: server_status.php:1364 msgid "The number of pages that have been written for doublewrite operations." msgstr "以雙寫入操作寫入的頁數" -#: server_status.php:1366 +#: server_status.php:1365 msgid "The number of doublewrite operations that have been performed." msgstr "已經執行的雙寫入次數" -#: server_status.php:1367 +#: server_status.php:1366 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:1368 +#: server_status.php:1367 msgid "The number of log write requests." msgstr "日誌寫入請求數" -#: server_status.php:1369 +#: server_status.php:1368 msgid "The number of physical writes to the log file." msgstr "日誌物理寫入次數" -#: server_status.php:1370 +#: server_status.php:1369 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 寫入日志檔案的次數" -#: server_status.php:1371 +#: server_status.php:1370 msgid "The number of pending log file fsyncs." msgstr "目前掛起的 fsync 日志檔案數" -#: server_status.php:1372 +#: server_status.php:1371 msgid "Pending log file writes." msgstr "目前掛起的日誌寫入數" -#: server_status.php:1373 +#: server_status.php:1372 msgid "The number of bytes written to the log file." msgstr "寫入日志檔案的字元數" -#: server_status.php:1374 +#: server_status.php:1373 msgid "The number of pages created." msgstr "建立的頁數" -#: server_status.php:1375 +#: server_status.php:1374 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." @@ -10591,81 +10640,81 @@ msgstr "" "編譯的 InnoDB 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方" "便地將這些值轉化爲字元數" -#: server_status.php:1376 +#: server_status.php:1375 msgid "The number of pages read." msgstr "讀取的頁數" -#: server_status.php:1377 +#: server_status.php:1376 msgid "The number of pages written." msgstr "寫入的頁數" -#: server_status.php:1378 +#: server_status.php:1377 msgid "The number of row locks currently being waited for." msgstr "正在等待行鎖的數量" -#: server_status.php:1379 +#: server_status.php:1378 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的平均時間 (單位:毫秒)" -#: server_status.php:1380 +#: server_status.php:1379 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待取得行鎖的總時間 (單位:毫秒)" -#: server_status.php:1381 +#: server_status.php:1380 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的最大時間 (單位:毫秒)" -#: server_status.php:1382 +#: server_status.php:1381 msgid "The number of times a row lock had to be waited for." msgstr "等待行鎖的次數" -#: server_status.php:1383 +#: server_status.php:1382 msgid "The number of rows deleted from InnoDB tables." msgstr "從 InnoDB 資料表中刪除的行數" -#: server_status.php:1384 +#: server_status.php:1383 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 資料表中的行數" -#: server_status.php:1385 +#: server_status.php:1384 msgid "The number of rows read from InnoDB tables." msgstr "從 InnoDB 資料表中讀取的行數" -#: server_status.php:1386 +#: server_status.php:1385 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行數" -#: server_status.php:1387 +#: 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 "" "鍵快取中還沒有被寫入到硬碟的鍵塊數。該值過去名爲 Not_flushed_key_blocks" -#: server_status.php:1388 +#: 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." msgstr "鍵快取中未使用的塊數。您可以根據這個值判斷目前使用了多少鍵快取" -#: server_status.php:1389 +#: server_status.php:1388 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:1390 +#: server_status.php:1389 #, fuzzy #| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" msgstr "匯入檔案的格式" -#: server_status.php:1391 +#: server_status.php:1390 msgid "The number of requests to read a key block from the cache." msgstr "從快取中讀取鍵塊的請求次數" -#: server_status.php:1392 +#: 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 " @@ -10674,26 +10723,26 @@ msgstr "" "從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size " "可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出" -#: server_status.php:1393 +#: server_status.php:1392 msgid "" "Key cache miss calculated as rate of physical reads compared to read " "requests (calculated value)" msgstr "" -#: server_status.php:1394 +#: server_status.php:1393 msgid "The number of requests to write a key block to the cache." msgstr "將一個鍵塊寫入快取的請求數" -#: server_status.php:1395 +#: server_status.php:1394 msgid "The number of physical writes of a key block to disk." msgstr "將鍵塊物理寫入到硬碟的次數" -#: server_status.php:1396 +#: server_status.php:1395 msgid "" "Percentage of physical writes compared to write requests (calculated value)" msgstr "" -#: server_status.php:1397 +#: server_status.php:1396 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 " @@ -10702,54 +10751,54 @@ msgstr "" "最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進" "行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯" -#: server_status.php:1398 +#: server_status.php:1397 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1399 +#: server_status.php:1398 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待寫入延遲插入隊列的行數" -#: server_status.php:1400 +#: server_status.php:1399 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:1401 +#: server_status.php:1400 msgid "The number of files that are open." msgstr "開啟的檔案個數" -#: server_status.php:1402 +#: server_status.php:1401 msgid "The number of streams that are open (used mainly for logging)." msgstr "開啟的流個數 (主要用於日誌記錄)" -#: server_status.php:1403 +#: server_status.php:1402 msgid "The number of tables that are open." msgstr "開啟的資料表個數" -#: server_status.php:1404 +#: server_status.php:1403 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:1405 +#: server_status.php:1404 msgid "The amount of free memory for query cache." msgstr "查詢快取中空閒的記憶體總數" -#: server_status.php:1406 +#: server_status.php:1405 msgid "The number of cache hits." msgstr "快取命中數" -#: server_status.php:1407 +#: server_status.php:1406 msgid "The number of queries added to the cache." msgstr "加入到快取的查詢數" -#: server_status.php:1408 +#: 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 " @@ -10759,7 +10808,7 @@ msgstr "" "爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除" "哪個已快取的查詢。該資訊可幫助您調整查詢快取大小" -#: server_status.php:1409 +#: server_status.php:1408 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10767,19 +10816,19 @@ msgstr "" "未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的" "查詢)" -#: server_status.php:1410 +#: server_status.php:1409 msgid "The number of queries registered in the cache." msgstr "在快取中註冊的查詢數" -#: server_status.php:1411 +#: server_status.php:1410 msgid "The total number of blocks in the query cache." msgstr "查詢快取中的總塊數" -#: server_status.php:1412 +#: server_status.php:1411 msgid "The status of failsafe replication (not yet implemented)." msgstr "失敗保護器的狀態 (尚未套用)" -#: server_status.php:1413 +#: server_status.php:1412 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." @@ -10787,11 +10836,11 @@ msgstr "" "沒有使用索引的多表查詢數。如果該值不爲0,您應該仔細檢查是否已經爲表建立了適當" "的索引" -#: server_status.php:1414 +#: server_status.php:1413 msgid "The number of joins that used a range search on a reference table." msgstr "使用在關聯表上使用範圍搜尋的多表查詢的數量" -#: server_status.php:1415 +#: 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.)" @@ -10799,7 +10848,7 @@ msgstr "" "沒有使用索引但在每行之後檢查索引使用的多表查詢數。(如果該值不爲 0,您應該仔細" "檢查是否已經爲表建立了適當的索引。)" -#: server_status.php:1416 +#: server_status.php:1415 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10807,36 +10856,36 @@ msgstr "" "在第一個資料表上使用範圍查詢的多表查詢數。(即使該值很大,通常也不會有致命的影" "響。)" -#: server_status.php:1417 +#: server_status.php:1416 msgid "The number of joins that did a full scan of the first table." msgstr "在第一個資料表上進行了完整表掃描的多表查詢數" -#: server_status.php:1418 +#: server_status.php:1417 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "目前由從 SQL 程序開啟的臨時表的數量" -#: server_status.php:1419 +#: server_status.php:1418 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "從 SQL 程序總共重試交易複製數" -#: server_status.php:1420 +#: server_status.php:1419 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果該值爲 ON,則這臺伺服器是一臺已經連線到主伺服器的從伺服器" -#: server_status.php:1421 +#: server_status.php:1420 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量" -#: server_status.php:1422 +#: server_status.php:1421 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多時間的查詢數" -#: server_status.php:1423 +#: server_status.php:1422 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 " @@ -10845,23 +10894,23 @@ msgstr "" "排序算法使用歸併的次數。如果該值很大,您應該考慮增加系統變數 " "sort_buffer_size 的值" -#: server_status.php:1424 +#: server_status.php:1423 msgid "The number of sorts that were done with ranges." msgstr "局部範圍完成的排序次數" -#: server_status.php:1425 +#: server_status.php:1424 msgid "The number of sorted rows." msgstr "排序的行數" -#: server_status.php:1426 +#: server_status.php:1425 msgid "The number of sorts that were done by scanning the table." msgstr "掃描表完成的排序次數" -#: server_status.php:1427 +#: server_status.php:1426 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要鎖定表的次數" -#: server_status.php:1428 +#: server_status.php:1427 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 " @@ -10871,7 +10920,7 @@ msgstr "" "無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題," "則應該首先檢查您的查詢指令,然後使用複製操作來分開表" -#: server_status.php:1429 +#: server_status.php:1428 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 " @@ -10880,11 +10929,11 @@ msgstr "" "程序快取中程序的數量。快取命中率可以由 Threads_created/Connections 計算得出如" "果該值是紅色的,則應該增加 thread_cache_size 的值" -#: server_status.php:1430 +#: server_status.php:1429 msgid "The number of currently open connections." msgstr "目前開啟的連線數" -#: server_status.php:1431 +#: server_status.php:1430 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 " @@ -10894,75 +10943,75 @@ msgstr "" "目前用於控制連線的程序數。如果 Threads_created 很大,您可能需要增加 " "thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)" -#: server_status.php:1432 +#: server_status.php:1431 #, fuzzy #| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" msgstr "追蹤已停用" -#: server_status.php:1433 +#: server_status.php:1432 msgid "The number of threads that are not sleeping." msgstr "非睡眠狀態的程序數量" -#: server_status.php:1579 +#: server_status.php:1578 #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" msgstr "文字框行" -#: server_status.php:1588 +#: server_status.php:1587 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1593 +#: server_status.php:1592 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1600 server_status.php:1671 +#: server_status.php:1599 server_status.php:1670 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "新增索引" -#: server_status.php:1602 +#: server_status.php:1601 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1606 +#: server_status.php:1605 #, fuzzy msgid "Refresh rate" msgstr "重新整理" -#: server_status.php:1611 +#: server_status.php:1610 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "文本框列" -#: server_status.php:1627 +#: server_status.php:1626 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "錯誤管理:" -#: server_status.php:1627 +#: server_status.php:1626 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:1628 +#: server_status.php:1627 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "還原預設值" -#: server_status.php:1632 +#: server_status.php:1631 #, fuzzy msgid "Monitor Instructions" msgstr "資料" -#: server_status.php:1633 +#: server_status.php:1632 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 " @@ -10971,7 +11020,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1638 +#: server_status.php:1637 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10979,18 +11028,18 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1651 +#: server_status.php:1650 msgid "Using the monitor:" msgstr "" -#: server_status.php:1653 +#: server_status.php:1652 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:1655 +#: server_status.php:1654 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 " @@ -10998,11 +11047,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1662 +#: server_status.php:1661 msgid "Please note:" msgstr "" -#: server_status.php:1664 +#: server_status.php:1663 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 " @@ -11010,233 +11059,233 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" -#: server_status.php:1676 +#: server_status.php:1675 #, fuzzy #| msgid "Remove database" msgid "Preset chart" msgstr "刪除資料庫" -#: server_status.php:1680 +#: server_status.php:1679 #, fuzzy #| msgid "See slave status table" msgid "Status variable(s)" msgstr "查看從伺服器狀態" -#: server_status.php:1682 +#: server_status.php:1681 #, fuzzy #| msgid "Select Tables" msgid "Select series:" msgstr "選擇表" -#: server_status.php:1684 +#: server_status.php:1683 msgid "Commonly monitored" msgstr "" -#: server_status.php:1699 +#: server_status.php:1698 #, fuzzy #| msgid "Invalid table name" msgid "or type variable name:" msgstr "無效的資料資料表名稱" -#: server_status.php:1703 +#: server_status.php:1702 msgid "Display as differential value" msgstr "" -#: server_status.php:1705 +#: server_status.php:1704 msgid "Apply a divisor" msgstr "" -#: server_status.php:1712 +#: server_status.php:1711 msgid "Append unit to data values" msgstr "" -#: server_status.php:1718 +#: server_status.php:1717 #, fuzzy #| msgid "Add a new server" msgid "Add this series" msgstr "新增伺服器" -#: server_status.php:1720 +#: server_status.php:1719 msgid "Clear series" msgstr "" -#: server_status.php:1723 +#: server_status.php:1722 #, fuzzy #| msgid "SQL queries" msgid "Series in Chart:" msgstr "SQL 查詢" -#: server_status.php:1736 +#: server_status.php:1735 #, fuzzy #| msgid "Show statistics" msgid "Log statistics" msgstr "顯示統計" -#: server_status.php:1737 +#: server_status.php:1736 #, fuzzy #| msgid "Select page" msgid "Selected time range:" msgstr "選擇頁" -#: server_status.php:1742 +#: server_status.php:1741 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" msgstr "" -#: server_status.php:1747 +#: server_status.php:1746 msgid "Remove variable data in INSERT statements for better grouping" msgstr "" -#: server_status.php:1752 +#: server_status.php:1751 msgid "Choose from which log you want the statistics to be generated from." msgstr "" -#: server_status.php:1754 +#: server_status.php:1753 msgid "Results are grouped by query text." msgstr "" -#: server_status.php:1759 +#: server_status.php:1758 #, fuzzy #| msgid "Query type" msgid "Query analyzer" msgstr "查詢方式" -#: server_status.php:1808 +#: server_status.php:1807 #, fuzzy, php-format #| msgid "Second" msgid "%d second" msgid_plural "%d seconds" msgstr[0] "秒" -#: server_status.php:1811 +#: server_status.php:1810 #, fuzzy, php-format #| msgid "Minute" msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "分" -#: server_synchronize.php:96 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "無法連線到來源資料庫" -#: server_synchronize.php:99 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "無法連線到目標資料庫" -#: server_synchronize.php:143 server_synchronize.php:149 tbl_create.php:55 +#: server_synchronize.php:146 server_synchronize.php:152 tbl_create.php:54 #: tbl_get_field.php:20 #, php-format msgid "'%s' database does not exist." msgstr "資料庫 '%s' 不存在" -#: server_synchronize.php:357 +#: server_synchronize.php:360 msgid "Structure Synchronization" msgstr "結構同步" -#: server_synchronize.php:361 +#: server_synchronize.php:364 msgid "Data Synchronization" msgstr "資料同步" -#: server_synchronize.php:484 server_synchronize.php:983 +#: server_synchronize.php:487 server_synchronize.php:986 msgid "not present" msgstr "未找到" -#: server_synchronize.php:520 server_synchronize.php:1040 +#: server_synchronize.php:523 server_synchronize.php:1043 msgid "Structure Difference" msgstr "結構差異" -#: server_synchronize.php:521 server_synchronize.php:1041 +#: server_synchronize.php:524 server_synchronize.php:1044 msgid "Data Difference" msgstr "資料差異" -#: server_synchronize.php:526 server_synchronize.php:1046 +#: server_synchronize.php:529 server_synchronize.php:1049 msgid "Add column(s)" msgstr "新增欄位" -#: server_synchronize.php:527 server_synchronize.php:1047 +#: server_synchronize.php:530 server_synchronize.php:1050 msgid "Remove column(s)" msgstr "刪除欄位" -#: server_synchronize.php:528 server_synchronize.php:1048 +#: server_synchronize.php:531 server_synchronize.php:1051 msgid "Alter column(s)" msgstr "修改欄位" -#: server_synchronize.php:529 server_synchronize.php:1049 +#: server_synchronize.php:532 server_synchronize.php:1052 msgid "Remove index(s)" msgstr "刪除索引" -#: server_synchronize.php:530 server_synchronize.php:1050 +#: server_synchronize.php:533 server_synchronize.php:1053 msgid "Apply index(s)" msgstr "增加索引" -#: server_synchronize.php:531 server_synchronize.php:1051 +#: server_synchronize.php:534 server_synchronize.php:1054 msgid "Update row(s)" msgstr "更新行" -#: server_synchronize.php:532 server_synchronize.php:1052 +#: server_synchronize.php:535 server_synchronize.php:1055 msgid "Insert row(s)" msgstr "增加行" -#: server_synchronize.php:544 server_synchronize.php:1065 +#: server_synchronize.php:547 server_synchronize.php:1068 msgid "Would you like to delete all the previous rows from target tables?" msgstr "您希望刪除目前目標資料表中的所有資料嗎?" -#: server_synchronize.php:549 server_synchronize.php:1070 +#: server_synchronize.php:552 server_synchronize.php:1073 msgid "Apply Selected Changes" msgstr "套用選中的修改" -#: server_synchronize.php:553 server_synchronize.php:1073 +#: server_synchronize.php:556 server_synchronize.php:1076 msgid "Synchronize Databases" msgstr "同步資料庫" -#: server_synchronize.php:567 +#: server_synchronize.php:570 msgid "Selected target tables have been synchronized with source tables." msgstr "選中的資料表已根據來源資料表同步" -#: server_synchronize.php:1120 +#: server_synchronize.php:1123 msgid "Target database has been synchronized with source database" msgstr "已根據來源資料庫同步目標資料庫" -#: server_synchronize.php:1188 +#: server_synchronize.php:1191 #, fuzzy msgid "Executed queries" msgstr "SQL 查詢" -#: server_synchronize.php:1372 +#: server_synchronize.php:1375 msgid "Enter manually" msgstr "手動輸入" -#: server_synchronize.php:1380 +#: server_synchronize.php:1383 msgid "Current connection" msgstr "目前連線" -#: server_synchronize.php:1421 +#: server_synchronize.php:1424 #, php-format msgid "Configuration: %s" msgstr "設定: %s" -#: server_synchronize.php:1436 +#: server_synchronize.php:1439 msgid "Socket" msgstr "連線埠" -#: server_synchronize.php:1484 +#: server_synchronize.php:1487 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." msgstr "目標資料庫將完全根據來源資料庫同步。來源資料庫將保持不變" -#: server_variables.php:90 +#: server_variables.php:86 msgid "Setting variable failed" msgstr "" -#: server_variables.php:103 +#: server_variables.php:99 msgid "Server variables and settings" msgstr "伺服器變數和設定" -#: server_variables.php:130 server_variables.php:157 +#: server_variables.php:126 server_variables.php:153 msgid "Session value" msgstr "連線值" -#: server_variables.php:130 +#: server_variables.php:126 msgid "Global value" msgstr "全域值" @@ -11548,189 +11597,189 @@ msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元" msgid "Wrong data" msgstr "沒有資料庫" -#: sql.php:253 +#: sql.php:268 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用書籤 \"%s\" 作爲預設的查詢" -#: sql.php:404 +#: sql.php:425 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute following query?" msgstr "您真的要" -#: sql.php:800 +#: sql.php:821 msgid "Showing as PHP code" msgstr "顯示爲 PHP 程式碼" -#: sql.php:805 +#: sql.php:826 msgid "Validated SQL" msgstr "已校驗的 SQL" -#: sql.php:928 +#: sql.php:954 msgid "SQL result" msgstr "SQL 查詢結果" -#: sql.php:933 +#: sql.php:959 msgid "Generated by" msgstr "產生者" -#: sql.php:1055 +#: sql.php:1082 #, php-format msgid "Problems with indexes of table `%s`" msgstr "資料表 `%s` 的索引存在問題" -#: sql.php:1087 +#: sql.php:1114 msgid "Label" msgstr "標籤" -#: tbl_addfield.php:190 tbl_alter.php:213 tbl_indexes.php:105 +#: tbl_addfield.php:188 tbl_alter.php:214 tbl_indexes.php:105 #, php-format msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s" -#: tbl_alter.php:130 +#: tbl_alter.php:131 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "已成功刪除選中的使用者" -#: tbl_chart.php:80 +#: tbl_chart.php:83 #, fuzzy #| msgid "Bar" msgctxt "Chart type" msgid "Bar" msgstr "柱狀圖" -#: tbl_chart.php:82 +#: tbl_chart.php:85 #, fuzzy #| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "欄位" -#: tbl_chart.php:84 +#: tbl_chart.php:87 #, fuzzy #| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "折線圖" -#: tbl_chart.php:86 +#: tbl_chart.php:89 #, fuzzy #| msgid "Inline" msgctxt "Chart type" msgid "Spline" msgstr "行間" -#: tbl_chart.php:89 +#: tbl_chart.php:92 #, fuzzy #| msgid "Pie" msgctxt "Chart type" msgid "Pie" msgstr "餅圖" -#: tbl_chart.php:93 +#: tbl_chart.php:96 msgid "Stacked" msgstr "堆疊" -#: tbl_chart.php:96 +#: tbl_chart.php:99 #, fuzzy #| msgid "Report title:" msgid "Chart title" msgstr "報告標題:" -#: tbl_chart.php:103 +#: tbl_chart.php:106 msgid "X-Axis:" msgstr "" -#: tbl_chart.php:118 +#: tbl_chart.php:121 #, fuzzy #| msgid "SQL queries" msgid "Series:" msgstr "SQL 查詢" -#: tbl_chart.php:138 +#: tbl_chart.php:141 #, fuzzy #| msgid "X Axis label" msgid "X-Axis label:" msgstr "水平軸標籤" -#: tbl_chart.php:140 +#: tbl_chart.php:143 #, fuzzy #| msgid "Value" msgid "X Values" msgstr "值" -#: tbl_chart.php:141 +#: tbl_chart.php:144 #, fuzzy #| msgid "Y Axis label" msgid "Y-Axis label:" msgstr "豎直軸標籤" -#: tbl_chart.php:142 +#: tbl_chart.php:145 #, fuzzy #| msgid "Value" msgid "Y Values" msgstr "值" -#: tbl_create.php:31 +#: tbl_create.php:30 #, php-format msgid "Table %s already exists!" msgstr "資料表 %s 已存在!" -#: tbl_create.php:230 +#: tbl_create.php:229 #, php-format msgid "Table %1$s has been created." msgstr "建立資料表 %1$s 成功" -#: tbl_export.php:24 +#: tbl_export.php:27 msgid "View dump (schema) of table" msgstr "查看資料表的轉存(大綱)" -#: tbl_gis_visualization.php:105 +#: tbl_gis_visualization.php:108 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "顯示伺服器選擇" -#: tbl_gis_visualization.php:121 +#: tbl_gis_visualization.php:124 msgid "Width" msgstr "寬" -#: tbl_gis_visualization.php:125 +#: tbl_gis_visualization.php:128 msgid "Height" msgstr "高" -#: tbl_gis_visualization.php:129 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Textarea columns" msgid "Label column" msgstr "文本框列" -#: tbl_gis_visualization.php:131 +#: tbl_gis_visualization.php:134 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- 無 -" -#: tbl_gis_visualization.php:144 +#: tbl_gis_visualization.php:147 #, fuzzy #| msgid "Total count" msgid "Spatial column" msgstr "總數量" -#: tbl_gis_visualization.php:168 +#: tbl_gis_visualization.php:171 msgid "Redraw" msgstr "重繪" -#: tbl_gis_visualization.php:170 +#: tbl_gis_visualization.php:173 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "另存檔案" -#: tbl_gis_visualization.php:171 +#: tbl_gis_visualization.php:174 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11748,30 +11797,30 @@ msgstr "無法將索引改爲主鍵 (PRIMARY) !" msgid "No index parts defined!" msgstr "沒有定義的索引部分!" -#: tbl_indexes.php:180 tbl_structure.php:165 tbl_structure.php:166 +#: tbl_indexes.php:187 tbl_structure.php:167 tbl_structure.php:168 msgid "Add index" msgstr "新增索引" -#: tbl_indexes.php:182 +#: tbl_indexes.php:189 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "編輯模式" -#: tbl_indexes.php:194 +#: tbl_indexes.php:201 msgid "Index name:" msgstr "索引名稱:" -#: tbl_indexes.php:196 +#: tbl_indexes.php:203 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" msgstr "(“PRIMARY”必須而且只能作爲主鍵的名稱!)" -#: tbl_indexes.php:208 +#: tbl_indexes.php:215 msgid "Index type:" msgstr "索引類型:" -#: tbl_indexes.php:303 +#: tbl_indexes.php:310 #, php-format msgid "Add to index  %s column(s)" msgstr "新增 %s 個索引欄位" @@ -11794,262 +11843,262 @@ msgstr "已將資料表 %s 移動到 %s" msgid "Table %s has been copied to %s." msgstr "已將資料表 %s 複製爲 %s" -#: tbl_move_copy.php:83 +#: tbl_move_copy.php:76 msgid "The table name is empty!" msgstr "資料表名稱不能爲空!" -#: tbl_operations.php:271 +#: tbl_operations.php:277 msgid "Alter table order by" msgstr "更改表的排序,根據" -#: tbl_operations.php:280 +#: tbl_operations.php:286 msgid "(singly)" msgstr "(逐一)" -#: tbl_operations.php:300 +#: tbl_operations.php:306 msgid "Move table to (database.table):" msgstr "將資料表移動到(資料庫名.資料資料表名稱):" -#: tbl_operations.php:358 +#: tbl_operations.php:364 msgid "Table options" msgstr "表選項" -#: tbl_operations.php:362 +#: tbl_operations.php:368 msgid "Rename table to" msgstr "將表改名爲" -#: tbl_operations.php:544 +#: tbl_operations.php:550 msgid "Copy table to (database.table):" msgstr "將資料表複製到(資料庫名.資料資料表名稱):" -#: tbl_operations.php:592 +#: tbl_operations.php:598 msgid "Switch to copied table" msgstr "切換到複製的資料表" -#: tbl_operations.php:604 +#: tbl_operations.php:610 msgid "Table maintenance" msgstr "表維護" -#: tbl_operations.php:632 +#: tbl_operations.php:638 msgid "Defragment table" msgstr "排序規則表碎片" -#: tbl_operations.php:688 +#: tbl_operations.php:694 #, php-format msgid "Table %s has been flushed" msgstr "已強制更新表 %s" -#: tbl_operations.php:696 +#: tbl_operations.php:702 msgid "Flush the table (FLUSH)" msgstr "刷新表 (FLUSH)" -#: tbl_operations.php:705 +#: tbl_operations.php:711 msgid "Delete data or table" msgstr "刪除資料或資料表" -#: tbl_operations.php:722 +#: tbl_operations.php:728 msgid "Empty the table (TRUNCATE)" msgstr "清空資料表 (TRUNCATE)" -#: tbl_operations.php:744 +#: tbl_operations.php:750 msgid "Delete the table (DROP)" msgstr "刪除資料表 (DROP)" -#: tbl_operations.php:766 +#: tbl_operations.php:772 msgid "Partition maintenance" msgstr "分區維護" -#: tbl_operations.php:774 +#: tbl_operations.php:780 #, php-format msgid "Partition %s" msgstr "分區 %s" -#: tbl_operations.php:777 +#: tbl_operations.php:783 msgid "Analyze" msgstr "分析" -#: tbl_operations.php:778 +#: tbl_operations.php:784 msgid "Check" msgstr "檢查" -#: tbl_operations.php:779 +#: tbl_operations.php:785 msgid "Optimize" msgstr "最佳化" -#: tbl_operations.php:780 +#: tbl_operations.php:786 msgid "Rebuild" msgstr "重建" -#: tbl_operations.php:781 +#: tbl_operations.php:787 msgid "Repair" msgstr "修復" -#: tbl_operations.php:795 +#: tbl_operations.php:801 msgid "Remove partitioning" msgstr "刪除分區" -#: tbl_operations.php:821 +#: tbl_operations.php:827 msgid "Check referential integrity:" msgstr "檢查引用完整性:" -#: tbl_printview.php:72 +#: tbl_printview.php:65 #, fuzzy #| msgid "Show tables" msgid "Showing tables" msgstr "顯示資料表" -#: tbl_printview.php:300 tbl_structure.php:830 +#: tbl_printview.php:293 tbl_structure.php:832 msgid "Space usage" msgstr "已用空間" -#: tbl_printview.php:327 tbl_structure.php:855 +#: tbl_printview.php:320 tbl_structure.php:857 msgid "Effective" msgstr "有效" -#: tbl_printview.php:352 tbl_structure.php:890 +#: tbl_printview.php:345 tbl_structure.php:892 msgid "Row Statistics" msgstr "行統計" -#: tbl_printview.php:362 tbl_structure.php:899 +#: tbl_printview.php:355 tbl_structure.php:901 msgid "static" msgstr "靜態" -#: tbl_printview.php:364 tbl_structure.php:901 +#: tbl_printview.php:357 tbl_structure.php:903 msgid "dynamic" msgstr "動態" -#: tbl_printview.php:388 tbl_structure.php:944 +#: tbl_printview.php:381 tbl_structure.php:946 msgid "Row length" msgstr "行長度" -#: tbl_printview.php:402 tbl_structure.php:952 +#: tbl_printview.php:395 tbl_structure.php:954 msgid "Row size" msgstr "行大小" -#: tbl_printview.php:412 tbl_structure.php:960 +#: tbl_printview.php:405 tbl_structure.php:962 msgid "Next autoindex" msgstr "" -#: tbl_relation.php:277 +#: tbl_relation.php:280 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "在 %1$s 建立外部鍵時發生錯誤 (檢查資料類型)" -#: tbl_relation.php:404 +#: tbl_relation.php:407 msgid "Internal relation" msgstr "行內" -#: tbl_relation.php:406 +#: tbl_relation.php:409 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "不需要一個和外部鍵關聯一致的行內部關聯" -#: tbl_relation.php:412 +#: tbl_relation.php:415 msgid "Foreign key constraint" msgstr "外部鍵約束" -#: tbl_structure.php:151 tbl_structure.php:156 tbl_structure.php:603 +#: tbl_structure.php:153 tbl_structure.php:158 tbl_structure.php:605 msgid "Spatial" msgstr "" -#: tbl_structure.php:158 tbl_structure.php:162 +#: tbl_structure.php:160 tbl_structure.php:164 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" msgstr "瀏覽非重複值 (DISTINCT)" -#: tbl_structure.php:163 tbl_structure.php:164 +#: tbl_structure.php:165 tbl_structure.php:166 msgid "Add primary key" msgstr "新增主鍵" -#: tbl_structure.php:167 tbl_structure.php:168 +#: tbl_structure.php:169 tbl_structure.php:170 msgid "Add unique index" msgstr "新增唯一鍵" -#: tbl_structure.php:169 tbl_structure.php:170 +#: tbl_structure.php:171 tbl_structure.php:172 #, fuzzy #| msgid "Add index" msgid "Add SPATIAL index" msgstr "新增索引" -#: tbl_structure.php:171 tbl_structure.php:172 +#: tbl_structure.php:173 tbl_structure.php:174 msgid "Add FULLTEXT index" msgstr "新增全文索引" -#: tbl_structure.php:354 tbl_tracking.php:341 +#: tbl_structure.php:356 tbl_tracking.php:341 msgctxt "None for default" msgid "None" msgstr "無" -#: tbl_structure.php:363 +#: tbl_structure.php:365 #, php-format msgid "Column %s has been dropped" msgstr "已刪除欄位 %s" -#: tbl_structure.php:376 tbl_structure.php:473 +#: tbl_structure.php:378 tbl_structure.php:475 #, php-format msgid "A primary key has been added on %s" msgstr "已將 %s 設爲主鍵" -#: tbl_structure.php:391 tbl_structure.php:406 tbl_structure.php:429 -#: tbl_structure.php:445 tbl_structure.php:486 tbl_structure.php:499 -#: tbl_structure.php:513 tbl_structure.php:526 +#: tbl_structure.php:393 tbl_structure.php:408 tbl_structure.php:431 +#: tbl_structure.php:447 tbl_structure.php:488 tbl_structure.php:501 +#: tbl_structure.php:515 tbl_structure.php:528 #, php-format msgid "An index has been added on %s" msgstr "已將 %s 設爲索引" -#: tbl_structure.php:467 +#: tbl_structure.php:469 msgid "Show more actions" msgstr "顯示更多操作" -#: tbl_structure.php:621 tbl_structure.php:686 +#: tbl_structure.php:623 tbl_structure.php:688 #, fuzzy #| msgid "Remove column(s)" msgid "Move columns" msgstr "刪除欄位" -#: tbl_structure.php:622 +#: tbl_structure.php:624 msgid "Move the columns by dragging them up and down." msgstr "" -#: tbl_structure.php:648 +#: tbl_structure.php:650 #, fuzzy #| msgid "Print view" msgid "Edit view" msgstr "列印預覽" -#: tbl_structure.php:665 +#: tbl_structure.php:667 msgid "Relation view" msgstr "關聯查看" -#: tbl_structure.php:673 +#: tbl_structure.php:675 msgid "Propose table structure" msgstr "規劃表結構" -#: tbl_structure.php:695 +#: tbl_structure.php:697 msgid "Add column" msgstr "新增欄位" -#: tbl_structure.php:709 +#: tbl_structure.php:711 msgid "At End of Table" msgstr "於表結尾" -#: tbl_structure.php:710 +#: tbl_structure.php:712 msgid "At Beginning of Table" msgstr "於表開頭" -#: tbl_structure.php:711 +#: tbl_structure.php:713 #, php-format msgid "After %s" msgstr "於 %s 之後" -#: tbl_structure.php:744 +#: tbl_structure.php:746 #, php-format msgid "Create an index on  %s columns" msgstr "在第 %s 個欄位建立索引" -#: tbl_structure.php:915 +#: tbl_structure.php:917 msgid "partitioned" msgstr "已分區" @@ -12214,75 +12263,37 @@ msgstr "追蹤下列資料操作指令:" msgid "Create version" msgstr "建立版本" -#: tbl_zoom_select.php:231 -#, fuzzy -#| msgid "Do a \"query by example\" (wildcard: \"%\")" -msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "執行“依例查詢”(萬用字元:“%”)" - -#: tbl_zoom_select.php:241 -#, fuzzy -#| msgid "Hide search criteria" -msgid "Additional search criteria" -msgstr "隱藏搜尋條件" - -#: tbl_zoom_select.php:294 -msgid "Use this column to label each point" -msgstr "" - -#: tbl_zoom_select.php:314 -#, fuzzy -#| msgid "Maximum number of rows to display" -msgid "Maximum rows to plot" -msgstr "顯示的最多行數" - -#: tbl_zoom_select.php:430 -msgid "Browse/Edit the points" -msgstr "" - -#: tbl_zoom_select.php:437 -#, fuzzy -#| msgid "Control user" -msgid "How to use" -msgstr "控制使用者" - -#: tbl_zoom_select.php:444 -#, fuzzy -#| msgid "Reset" -msgid "Reset zoom" -msgstr "重置" - -#: themes.php:28 +#: themes.php:24 msgid "Get more themes!" msgstr "取得更多主題!" -#: transformation_overview.php:24 +#: transformation_overview.php:21 msgid "Available MIME types" msgstr "可用的 MIME 類型" -#: transformation_overview.php:37 +#: transformation_overview.php:34 msgid "" "MIME types printed in italics do not have a separate transformation function" msgstr "以斜體顯示的 MIME 類型沒有單獨的轉換函數" -#: transformation_overview.php:42 +#: transformation_overview.php:39 msgid "Available transformations" msgstr "可用的轉換" -#: transformation_overview.php:47 +#: transformation_overview.php:44 msgctxt "for MIME transformation" msgid "Description" msgstr "說明" -#: user_password.php:26 +#: user_password.php:28 msgid "You don't have sufficient privileges to be here right now!" msgstr "權限不足!" -#: user_password.php:99 +#: user_password.php:103 msgid "The profile has been updated." msgstr "設定檔案己更新" -#: view_create.php:133 +#: view_create.php:145 msgid "VIEW name" msgstr "view名" diff --git a/server_databases.php b/server_databases.php index a15e2cd178..9f05460127 100644 --- a/server_databases.php +++ b/server_databases.php @@ -172,7 +172,7 @@ if ($databases_count > 0) { 'sort_order' => $sort_order, ); - PMA_listNavigator($databases_count, $pos, $_url_params, 'server_databases.php', 'frame_content', $GLOBALS['cfg']['MaxDbList']); + echo PMA_getListNavigator($databases_count, $pos, $_url_params, 'server_databases.php', 'frame_content', $GLOBALS['cfg']['MaxDbList']); $_url_params['pos'] = $pos; @@ -246,7 +246,7 @@ if ($databases_count > 0) { } // end foreach ($databases as $key => $current) unset($current, $odd_row); - echo '' . "\n"; + echo '' . "\n"; if ($is_superuser || $cfg['AllowUserDropDatabase']) { echo ' ' . "\n"; } @@ -285,7 +285,7 @@ if ($databases_count > 0) { echo ' ' . "\n"; } echo '' . "\n"; - echo '' . "\n" + echo '' . "\n" .'' . "\n"; unset($column_order, $stat_name, $stat, $databases, $table_columns); diff --git a/server_status.php b/server_status.php index 301ea93c27..bb277d8ad8 100644 --- a/server_status.php +++ b/server_status.php @@ -854,15 +854,14 @@ echo __('Runtime Information');
    @@ -872,25 +871,25 @@ echo __('Runtime Information');
    @@ -910,17 +909,17 @@ echo __('Runtime Information');
    @@ -1024,11 +1023,11 @@ function printQueryStatistics()
    0) { - $chart_json[__('Other')] = $other_sum; - } + if ($other_sum > 0) { + $chart_json[__('Other')] = $other_sum; + } - echo json_encode($chart_json); + echo json_encode($chart_json); ?>
    @@ -1266,7 +1265,9 @@ function printServerTraffic() <?php echo $show_full_sql ? __('Truncate Shown Queries') : __('Show Full Queries'); ?> - + @@ -1466,20 +1467,24 @@ function printVariablesTable() 'Table_locks_waited' => 0, 'Qcache_lowmem_prunes' => 0, - 'Qcache_free_blocks' => isset($server_status['Qcache_total_blocks']) ? $server_status['Qcache_total_blocks'] / 5 : 0, + 'Qcache_free_blocks' => isset($server_status['Qcache_total_blocks']) + ? $server_status['Qcache_total_blocks'] / 5 : 0, 'Slow_launch_threads' => 0, // depends on Key_read_requests // normaly lower then 1:0.01 - 'Key_reads' => isset($server_status['Key_read_requests']) ? (0.01 * $server_status['Key_read_requests']) : 0, + 'Key_reads' => isset($server_status['Key_read_requests']) + ? (0.01 * $server_status['Key_read_requests']) : 0, // depends on Key_write_requests // normaly nearly 1:1 - 'Key_writes' => isset($server_status['Key_write_requests']) ? (0.9 * $server_status['Key_write_requests']) : 0, + 'Key_writes' => isset($server_status['Key_write_requests']) + ? (0.9 * $server_status['Key_write_requests']) : 0, 'Key_buffer_fraction' => 0.5, // alert if more than 95% of thread cache is in use - 'Threads_cached' => isset($server_variables['thread_cache_size']) ? 0.95 * $server_variables['thread_cache_size'] : 0 + 'Threads_cached' => isset($server_variables['thread_cache_size']) + ? 0.95 * $server_variables['thread_cache_size'] : 0 // higher is better // variable => min value @@ -1581,12 +1586,16 @@ function printMonitor() - + - + @@ -1664,7 +1673,9 @@ function printMonitor() ?>

    - +